path
stringlengths
4
280
owner
stringlengths
2
39
repo_id
int64
21.1k
879M
is_fork
bool
2 classes
languages_distribution
stringlengths
13
1.95k
content
stringlengths
7
482k
issues
int64
0
13.9k
main_language
stringclasses
121 values
forks
stringlengths
1
5
stars
int64
0
111k
commit_sha
stringlengths
40
40
size
int64
7
482k
name
stringlengths
1
100
license
stringclasses
93 values
app/src/main/java/com/msvalandro/wishlistapp/data/Wish.kt
msvalandro
872,113,498
false
{"Kotlin": 22779}
package com.msvalandro.wishlistapp.data import androidx.room.ColumnInfo import androidx.room.Entity import androidx.room.PrimaryKey @Entity(tableName = "wishes") data class Wish( @PrimaryKey(autoGenerate = true) val id: Long = 0L, @ColumnInfo(name = "title") val title: String = "", @ColumnInfo(n...
0
Kotlin
0
0
1df574d3f2d95b3b5d07812013facff4965d3b13
376
WishlistApp
MIT License
verik-compiler/src/main/kotlin/io/verik/compiler/transform/mid/StringTemplateExpressionTransformerStage.kt
frwang96
269,980,078
false
null
/* * Copyright (c) 2021 Francis Wang * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
0
Kotlin
0
3
70f9d58061350ca01db0e7c226de50d3b532229e
4,280
verik
Apache License 2.0
MomoPlantsUser/app/src/main/java/com/johndev/momoplants/ui/detailModule/view/DetailsFragment.kt
Johnmorales26
614,629,687
false
null
package com.johndev.momoplants.ui.detailModule.view import android.animation.Animator import android.animation.AnimatorListenerAdapter import android.os.Bundle import androidx.fragment.app.Fragment import android.view.LayoutInflater import android.view.View import android.view.ViewGroup import androidx.activity.viewMo...
0
Kotlin
0
0
3b887bfd6ad6b12abde152b5cafbabfe38d65183
4,832
Momo_Plants
W3C Software Notice and License (2002-12-31)
src/main/kotlin/com/gmail/williammingardi/hobbykeeping/exception/NotFoundException.kt
wilboron
453,335,562
false
null
package com.gmail.williammingardi.hobbykeeping.exception class NotFoundException( class_name: String, id: Long ) : RuntimeException() { override var message = "$class_name not found with id '$id'" }
0
Kotlin
0
1
0a68427bcc4d3bb5b2aad53a476164df0ea48abe
211
hobby-keeping
Apache License 2.0
data/repo/src/main/java/com/kafka/data/feature/recommendation/RecommendationRepository.kt
vipulyaara
612,950,214
false
{"Kotlin": 689879, "JavaScript": 447669, "HTML": 11959, "CSS": 7888, "Shell": 2974}
package com.kafka.data.feature.recommendation import com.kafka.data.feature.recommendation.network.RecommendationService import com.kafka.data.model.recommendation.RecommendationRequestBody import com.kafka.data.model.recommendation.RecommendationRequestBody.RecommendationEvent import com.kafka.data.model.recommendati...
5
Kotlin
18
247
f660cb0a45102cdc7af119e418252dee6274bdc6
2,749
Kafka
Apache License 2.0
shared/src/wasmJsMain/kotlin/com/kgurgul/cpuinfo/data/provider/OsDataProvider.wasm.kt
kamgurgul
105,620,694
false
{"Kotlin": 468649, "C": 167973, "Swift": 5197, "C++": 4834, "JavaScript": 834, "CMake": 622, "HTML": 472, "CSS": 102, "Objective-C": 82}
package com.kgurgul.cpuinfo.data.provider import com.kgurgul.cpuinfo.utils.toList import kotlinx.browser.window import org.koin.core.component.KoinComponent actual class OsDataProvider actual constructor() : IOsDataProvider, KoinComponent { actual override suspend fun getData(): List<Pair<String, String>> { ...
30
Kotlin
103
658
ea3ec63943992cc457faeeaf52d0a451fad49f5a
1,894
cpu-info
Apache License 2.0
src/jvmTest/kotlin/io/smallibs/aktor/MassiveThreadedActorTest.kt
Smallibs
159,055,361
false
null
package io.smallibs.aktor import io.smallibs.aktor.Aktor.Companion.new import io.smallibs.utils.Await import kotlinx.atomicfu.atomic import org.awaitility.Duration.FIVE_SECONDS import org.junit.Test import java.text.DecimalFormat import java.time.Duration private const val actors = 1000 private const val messages = 1...
2
Kotlin
1
7
e8276ac9dcc8cf14ef253e7c32a74bf9f7af6a2b
1,478
aktor
Apache License 2.0
app/src/main/java/com/sachin/app/storyapp/data/repository/CommunityRepository.kt
sachinkumar53
684,631,959
false
{"Kotlin": 138151}
package com.sachin.app.storyapp.data.repository import android.icu.text.RelativeDateTimeFormatter import com.google.firebase.firestore.CollectionReference import com.google.firebase.firestore.Query import com.sachin.app.storyapp.data.di.PublicationCollectionRef import com.sachin.app.storyapp.data.di.UserCollectionRef ...
0
Kotlin
0
0
2e5edc23ec66e27ae1054b8236bcbc728bcbaeee
4,923
StoryApp
MIT License
src/main/kotlin/br/com/zup/edu/chaves/TipoContaEntity.kt
ArtMedeiros
408,417,459
true
{"Kotlin": 105504}
package br.com.zup.edu.chaves import br.com.zup.edu.utils.services.bcb.TipoContaBCB enum class TipoContaEntity { CONTA_CORRENTE { override fun converterBcb(): TipoContaBCB { return TipoContaBCB.CACC } }, CONTA_POUPANCA { override fun converterBcb(): TipoContaBCB { ...
0
Kotlin
0
0
7abfed286ae95d3a02f6a1ca669aec34c9f6d463
417
orange-talents-07-template-pix-keymanager-grpc
Apache License 2.0
app/src/main/java/com/tripletres/platformscience/data/db/driver/DriverDao.kt
daniel553
540,959,283
false
null
package com.tripletres.platformscience.data.db.driver import androidx.room.Dao import androidx.room.Insert import androidx.room.OnConflictStrategy import androidx.room.Query @Dao interface DriverDao { @Query("SELECT * FROM driver_table") suspend fun getAll(): List<DriverEntity> @Query("SELECT * FROM driv...
0
Kotlin
0
0
2ea5962dc0ad349ae97b277ab4ecf9e9a0aee1e6
689
PlatformScience
FSF All Permissive License
src/main/java/net/lab0/treasure/structure/Step.kt
ununhexium
136,074,171
false
{"Kotlin": 8568}
package net.lab0.treasure.structure data class Step( val actionKey: String, val title: String, val goto: String )
0
Kotlin
0
0
abd53230930a4ff9ace11a3432e46d0998a76225
127
treasureisland
The Unlicense
src/main/kotlin/backloggd/models/api/request/AppGameRateRequest.kt
videogreg93
605,215,068
false
null
package backloggd.models.api.request import kotlinx.serialization.Serializable @Serializable data class AppGameRateRequest(val gameId: String, val rating: Int)
0
Kotlin
0
0
db5dcfaee48abb4f968ec09a5b5da95cd7e24f04
162
backloggd-api
MIT License
android/app/src/main/kotlin/com/mwalagho/ferdinand/covid_19/MainActivity.kt
ferdinandmwal123
307,099,886
false
{"Dart": 18360, "Swift": 404, "Kotlin": 136, "Objective-C": 38}
package com.mwalagho.ferdinand.covid_19 import io.flutter.embedding.android.FlutterActivity class MainActivity: FlutterActivity() { }
0
Dart
0
0
6f9db97314f5251777b73b6d83754242fa50ea89
136
covid_19_flutter
MIT License
app/src/main/java/ru/vdv/filmexpert/model/api/IApiTmdbService.kt
stdimensiy
457,918,889
false
{"Kotlin": 54623}
package ru.vdv.filmexpert.model.api import retrofit2.Call import retrofit2.http.GET import retrofit2.http.Path import retrofit2.http.Query import ru.vdv.filmexpert.domain.CreditsResponseTmdb import ru.vdv.filmexpert.domain.MovieDetailTmdb import ru.vdv.filmexpert.domain.MoviesResponseTmdb interface IApiTmdbService { ...
7
Kotlin
1
2
331c26bcdd9a73ad0028e213505181fb1cfacda1
2,904
Film_Expert
MIT License
app/src/main/java/com/thinkalvb/sensorstorm/Location.kt
ThinkalVB
369,485,915
false
null
package com.thinkalvb.sensorstorm import android.app.Activity import android.content.Context import android.content.pm.PackageManager import android.location.LocationManager import android.os.Looper import com.google.android.gms.location.* import java.nio.ByteBuffer import java.nio.ByteOrder private const val GPS_SEN...
0
Kotlin
0
1
7c7d0932d225b028fc5e5305a49d798b04b6ed2d
2,603
SensorStorm
MIT License
src/main/kotlin/com/github/vlsi/gradle/license/PomLicenseLoader.kt
pombredanne
191,727,436
true
{"Kotlin": 55726}
/* * Copyright 2019 <NAME> <<EMAIL>> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
0
Kotlin
0
0
3372bcb707354101ea002dbe9aaa1526f67a7346
4,152
license-gather-plugin
Apache License 2.0
rounded/src/commonMain/kotlin/me/localx/icons/rounded/bold/Walker.kt
localhostov
808,861,591
false
{"Kotlin": 79430321, "HTML": 331, "CSS": 102}
package me.localx.icons.rounded.bold import androidx.compose.ui.graphics.Color import androidx.compose.ui.graphics.PathFillType.Companion.NonZero import androidx.compose.ui.graphics.SolidColor import androidx.compose.ui.graphics.StrokeCap.Companion.Butt import androidx.compose.ui.graphics.StrokeJoin.Companion.Miter im...
1
Kotlin
0
5
cbd8b510fca0e5e40e95498834f23ec73cc8f245
2,626
icons
MIT License
src/test/kotlin/com/github/monosoul/git/updateindex/extended/ExtendedUpdateIndexTaskTest.kt
monosoul
151,694,127
false
{"Kotlin": 53449}
package com.github.monosoul.git.updateindex.extended import com.github.monosoul.git.updateindex.extended.ExtendedUpdateIndexTaskTest.FilesAndCommandArgumentsSource.NoVcsRoot import com.github.monosoul.git.updateindex.extended.ExtendedUpdateIndexTaskTest.FilesAndCommandArgumentsSource.WithVcsRoot import com.intellij.mo...
3
Kotlin
2
5
3dbb3154f620d17d661e76c4c0d16df9095a277b
6,408
git-extended-update-index-plugin
Apache License 2.0
modules/tests/src/main/kotlin/com/github/davenury/tests/strategies/peersets/GetPeersStrategy.kt
kjarosh
782,141,241
false
{"Kotlin": 745167, "Java": 206433, "Go": 61106, "Python": 33653, "Shell": 21551, "JavaScript": 3419, "Dockerfile": 1387, "Ruby": 835}
package com.github.davenury.tests.strategies.peersets import com.github.davenury.common.Notification import com.github.davenury.common.PeersetId interface GetPeersStrategy { suspend fun getPeersets( numberOfPeersets: Int, changeId: String, ): List<PeersetId> suspend fun freePeersets( ...
14
Kotlin
0
0
576a3128afe3b015a36480a4ea04886133d40d83
451
depl-da-prototype
Apache License 2.0
buildSrc/src/main/java/com/likethesalad/placeholder/models/VariantResPaths.kt
mannodermaus
259,418,461
true
{"Kotlin": 180595}
package com.likethesalad.placeholder.models import java.io.File data class VariantResPaths( val variantName: String, val paths: Set<File> )
0
null
0
0
5c85545ba6117ca1a3d1baea1d6c29b03d54aa75
149
android-string-reference
MIT License
app/src/main/java/de/jepfa/yapm/usecase/vault/CreateVaultUseCase.kt
jenspfahl
378,141,282
false
{"Kotlin": 891218, "HTML": 36434}
package de.jepfa.yapm.usecase.vault import android.util.Log import de.jepfa.yapm.model.encrypted.CipherAlgorithm import de.jepfa.yapm.model.session.LoginData import de.jepfa.yapm.service.PreferenceService import de.jepfa.yapm.service.secret.MasterKeyService import de.jepfa.yapm.service.secret.PbkdfIterationService imp...
6
Kotlin
4
53
3c9078e1ad086cc94a4b4a6c4db7adf3a7f2da88
1,945
ANOTHERpass
MIT License
solar/src/main/java/com/chiksmedina/solar/lineduotone/astronomy/StarFall2.kt
CMFerrer
689,442,321
false
{"Kotlin": 36591890}
package com.chiksmedina.solar.lineduotone.astronomy import androidx.compose.ui.graphics.Color import androidx.compose.ui.graphics.PathFillType.Companion.NonZero import androidx.compose.ui.graphics.SolidColor import androidx.compose.ui.graphics.StrokeCap.Companion.Round import androidx.compose.ui.graphics.StrokeJoin im...
0
Kotlin
0
0
3414a20650d644afac2581ad87a8525971222678
4,040
SolarIconSetAndroid
MIT License
androidApp/src/commonMain/kotlin/com/example/rocketnews/presentation/ui/screens/rockets/RocketsScreen.kt
KarelHudera
701,516,774
false
{"Kotlin": 172850, "Swift": 578}
package com.example.rocketnews.presentation.ui.screens.rockets import androidx.compose.foundation.layout.fillMaxSize import androidx.compose.foundation.layout.padding import androidx.compose.material3.Scaffold import androidx.compose.runtime.Composable import androidx.compose.runtime.LaunchedEffect import androidx.com...
0
Kotlin
0
2
87578a2f429d2113b83388955d66ae53ff2469ae
3,519
Rocket_News_KMM
Apache License 2.0
app/src/main/java/android/hardik/attendancemanager/activities/timetable/viewmodels/PeriodDetailViewModelFactory.kt
hardik0899
258,773,751
false
null
package android.hardik.attendancemanager.activities.timetable.viewmodels import android.app.Application import android.hardik.attendancemanager.data.source.repositories.PeriodRepository import androidx.lifecycle.ViewModelProvider class PeriodDetailViewModelFactory( val periodId: Long, val periodReposi...
10
Kotlin
0
2
bcfd03b94475e195135b959891ff55ec4a0e4cff
700
AttendanceManager
MIT License
core/src/com/lyeeedar/Util/AssetManager.kt
Lyeeedar
160,553,983
false
null
package com.lyeeedar.Util import com.badlogic.gdx.Gdx import com.badlogic.gdx.audio.Sound import com.badlogic.gdx.graphics.Color import com.badlogic.gdx.graphics.Texture import com.badlogic.gdx.graphics.Texture.TextureFilter import com.badlogic.gdx.graphics.g2d.BitmapFont import com.badlogic.gdx.graphics.g2d.TextureAt...
0
Kotlin
0
0
03e3d99a94916ab2e465d55e671a8459e24a1d1d
12,081
TowerDefense
Apache License 2.0
app/src/main/java/com/carousell/monoadapter/app/MainActivity.kt
carousell
320,152,534
false
null
package com.carousell.monoadapter.app import android.os.Bundle import android.widget.TextView import androidx.appcompat.app.AppCompatActivity import androidx.recyclerview.widget.LinearLayoutManager import com.carousell.monoadapter.MonoAdapter import com.carousell.monoadapter.app.databinding.ActivityMainBinding import ...
0
Kotlin
1
19
8d9a402ce5e939653a5224d44ec3ead05ac2afec
1,329
MonoAdapter
Apache License 2.0
api-core/src/commonMain/kotlin/su/pank/yamusic/account/model/Subscription.kt
pank-su
717,339,473
false
{"Kotlin": 82681}
package su.pank.yamusic.account.model import kotlinx.datetime.Instant import kotlinx.serialization.Serializable import su.pank.yamusic.account.model.AutoRenewable @Serializable data class Subscription( val familyAutoRenewable: List<AutoRenewable>? = null, val hadAnySubscription: Boolean? = null, val canS...
4
Kotlin
0
4
3c80dad225f8bbfee32b1279feb52aaa70224ec4
410
yandex-music-api
MIT License
data/src/main/java/com/trian/data/utils/SafeApiCall.kt
triandamai
510,087,041
false
null
package com.trian.data.utils import com.google.gson.Gson import com.trian.data.utils.network.DataState import logcat.LogPriority import logcat.logcat import retrofit2.HttpException import retrofit2.Response import java.io.IOException import java.net.ConnectException import java.net.SocketTimeoutException import java....
0
Kotlin
0
0
66b41b294ca7347cc41b42b99f8203991964afed
2,074
starter-pack
Apache License 2.0
lib_modbus/src/main/kotlin/com/crow/modbus/serialport/SerialPortState.kt
crowforkotlin
696,702,450
false
{"Kotlin": 129340, "C": 13860, "Makefile": 1695, "CMake": 208}
package com.crow.modbus.serialport enum class SerialPortState(val message: String) { NO_READ_WRITE_PERMISSION("没有读写权限!") }
0
Kotlin
0
2
7221b518d0518277ac2b022908c25738ddd391e7
128
KModbus
Apache License 2.0
domain/src/main/java/tachiyomi/domain/track/manga/repository/MangaTrackRepository.kt
jmir1
718,862,527
false
{"Kotlin": 4265900}
package tachiyomi.domain.track.manga.repository import kotlinx.coroutines.flow.Flow import tachiyomi.domain.track.manga.model.MangaTrack interface MangaTrackRepository { suspend fun getTrackByMangaId(id: Long): MangaTrack? suspend fun getTracksByMangaId(mangaId: Long): List<MangaTrack> fun getMangaTrac...
1
Kotlin
0
2
2584e3892d2571eac4b86702a4fe13fa76e46332
594
aniyomi-omegalul
Apache License 2.0
app/src/main/java/com/oajstudios/pocketshop/models/StoreCategory.kt
AYOMITIDE-OAJ
617,064,177
false
null
package com.oajstudios.pocketshop.models data class Category( val _links: CategoryLinks, val count: Int, val description: String, val display: String, val id: Int, val image: CategoryImage?= null, val menu_order: Int, val name: String, val parent: Int, val slug: String ) data c...
1
Kotlin
0
10
48cf66963987da31392350a9afec1125b9cfa4fa
763
pocketshop
Apache License 2.0
app/src/main/java/com/example/resumeskillapp/core/App.kt
ChorpitaSergiy
518,162,219
false
null
/* * MIT License * * Copyright (C) 2022 <NAME> * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, mod...
0
Kotlin
0
0
18d26bbd130419bc85e2c24b62d429ec44cfc7e3
1,970
ResumeSkillApp
MIT License
spring-boot/src/main/java/com/saltedge/provider/demo/config/JacksonConfig.kt
saltedge
528,879,580
false
{"Kotlin": 79478, "Ruby": 41797, "HTML": 24867, "FreeMarker": 21940, "Java": 6270, "Dockerfile": 381, "CSS": 223}
/* * @author <NAME> (<EMAIL>) * Copyright (c) 2022 Salt Edge. */ package com.saltedge.provider.demo.config import com.fasterxml.jackson.databind.ObjectMapper import com.saltedge.provider.demo.tools.JsonTools import org.springframework.context.annotation.Bean import org.springframework.context.annotation.Configurati...
0
Kotlin
1
0
756d392bc6c5683cd90769a06de3ce035b6a9c02
549
saltedge-sca-demo-provider
MIT License
src/main/kotlin/engine_helpers/RedshiftController.kt
olracnai
758,262,334
false
{"Kotlin": 31476}
package engine_helpers import java.io.IOException object RedshiftController { fun redshiftCommand(runThis: String) { try { val process = ProcessBuilder("bash", "-c", "redshift -x ; $runThis").start() // Redirect error stream to standard output to capture errors process.errorStream...
0
Kotlin
0
1
1b3573a7ea6449453723621d1194ff7dd0821447
1,042
redshift-jetpack
MIT License
store/src/commonMain/kotlin/org/mobilenativefoundation/store/store5/Read.kt
MobileNativeFoundation
226,169,258
false
{"Kotlin": 361534}
package org.mobilenativefoundation.store.store5 import kotlinx.coroutines.flow.Flow interface Read { interface Stream<Key : Any, Output : Any> { /** * Return a flow for the given key * @param request - see [StoreReadRequest] for configurations */ fun stream(request: Stor...
57
Kotlin
202
3,174
f9072fc59cc8bfe95cfe008cc8a9ce999301b242
558
Store
Apache License 2.0
azure-communication-ui/chat/src/main/java/com/azure/android/communication/ui/chat/redux/state/AppReduxState.kt
Azure
429,521,705
false
{"Kotlin": 2713288, "Java": 192826, "Shell": 3964, "HTML": 1856}
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. package com.azure.android.communication.ui.chat.redux.state import com.azure.android.communication.ui.chat.models.ChatInfoModel import com.azure.android.communication.ui.chat.models.EMPTY_MESSAGE_INFO_MODEL import com.azur...
7
Kotlin
28
24
d7e46c6063e8e9d3ed548acff2465b5d0f57b1b2
2,094
communication-ui-library-android
MIT License
app/src/main/java/com/example/dropy/ui/components/shops/backside/dashboard/product/productslist/ProductsList.kt
dropyProd
705,360,878
false
{"Kotlin": 3916897, "Java": 20617}
package com.example.dropy.ui.components.shops.backside.dashboard.product.productslist import androidx.compose.foundation.layout.Column import androidx.compose.foundation.layout.fillMaxHeight import androidx.compose.foundation.layout.fillMaxWidth import androidx.compose.foundation.layout.padding import androidx.compose...
0
Kotlin
0
0
6d994c9c61207bac28c49717b6c250656fe4ae6b
4,295
DropyLateNights
Apache License 2.0
app/src/main/java/com/codepath/bestsellerlistapp/BestSellerBook.kt
mateamilloshi
702,118,454
false
{"Kotlin": 8597}
package com.codepath.bestsellerlistapp import com.google.gson.annotations.SerializedName import com.codepath.bestsellerlistapp.Person /** * The Model for storing a single book from the NY Times API *data class Movie( * val name: String, * val title: String, * val description: String, * val poste...
0
Kotlin
0
0
8c0b21e8f74bef1a95d99a2238ea8931da35f081
1,054
FlexterApp2
Apache License 2.0
bucketeer/src/main/kotlin/io/bucketeer/sdk/android/internal/model/response/RegisterEventsResponse.kt
bucketeer-io
517,624,444
false
null
package io.bucketeer.sdk.android.internal.model.response import com.squareup.moshi.JsonClass @JsonClass(generateAdapter = true) data class RegisterEventsResponse( val data: RegisterEventsDataResponse, )
8
Kotlin
2
4
5544bbfb5dd127a8d2058f5112734543270b2156
207
android-client-sdk
Apache License 2.0
app/src/main/java/com/yusuf/drinkvibes/data/retrofit/entity/Moods.kt
Yusuf-Solmaz
735,562,277
false
{"Kotlin": 34107}
package com.yusuf.drinkvibes.data.retrofit.entity import com.google.gson.annotations.SerializedName import java.io.Serializable data class Moods( @SerializedName("id") val id: Int, @SerializedName("moodName") val moodName: String ) : Serializable
0
Kotlin
0
1
a96285212d262e0125b7e0658ff4caef33603476
266
DrinkVibes
Apache License 2.0
app/src/main/java/com/drs/dseller/feature_home/domain/usecases/GetHomeOffers.kt
raaja-sn
704,140,729
false
{"Kotlin": 307720}
package com.drs.dseller.feature_home.domain.usecases import com.drs.dseller.feature_home.domain.model.HomeOffer import com.drs.dseller.feature_home.domain.repository.OffersRepository import com.drs.dseller.feature_home.response.HomeResponse import javax.inject.Inject /** * Get Home Offers * * @param repo Repositor...
0
Kotlin
0
0
2cab9113d3e0e92b0a3c97459b1b3fd4a6e84278
541
DSeller-Android
MIT License
app/src/main/java/com/maxela/android/adapter/BindingUtils.kt
doilio
338,557,126
false
null
package com.maxela.android.adapter import android.widget.ImageView import android.widget.TextView import androidx.databinding.BindingAdapter import com.bumptech.glide.Glide import com.maxela.android.model.WeatherResult import java.text.SimpleDateFormat import java.util.* @BindingAdapter("weatherIcon") fun ImageView.s...
0
Kotlin
2
1
1a2c867e09ed95ea53d0b06834f881d18e85691f
2,323
Maxela
Apache License 2.0
server/src/main/kotlin/com/configset/server/AppConfiguration.kt
raymank26
296,910,120
false
null
package com.configset.server class AppConfiguration { private val env = System.getenv() fun validate() { if (getDaoType() == DaoType.POSTGRES) { getJdbcUrl() } } fun getDaoType(): DaoType { return when (readFromEnv("db_type", "memory")) { "postgres" ->...
0
Kotlin
0
0
3d749c4d9040ae24c5b144cdf69a3e29ba1a45d2
983
configset
Apache License 2.0
src/main/kotlin/com/gmail/blueboxware/libgdxplugin/filetypes/skin/psi/SkinFile.kt
yyYank
78,517,828
true
{"Kotlin": 242196, "Java": 23308, "Lex": 1948, "HTML": 754}
package com.gmail.blueboxware.libgdxplugin.filetypes.skin.psi import com.intellij.psi.PsiFile /* * Copyright 2016 <NAME> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://ww...
0
Kotlin
0
0
c6c49de439a88d49eefd6f7db2d74b0cc142d44f
813
LibGDXPlugin
Apache License 2.0
data/src/main/java/com/spiderbiggen/manhwa/data/usecase/chapter/GetPreviousChapters.kt
spiderbiggen
624,650,535
false
{"Kotlin": 118713}
package com.spiderbiggen.manhwa.data.usecase.chapter import com.spiderbiggen.manhwa.data.source.local.repository.ChapterRepository import com.spiderbiggen.manhwa.data.usecase.either import com.spiderbiggen.manhwa.domain.model.AppError import com.spiderbiggen.manhwa.domain.model.Chapter import com.spiderbiggen.manhwa.d...
1
Kotlin
0
0
cbd3531735d456a0615f17f7fdf32b1364764c71
627
manhwa-reader
MIT License
src/main/kotlin/no/nav/syfo/dialogmelding/bestilling/database/BehandlerDialogmeldingBestillingQuery.kt
navikt
378,118,189
false
{"Kotlin": 635959, "Dockerfile": 226}
package no.nav.syfo.dialogmelding.bestilling.database import no.nav.syfo.application.database.DatabaseInterface import no.nav.syfo.application.database.toList import no.nav.syfo.dialogmelding.bestilling.domain.DialogmeldingToBehandlerBestilling import java.sql.* import java.time.Instant import java.util.UUID const va...
1
Kotlin
0
0
979bf4f075a269e41d475069c9d81e09a8716bfb
5,744
isdialogmelding
MIT License
app/src/main/java/com/tc/gamegallery/domain/GetTagsCatalogUseCase.kt
JerbiJ456
804,320,356
false
{"Kotlin": 128407}
package com.tc.gamegallery.domain import com.apollographql.apollo3.api.Optional //one use case per request class GetTagsCatalogUseCase( private val gameClient: GameClient ) { suspend fun execute( pageSize: Optional<Int>, page: Optional<Int>, ): GenresTags { return gameClient ...
0
Kotlin
0
0
06425f3849a5ff4ec9162c8ce20dcab8e2b7a480
363
Game-Gallery
MIT License
app/src/main/java/edu/kit/dppviewer/ui/feature/importproductpage/ImportProductPageUiState.kt
boebe24
849,335,060
false
{"Kotlin": 618075}
package edu.kit.dppviewer.ui.feature.importproductpage /** * Ui State for ImportProductPage */ data class ImportProductPageUiState( val showQRScanner: Boolean = false, val showSheet: Boolean = false, val showDialog: Boolean = false, val isFlashOn: Boolean = false, val showEnterURLDialog: Boolean ...
0
Kotlin
0
3
145dc722dcff0c95f34579287fb8681160638605
436
boebe-DPP-Viewer
MIT License
app/src/main/java/br/ufrn/eaj/tads/gametetris/HomeActivity.kt
devarthurribeiro
249,906,631
false
null
package br.ufrn.eaj.tads.gametetris import android.content.Intent import androidx.appcompat.app.AppCompatActivity import android.os.Bundle import android.os.Handler import android.view.View import kotlinx.android.synthetic.main.activity_home.* /** * An example full-screen activity that shows and hides the system UI ...
0
Kotlin
2
1
ecf8b9836441efa0b0f0d4fdad3b2a980285a270
1,220
GameTetris
MIT License
src/main/kotlin/eft/weapons/builds/utils/Mapper.kt
neonailol
207,225,209
false
{"Kotlin": 55401}
package eft.weapons.builds.utils import com.fasterxml.jackson.annotation.JsonInclude import com.fasterxml.jackson.databind.MapperFeature import com.fasterxml.jackson.databind.ObjectMapper import com.fasterxml.jackson.databind.SerializationFeature object Mapper { private val mapper: ObjectMapper = ObjectMapper() ...
0
Kotlin
1
0
1254d1157a7478360480d2a4a84aad590a95e201
959
eft-codex
MIT License
src/main/kotlin/com/figure/gradle/semver/internal/command/TagList.kt
FigureTechnologies
496,001,309
false
null
/* * Copyright (C) 2024 <NAME> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
3
null
2
15
321016fbc9e2bca123e4aedc7b193a565d08e264
2,479
gradle-semver-plugin
Apache License 2.0
remote/src/main/java/com/piotrek1543/android/boilerplate/remote/mapper/MainEntityMapper.kt
piotrek1543
168,876,182
false
null
package com.piotrek1543.android.boilerplate.remote.mapper import com.piotrek1543.android.boilerplate.data.model.MainEntity import com.piotrek1543.android.boilerplate.remote.model.MainModel import javax.inject.Inject /** * Map a [MainModel] to and from a [MainEntity] instance when data is moving between * this later...
0
Kotlin
0
8
a5510a569d306660d03263f039ab02882c531e2c
920
sunshine_clean_architecture
MIT License
app/src/main/java/com/example/recordcounter/ui/stopwatch/StopwatchFragment.kt
EricmesquiBR
851,112,522
false
{"Kotlin": 21593}
@file:Suppress("DEPRECATION") package com.example.recordcounter.ui.stopwatch import android.app.Activity import android.content.BroadcastReceiver import android.content.Context import android.content.Intent import android.content.IntentFilter import android.os.Bundle import androidx.fragment.app.Fragment import andro...
0
Kotlin
0
0
27d1b52cb0e99ae0b2ce0feb173b0ceff066e967
7,230
record-counter
MIT License
executor/invoker/src/commonMain/kotlin/io/github/charlietap/chasm/executor/invoker/instruction/memory/load/LoadSizedNumberValueExecutor.kt
CharlieTap
743,980,037
false
{"Kotlin": 898736, "WebAssembly": 7119}
package io.github.charlietap.chasm.executor.invoker.instruction.memory.load import com.github.michaelbull.result.Result import io.github.charlietap.chasm.ast.instruction.MemArg import io.github.charlietap.chasm.executor.runtime.Stack import io.github.charlietap.chasm.executor.runtime.error.InvocationError import io.gi...
2
Kotlin
1
16
1566c1b504b4e0a31ae5008f5ada463c47de71c5
702
chasm
Apache License 2.0
kotlin-typescript/src/main/generated/typescript/raw/isMethodSignature.kt
JetBrains
93,250,841
false
null
// Automatically generated - do not modify! @file:JsModule("typescript") @file:JsNonModule package typescript.raw import typescript.Node internal external fun isMethodSignature(node: Node): Boolean /* node is MethodSignature */
12
null
7
983
372c0e4bdf95ba2341eda473d2e9260a5dd47d3b
232
kotlin-wrappers
Apache License 2.0
src/main/kotlin/org/consoletrader/indicators/BollingerWidthTasks.kt
tomaszbabiuk
116,781,000
false
null
package org.consoletrader.indicators import io.reactivex.Single import org.consoletrader.common.* import org.ta4j.core.TimeSeries import org.ta4j.core.indicators.EMAIndicator import org.ta4j.core.indicators.bollinger.BollingerBandsLowerIndicator import org.ta4j.core.indicators.bollinger.BollingerBandsMiddleIndicator i...
1
Kotlin
2
2
9c356b4d4bef556ff6fa86ef3aeaae76689e5178
3,019
console-trader
MIT License
common/src/main/kotlin/toshio/connector/ConnectorScreen.kt
gtosh4
435,545,152
false
null
package toshio.connector import com.mojang.blaze3d.systems.RenderSystem import com.mojang.blaze3d.vertex.PoseStack import net.fabricmc.api.EnvType import net.fabricmc.api.Environment import net.minecraft.client.Minecraft import net.minecraft.client.gui.components.AbstractButton import net.minecraft.client.gui.screens....
0
Kotlin
0
0
92c052ac9b8a2f66c5312d2b649f1562785f31d3
3,374
Tosh-IO
MIT License
cccev-f2/certification-f2/cccev-certification-f2-client/src/jsMain/kotlin/cccev/f2/certification/client/certificationClient.kt
komune-io
746,816,569
false
{"Kotlin": 581952, "TypeScript": 94420, "MDX": 92741, "Gherkin": 21405, "Makefile": 5607, "JavaScript": 2459, "HTML": 1853, "Dockerfile": 1787, "CSS": 605}
package cccev.f2.certification.client import f2.client.F2Client import f2.client.ktor.F2ClientBuilder import f2.client.ktor.get import f2.dsl.fnc.F2SupplierSingle import f2.dsl.fnc.f2SupplierSingle import kotlinx.coroutines.await @JsExport actual fun certificationClient(urlBase: String): F2SupplierSingle<Certificati...
0
Kotlin
0
0
8514b98e1d2b55f4611e664116526db3c8ad209f
574
connect-cccev
Apache License 2.0
src/main/kotlin/config/index/stub/ConfigOperationStubImpl.kt
penguinencounter
792,086,846
false
{"Kotlin": 671320, "Java": 128067, "Lex": 24468, "PHP": 15692, "GDScript": 6273, "HTML": 4726, "Python": 3568, "Makefile": 198}
package config.index.stub import com.intellij.psi.stubs.StubBase import com.intellij.psi.stubs.StubElement import config.psi.ConfigOperation import config.psi.impl.GdConfigOperationElementType class ConfigOperationStubImpl : StubBase<ConfigOperation>, ConfigOperationStub { private val operand: String private...
0
Kotlin
0
0
662c945adb0ee2cca4e1342a5f684ea3b8d18b75
782
gdscript
MIT License
presentation/src/main/java/org/lotka/xenonx/presentation/screen/home/HomeEvent.kt
armanqanih
840,573,405
false
{"Kotlin": 34354}
package org.lotka.xenonx.presentation.screen.home sealed class HomeEvent { object NavigateToSearchBar : HomeEvent() }
0
Kotlin
0
0
2a9ab5b0d8c94724467abbb464f72c52ba475e85
123
BEER_APP
Apache License 2.0
src/main/kotlin/org/araqnid/kotlin/setawsssocredentials/aws/Response.kt
araqnid
486,956,324
false
{"Kotlin": 78877, "Shell": 392}
package org.araqnid.kotlin.setawsssocredentials.aws external interface ResponseMetadata { /** * The status code of the last HTTP response received for this operation. */ var httpStatusCode: Number? /** * A unique identifier for the last request sent for this operation. Often * requeste...
1
Kotlin
0
1
19b3fce0cd38c922880f70699cac6ee3a83130b5
1,058
set-aws-sso-credentials
Apache License 2.0
src/main/kotlin/org/araqnid/kotlin/setawsssocredentials/aws/Response.kt
araqnid
486,956,324
false
{"Kotlin": 78877, "Shell": 392}
package org.araqnid.kotlin.setawsssocredentials.aws external interface ResponseMetadata { /** * The status code of the last HTTP response received for this operation. */ var httpStatusCode: Number? /** * A unique identifier for the last request sent for this operation. Often * requeste...
1
Kotlin
0
1
19b3fce0cd38c922880f70699cac6ee3a83130b5
1,058
set-aws-sso-credentials
Apache License 2.0
app/src/main/java/com/capstone/Capstone2Project/ui/screen/error/ErrorScreen.kt
JMS1208
594,071,509
false
null
package com.capstone.Capstone2Project.ui.screen.error import androidx.compose.foundation.layout.Arrangement import androidx.compose.foundation.layout.Column import androidx.compose.foundation.layout.fillMaxSize import androidx.compose.material.LocalTextStyle import androidx.compose.material.Text import androidx.compos...
0
Kotlin
0
0
05b10ab2563d51900fe8276568019103271f5f0e
1,583
IntervuStella
MIT License
src/main/kotlin/wiki/chess/models/AccessToken.kt
dajeo
534,636,103
false
{"Kotlin": 36272, "Dockerfile": 407}
package wiki.chess.models @kotlinx.serialization.Serializable data class AccessToken( val access_token: String, val token_type: String, val expires_in: Long, val refresh_token: String, val scope: String )
0
Kotlin
0
1
f546bc476b8d3ef43b98a970634eb75d116d89b2
226
knight
MIT License
src/main/kotlin/dev/hybridlabs/aquatic/world/biome/surface/HybridAquaticMaterialRules.kt
hybridlabs
661,391,321
false
{"Kotlin": 892890, "Java": 69899}
package dev.hybridlabs.aquatic.world.biome.surface import dev.hybridlabs.aquatic.world.biome.HybridAquaticBiomes import net.minecraft.block.Block import net.minecraft.block.Blocks import net.minecraft.world.gen.surfacebuilder.MaterialRules object HybridAquaticMaterialRules { private val SAND: MaterialRules.Materi...
6
Kotlin
0
4
82c3b26d6697d2e5666b173101ade38505a3fe4c
1,144
hybrid-aquatic
MIT License
tabulate-core/src/main/kotlin/io/github/voytech/tabulate/api/builder/exception/BuilderException.kt
voytech
262,033,710
false
null
package io.github.voytech.tabulate.api.builder.exception /** * Build-time validation exception. * @author <NAME> * @since 0.1.0 */ class BuilderException(message: String) : RuntimeException(message)
19
Kotlin
0
2
89e183487938dfa719797d8af30ee299e2db4753
203
tabulate
Apache License 2.0
src/test/kotlin/org/musyozoku/thymeleaf/dialect/ApplicationTests.kt
nosix
76,470,009
false
null
package org.musyozoku.thymeleaf.dialect import org.junit.Test import org.junit.runner.RunWith import org.springframework.beans.factory.annotation.Autowired import org.springframework.boot.test.context.SpringBootTest import org.springframework.test.context.junit4.SpringRunner import org.thymeleaf.TemplateEngine import ...
1
Kotlin
0
0
40b2b94669481c37e4bb7dc532ca979d181fb793
659
thymeleaf-dialect
Apache License 2.0
src/main/kotlin/io/kjson/resource/ResourceLoader.kt
pwall567
406,404,133
false
{"Kotlin": 40761}
/* * @(#) ResourceLoader.kt * * resource-loader Resource loading mechanism * Copyright (c) 2023, 2024 <NAME> * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, in...
0
Kotlin
0
0
017cf351fb6934da624f41388c49d985c888a748
8,432
resource-loader
MIT License
src/main/kotlin/com/example/Game.kt
P1ben
649,408,128
false
null
package com.example import javafx.animation.AnimationTimer import javafx.application.Application import javafx.event.EventHandler import javafx.scene.Group import javafx.scene.Scene import javafx.scene.canvas.Canvas import javafx.scene.canvas.GraphicsContext import javafx.scene.control.Button import javafx.scene.contr...
0
Kotlin
0
0
41bf7f9a62cc3cd1c1cf7070207a090b7c98cd20
7,743
Tetris-Kotlin
MIT License
src/main/kotlin/com/muedsa/snapshot/widget/ClipRect.kt
muedsa
736,941,747
false
{"Kotlin": 319488}
package com.muedsa.snapshot.widget import com.muedsa.geometry.Size import com.muedsa.snapshot.rendering.ClipBehavior import com.muedsa.snapshot.rendering.box.RenderBox import com.muedsa.snapshot.rendering.box.RenderClipRect import org.jetbrains.skia.Rect class ClipRect( val clipper: ((Size) -> Rect)? = null, ...
0
Kotlin
0
0
f05f6d568a6095e61be42de8c2937e9b45fd772f
655
snapshot
MIT License
core/src/main/java/com/s_h_y_a/kotlindatastore/KotlinDataStore.kt
S-H-Y-A
454,439,254
false
null
package com.s_h_y_a.kotlindatastore import android.annotation.SuppressLint import android.content.Context @SuppressLint("StaticFieldLeak") object KotlinDataStore { private var mStaticContext: Context? = null internal var staticContext: Context get() = mStaticContext ?: throw IllegalStateE...
0
Kotlin
0
4
575a5f5b604de0a6f86a08b0ade33bac2fd7b0b4
576
KotlinDataStore
Apache License 2.0
app/src/main/java/com/halilkrkn/finderecipe/domain/model/similar_recipe/SimilarRecipe.kt
halilkrkn
808,027,185
false
{"Kotlin": 324108}
package com.halilkrkn.finderecipe.domain.model.similar_recipe data class SimilarRecipe( val id: Int, val imageType: String, val readyInMinutes: Int, val servings: Int, val sourceUrl: String, val title: String )
0
Kotlin
0
0
2a22bbe8c63b42cd5ae614227fa0a9b6e8746913
235
FindeRecipe
MIT License
app/src/main/java/com/lpirro/tiledemo/RxBus.kt
amitkumar0000
343,741,379
false
null
package com.lpirro.tiledemo import android.util.Log import com.lpirro.tiledemo.customquicksettings.NotificationModel import com.lpirro.tiledemo.customquicksettings.QuickSettingModel import io.reactivex.Observable import io.reactivex.subjects.PublishSubject object RxBus { private val subject = PublishSubject.creat...
0
Kotlin
0
0
cc99d7b4f912807239c82c958e7e8aadc2a9637a
955
tiles
Apache License 2.0
cli/src/main/kotlin/com/gradleup/librarian/cli/CreateCommand.kt
GradleUp
808,333,288
false
{"Kotlin": 69473, "JavaScript": 1026}
package com.gradleup.librarian.cli import com.github.ajalt.clikt.core.CliktCommand import com.github.ajalt.clikt.parameters.arguments.argument import com.github.kinquirer.KInquirer import com.github.kinquirer.components.promptConfirm import com.github.kinquirer.components.promptInput import com.github.kinquirer.compon...
4
Kotlin
0
0
3ab6fe21b18da7a56acf3680926cf3057a0469ca
8,451
librarian
MIT License
app/src/main/java/com/ldf/wanandroidcompose/ui/home/ArticleItem.kt
yihu5566
646,021,523
false
null
package com.ldf.wanandroidcompose.ui.home import android.widget.TextView import androidx.compose.foundation.background import androidx.compose.foundation.border import androidx.compose.foundation.clickable import androidx.compose.foundation.layout.Column import androidx.compose.foundation.layout.Row import androidx.co...
0
Kotlin
0
1
a3e456565303179ae0293e75a6800239d68492e4
5,504
WanAndroidCompose
Apache License 2.0
light/src/test/kotlin/net/kotlinx/aws/module/batchStep/stepDefault/BatchStepDefaultRunnerTest.kt
mypojo
565,799,715
false
{"Kotlin": 1126686, "Java": 9531, "Jupyter Notebook": 7080}
package net.kotlinx.aws.module.batchStep.stepDefault import net.kotlinx.aws.module.batchStep.BatchStepInput import net.kotlinx.aws.module.batchStep.BatchStepListOption import net.kotlinx.aws.module.batchStep.BatchStepMode import net.kotlinx.json.gson.GsonData import net.kotlinx.json.gson.toGsonData import net.kotlinx....
0
Kotlin
0
1
419243ce3f60a15e78a36cb55c5c502e0c1800c8
1,879
kx_kotlin_support
MIT License
app/src/main/java/com/kenilt/skeleton/managers/listeners/EndlessRecyclerOnScrollListener.kt
kenilt
247,617,328
false
null
package com.kenilt.skeleton.managers.listeners import androidx.recyclerview.widget.GridLayoutManager import androidx.recyclerview.widget.LinearLayoutManager import androidx.recyclerview.widget.RecyclerView /** * Created by thangnguyen on 3/13/18. */ abstract class EndlessRecyclerOnScrollListener : RecyclerView.OnS...
0
Kotlin
0
0
9d5f445839d9741f4df5aa8cdfc46dfedada6b9b
2,378
Android-Skeleton-Project
MIT License
app/src/main/java/com/billsv/facturaelectronica/DataAPI.kt
diseno2024
768,327,103
false
{"Kotlin": 530432, "Java": 4941}
package com.billsv.facturaelectronica data class AuthRequest(val user: String, val pwd: String) data class AuthResponse( val status: String, val body: AuthBody? ) data class AuthBody( val user: String, val token: String, val rol: Rol, val roles: List<String>, val tokenType: String ) data...
1
Kotlin
1
0
56777f677b0f2033921517b7a829af1f2380648c
620
facturaelectronica
Apache License 2.0
dslk_anko/src/main/java/com/mozhimen/dslk/anko/core/commons/Ui.kt
mozhimen
851,115,225
false
{"Kotlin": 160097}
package com.mozhimen.dslk.anko.core.commons import android.content.Context import android.view.View import androidx.lifecycle.LifecycleOwner /** * @ClassName Ui * @Description TODO * @Author mozhimen * @Date 2024/9/2 * @Version 1.0 */ interface Ui { val ctx: Context val root: View }
0
Kotlin
0
0
a1d8038de852e0c648ce95407f6ada398c35c633
299
ADslKit
Apache License 2.0
app/src/main/java/com/github/cirorizzo/kshows/view/MainActivity.kt
cirorizzo
52,459,755
false
null
package com.github.cirorizzo.kshows.view import android.os.Bundle import android.support.v7.app.AppCompatActivity import android.support.v7.widget.GridLayoutManager import com.github.cirorizzo.kshows.KShowsApplication import com.github.cirorizzo.kshows.R import com.github.cirorizzo.kshows.presenter.MasterPresenterImpl...
0
null
4
16
6dd7a4e3ed87a667de588bd900377572cddaa21b
1,401
KShows
Apache License 2.0
carp.protocols.core/src/commonMain/kotlin/dk/cachet/carp/protocols/domain/devices/DeviceRegistration.kt
cortinico
333,548,384
true
{"Kotlin": 877308, "TypeScript": 30334}
package dk.cachet.carp.protocols.domain.devices import dk.cachet.carp.common.DateTime import dk.cachet.carp.common.Immutable import dk.cachet.carp.common.ImplementAsDataClass import dk.cachet.carp.common.serialization.NotSerializable import dk.cachet.carp.protocols.domain.StudyProtocol import kotlinx.serialization.Pol...
7
null
0
0
9ed082ee919066a0e4774863cf7ecc3b6d00daf1
1,944
carp.core-kotlin
MIT License
eupidcredential/src/commonTest/kotlin/at/asitplus/wallet/eupid/SerializerRegistrationTest.kt
a-sit-plus
771,032,012
false
{"Kotlin": 24103}
package at.asitplus.wallet.eupid import at.asitplus.signum.indispensable.cosef.CoseHeader import at.asitplus.signum.indispensable.cosef.CoseSigned import at.asitplus.signum.indispensable.cosef.io.ByteStringWrapper import at.asitplus.wallet.eupid.EuPidScheme.Attributes.ADMINISTRATIVE_NUMBER import at.asitplus.wallet.li...
0
Kotlin
0
1
62f11a4e4eb4690f77aa65a3166da1fd9c42cdf3
5,821
eu-pid-credential
Apache License 2.0
src/commonMain/kotlin/data/items/ReaverOfTheInfinites.kt
marisa-ashkandi
332,658,265
false
null
package `data`.items import `data`.Constants import `data`.buffs.Buffs import `data`.model.Color import `data`.model.Item import `data`.model.ItemSet import `data`.model.Socket import `data`.model.SocketBonus import `data`.socketbonus.SocketBonuses import character.Buff import character.Stats import kotlin.Array impor...
21
Kotlin
11
25
9cb6a0e51a650b5d04c63883cb9bf3f64057ce73
1,802
tbcsim
MIT License
src/main/kotlin/graphql/Scalars.kt
LarsKrogJensen
78,951,235
false
null
package graphql import graphql.language.BooleanValue import graphql.language.FloatValue import graphql.language.IntValue import graphql.language.StringValue import graphql.schema.Coercing import graphql.schema.GraphQLNonNull import graphql.schema.GraphQLScalarType import java.math.BigDecimal import java.math.BigInte...
0
Kotlin
1
3
aa8e3c645dedf1048e2124d43e1deff28ad16cdf
10,349
graphql-kotlin
MIT License
app/src/main/java/com/sunnyweather/permissionx/MainActivity.kt
0810yeyushengfan
405,594,819
false
null
package com.sunnyweather.permissionx import android.Manifest import android.content.Intent import android.net.Uri import android.os.Bundle import android.widget.Button import android.widget.Toast import androidx.appcompat.app.AppCompatActivity import com.Permission.yeyu.PermissionX class MainActivity : AppCompatActi...
0
Kotlin
0
1
5e902de7cc6e35406fcdeb45727430d09151cc01
1,719
PermissionX
Apache License 2.0
TwoPage/src/main/java/com/microsoft/device/display/samples/twopage/ui/theme/Type.kt
microsoft
329,091,156
false
null
package com.microsoft.device.display.samples.twopage.ui.theme import androidx.compose.material.Typography import androidx.compose.ui.graphics.Color import androidx.compose.ui.text.TextStyle import androidx.compose.ui.text.font.FontFamily import androidx.compose.ui.text.font.FontStyle import androidx.compose.ui.text.fo...
2
Kotlin
16
59
1ae8ef33490227dbd311fdc261d3cf270ccb2853
1,244
surface-duo-compose-samples
MIT License
app/src/main/java/com/nutrition/balanceme/presentation/features/add/ImageUpload.kt
DatTrannn
521,896,551
false
null
package com.nutrition.balanceme.presentation.features.add import android.net.Uri import androidx.compose.foundation.Canvas import androidx.compose.foundation.Image import androidx.compose.foundation.clickable import androidx.compose.foundation.layout.Box import androidx.compose.foundation.layout.fillMaxSize import and...
0
Kotlin
0
0
f51d0276b1d34e00b27b44689aedf80e1580c542
2,484
BalanceMeApp
MIT License
app/src/main/java/com/frhanklindevs/bantukuy/donor/ui/fragments/dashboard/widgets/cari/BantuCariWidget.kt
frhanklin
432,865,086
false
{"Kotlin": 168127}
package com.frhanklindevs.bantukuy.donor.ui.fragments.dashboard.widgets.cari import android.os.Bundle import androidx.fragment.app.Fragment import android.view.LayoutInflater import android.view.View import android.view.ViewGroup import androidx.appcompat.widget.AppCompatButton import androidx.appcompat.widget.SearchV...
0
Kotlin
0
0
304d966344317e9d09daa0d5b89f0d862e896c17
4,089
BantuKuy
Apache License 2.0
app/src/main/java/com/breezefsmsettdeycohomoeolab/features/login/model/productlistmodel/NewOdrScrOrderListModel.kt
DebashisINT
639,303,773
false
{"Kotlin": 13711722, "Java": 997141}
package com.breezefsmsettdeycohomoeolab.features.login.model.productlistmodel import com.breezefsmsettdeycohomoeolab.app.domain.NewOrderScrOrderEntity import com.breezefsmsettdeycohomoeolab.app.domain.ProductListEntity class NewOdrScrOrderListModel { var status:String? = null var message:String? = null va...
0
Kotlin
0
0
66dcb25c9f8c4f2784c4e61fe720fa4c6f83e34d
408
SettDeyCoHomoeo
Apache License 2.0
services/hanke-service/src/main/kotlin/fi/hel/haitaton/hanke/geometria/Geometriat.kt
City-of-Helsinki
300,534,352
false
{"Kotlin": 1853898, "Mustache": 92562, "Shell": 23444, "Batchfile": 5169, "PLpgSQL": 1115, "Dockerfile": 371}
package fi.hel.haitaton.hanke.geometria import com.fasterxml.jackson.annotation.JsonView import fi.hel.haitaton.hanke.ChangeLogView import fi.hel.haitaton.hanke.NotInChangeLogView import fi.hel.haitaton.hanke.domain.HasFeatures import fi.hel.haitaton.hanke.domain.HasId import io.swagger.v3.oas.annotations.media.Schema...
9
Kotlin
5
4
f0e319fafa2706e7fb5b4a3ad406935a9e59a38d
1,742
haitaton-backend
MIT License
unleash/src/test/java/com/silvercar/unleash/integration/UnleashContextDefinition.kt
silvercar
248,339,880
false
null
package com.silvercar.unleash.integration data class UnleashContextDefinition( private val userId: String?, private val sessionId: String?, private val remoteAddress: String?, private val environment: String?, private val appName: String?, // Custom context fields used in tests private val properties: Ma...
0
null
4
12
98d12a20913bc1b91954d525c035cb638ddc1b21
745
unleash-client-kotlin
Apache License 2.0
src/main/java/io/github/orange3/unittestarchitect/worker/WorkerImpl.kt
OrangE-3
450,310,376
false
{"Kotlin": 40694}
/* * Copyright (C) 2022 <NAME> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to ...
0
Kotlin
1
6
54f386b2fae3ffc19ebea84ec601d9bd4f4191ee
2,227
UnitTestArchitect
Apache License 2.0
stytch/src/main/kotlin/com/stytch/java/common/Version.kt
stytchauth
665,684,154
false
{"Kotlin": 980649}
package com.stytch.java.common internal const val VERSION = "2.0.1"
0
Kotlin
0
4
3f1b984b2f15931af4f893b913c6ed751fa6379b
69
stytch-java
MIT License
cnj/reservation-client/src/main/kotlin/com/example/reservationclient/ReservationClientApplication.kt
joshlong-attic
102,565,872
false
{"Shell": 97610, "Batchfile": 74922, "Java": 23894, "Kotlin": 22724, "Groovy": 554}
package com.example.reservationclient import com.netflix.hystrix.contrib.javanica.annotation.HystrixCommand import org.springframework.boot.ApplicationRunner import org.springframework.boot.SpringApplication import org.springframework.boot.autoconfigure.SpringBootApplication import org.springframework.cloud.client.cir...
1
Shell
1
3
4a10aa077b233f695a520b0859689004a7279873
3,109
yow-hk-2017-workshop
Apache License 2.0
src/main/kotlin/com/framstag/domainbus/source/postgres/Context.kt
Framstag
233,686,175
false
null
package com.framstag.domainbus.source.postgres import com.framstag.domainbus.jdbc.ConnectionFactory import java.time.Duration /** * Immutable state part of postgres source */ data class Context(val connectionFactory : ConnectionFactory, val connectionErrorTimeout : Duration = Duration.ofSeconds(1...
0
Kotlin
0
0
9b3b358e9ee6b1e5bac8dd9d72cccefe9c4c09ab
627
domainbus
Apache License 2.0
crud-framework-core/src/test/java/dev/krud/crudframework/crud/handler/krud/KrudScannerTest.kt
krud-dev
721,261,766
false
{"Gradle Kotlin DSL": 9, "Markdown": 3, "Shell": 2, "Ignore List": 6, "Batchfile": 1, "EditorConfig": 1, "Kotlin": 105, "Java": 79, "INI": 1, "YAML": 2}
package dev.krud.crudframework.crud.handler.krud import dev.krud.crudframework.crud.handler.CrudCreateHandler import dev.krud.crudframework.crud.handler.CrudDeleteHandler import dev.krud.crudframework.crud.handler.CrudReadHandler import dev.krud.crudframework.crud.handler.CrudUpdateHandler import dev.krud.crudframewor...
2
Java
0
0
a3c01955a8b181c6b5cd11833f68ca1eded960b7
1,892
krud
MIT License
app/src/main/java/com/kcteam/features/viewAllOrder/interf/ColorListOnCLick.kt
DebashisINT
558,234,039
false
{"Kotlin": 11332958, "Java": 966929}
package com.kcteam.features.viewAllOrder.interf import com.kcteam.app.domain.NewOrderGenderEntity import com.kcteam.features.viewAllOrder.model.ProductOrder interface ColorListOnCLick { fun colorListOnCLick(size_qty_list: ArrayList<ProductOrder>, adpPosition:Int) }
0
Kotlin
1
1
a9aabcf48662c76db18bcece75cae9ac961da1ed
271
KidCity
Apache License 2.0
Corona-Warn-App/src/test/java/de/rki/coronawarnapp/diagnosiskeys/storage/legacy/KeyCacheEntityTest.kt
CoraLibre
268,867,734
false
null
package de.rki.coronawarnapp.diagnosiskeys.storage.legacy import testhelpers.BaseTest class KeyCacheEntityTest : BaseTest()
6
null
499
36
8e3d915aa194cae0645ff668cca2114d9bb3d7c2
126
CoraLibre-android
Apache License 2.0
service/src/main/kotlin/io/provenance/explorer/service/AccountService.kt
provenance-io
332,035,574
false
null
package io.provenance.explorer.service import com.google.protobuf.Any import cosmos.bank.v1beta1.msgSend import cosmos.vesting.v1beta1.msgCreateVestingAccount import io.provenance.attribute.v1.Attribute import io.provenance.explorer.config.ExplorerProperties import io.provenance.explorer.config.ResourceNotFoundExcepti...
16
Kotlin
2
3
e1bc9c0c3aff7e22ae8a33545fd628d11f7092f4
15,386
explorer-service
Apache License 2.0
cottontaildb-dbms/src/main/kotlin/org/vitrivr/cottontail/dbms/queries/operators/logical/transform/LimitLogicalOperatorNode.kt
vitrivr
160,775,368
false
null
package org.vitrivr.cottontail.dbms.queries.operators.logical.transform import org.vitrivr.cottontail.dbms.queries.operators.logical.UnaryLogicalOperatorNode import org.vitrivr.cottontail.dbms.queries.operators.physical.transform.LimitPhysicalOperatorNode /** * A [UnaryLogicalOperatorNode] that represents the applic...
8
Kotlin
15
15
c6e06263d9163f697e0aa5dc334a910521620215
1,959
cottontaildb
MIT License