Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,162 for Fun (0.02 sec)

  1. okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingSSLSession.kt

        delegate!!.invalidate()
      }
    
      override fun isValid(): Boolean {
        return delegate!!.isValid
      }
    
      override fun putValue(
        s: String,
        o: Any,
      ) {
        delegate!!.putValue(s, o)
      }
    
      override fun getValue(s: String): Any {
        return delegate!!.getValue(s)
      }
    
      override fun removeValue(s: String) {
        delegate!!.removeValue(s)
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/flow-services/src/main/kotlin/org/gradle/internal/flow/services/BuildFlowScope.kt

            abstract val pendingActions: List<RegisteredFlowAction>
    
            open fun add(registeredFlowAction: RegisteredFlowAction): Unit = illegalState()
    
            open fun store(): Pair<Any, State> = illegalState()
    
            open fun load(memento: Any): State {
                return Loaded(memento.uncheckedCast())
            }
    
            protected
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:59:39 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/scopes/KtEmptyScope.kt

        override fun getAllPossibleNames(): Set<Name> = withValidityAssertion {
            return emptySet()
        }
    
        override fun getPossibleCallableNames(): Set<Name> = withValidityAssertion {
            return emptySet()
        }
    
        override fun getPossibleClassifierNames(): Set<Name> = withValidityAssertion {
            return emptySet()
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinFileBasedDeclarationProvider.kt

        }
    
        override fun getTopLevelProperties(callableId: CallableId): Collection<KtProperty> {
            return getTopLevelCallables(callableId)
        }
    
        override fun getTopLevelFunctions(callableId: CallableId): Collection<KtNamedFunction> {
            return getTopLevelCallables(callableId)
        }
    
        override fun getTopLevelCallableFiles(callableId: CallableId): Collection<KtFile> {
            return buildSet {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/HeadersTest.kt

        }
      }
    
      @Test fun ofThrowsOnEmptyName() {
        assertFailsWith<IllegalArgumentException> {
          headersOf("", "OkHttp")
        }
      }
    
      @Test fun ofAcceptsEmptyValue() {
        val headers = headersOf("User-Agent", "")
        assertThat(headers.value(0)).isEqualTo("")
      }
    
      @Test fun ofMakesDefensiveCopy() {
        val namesAndValues =
          arrayOf(
            "User-Agent",
            "OkHttp",
          )
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache-base/src/main/kotlin/org/gradle/internal/cc/base/services/ConfigurationCacheEnvironmentChangeTracker.kt

        fun isSystemPropertyMutated(key: String) = mode.toTrackingMode().isSystemPropertyMutated(key)
    
        fun isSystemPropertyLoaded(key: String) = mode.toTrackingMode().isSystemPropertyLoaded(key)
    
        fun getLoadedPropertyOldValue(key: String) = mode.toTrackingMode().getLoadedPropertyOldValue(key)
    
        fun loadFrom(storedState: CachedEnvironmentState) = mode.toRestoringMode().loadFrom(storedState)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/KotlinBuildScriptModelBuilder.kt

    ) : KotlinBuildScriptModel, Serializable {
    
        override fun getClassPath() = classPath
    
        override fun getSourcePath() = sourcePath
    
        override fun getImplicitImports() = implicitImports
    
        override fun getEditorReports() = editorReports
    
        override fun getExceptions() = exceptions
    
        override fun getEnclosingScriptProjectDir() = enclosingScriptProjectDir
    }
    
    
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 11:06:08 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  8. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneDeclarationProvider.kt

            override fun visitElement(element: PsiElement) {
                element.acceptChildren(this)
            }
    
            override fun visitKtFile(file: KtFile) {
                addToFacadeFileMap(file)
                file.script?.let { addToScriptMap(it) }
                super.visitKtFile(file)
            }
    
            override fun visitClassOrObject(classOrObject: KtClassOrObject) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/model/PerformanceTestSpec.kt

        val arch: Arch
        val withoutDependencies: Boolean
    
        fun asConfigurationId(model: CIBuildModel, bucket: String): String
        fun channel(): String
    }
    
    interface PerformanceTestProjectSpec {
        val type: PerformanceTestType
        val failsStage: Boolean
    
        fun asConfigurationId(model: CIBuildModel): String
        fun asName(): String
        fun channel(): String
    }
    
    data class PerformanceTestPartialTrigger(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/localFunctionMultipleCapturing.ir.txt

          FUN FAKE_OVERRIDE name:hashCode visibility:public modality:OPEN <> ($this:kotlin.Any) returnType:kotlin.Int [fake_override]
            overridden:
              public open fun hashCode (): kotlin.Int declared in kotlin.Any
            $this: VALUE_PARAMETER name:<this> type:kotlin.Any
          FUN FAKE_OVERRIDE name:toString visibility:public modality:OPEN <> ($this:kotlin.Any) returnType:kotlin.String [fake_override]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top