Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 937 for conntrack (0.18 sec)

  1. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/builder/KtSdkModuleBuilder.kt

    import org.jetbrains.kotlin.cli.jvm.compiler.KotlinCoreProjectEnvironment
    import java.nio.file.Path
    import kotlin.contracts.ExperimentalContracts
    import kotlin.contracts.InvocationKind
    import kotlin.contracts.contract
    
    @KtModuleBuilderDsl
    public class KtSdkModuleBuilder(
        private val kotlinCoreProjectEnvironment: KotlinCoreProjectEnvironment
    ) : KtBinaryModuleBuilder() {
        public lateinit var sdkName: String
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Sep 06 07:36:11 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/builder/KtLibrarySourceModuleBuilder.kt

    import org.jetbrains.kotlin.cli.jvm.compiler.KotlinCoreProjectEnvironment
    import kotlin.contracts.ExperimentalContracts
    import kotlin.contracts.InvocationKind
    import kotlin.contracts.contract
    
    @KtModuleBuilderDsl
    public class KtLibrarySourceModuleBuilder(
        private val kotlinCoreProjectEnvironment: KotlinCoreProjectEnvironment
    ) : KtModuleBuilder() {
        public lateinit var libraryName: String
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Sep 06 07:36:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/builder/KtModuleProviderBuilder.kt

    import org.jetbrains.kotlin.cli.jvm.compiler.KotlinCoreProjectEnvironment
    import org.jetbrains.kotlin.platform.TargetPlatform
    import kotlin.contracts.ExperimentalContracts
    import kotlin.contracts.InvocationKind
    import kotlin.contracts.contract
    
    public class KtModuleProviderBuilder(
        public val kotlinCoreProjectEnvironment: KotlinCoreProjectEnvironment,
    ) {
        private val mainModules: MutableList<KtModule> = mutableListOf()
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jan 05 16:04:14 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Running.kt

    import kotlin.contracts.InvocationKind
    import kotlin.contracts.contract
    import kotlin.coroutines.Continuation
    import kotlin.coroutines.EmptyCoroutineContext
    import kotlin.coroutines.startCoroutine
    
    
    /**
     * Runs the given [readOperation] synchronously.
     */
    fun <T : ReadContext, R> T.runReadOperation(readOperation: suspend T.() -> R): R {
        contract {
            callsInPlace(readOperation, InvocationKind.EXACTLY_ONCE)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 20:48:51 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpHeaderSchemeFactory.java

     */
    
    package org.gradle.internal.resource.transport.http;
    
    import org.apache.http.annotation.Contract;
    import org.apache.http.annotation.ThreadingBehavior;
    import org.apache.http.auth.AuthScheme;
    import org.apache.http.protocol.HttpContext;
    
    import java.nio.charset.Charset;
    
    @Contract(threading = ThreadingBehavior.IMMUTABLE)
    @SuppressWarnings("deprecation")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/ExecutionList.java

       * documentation.
       */
      public void add(Runnable runnable, Executor executor) {
        // Fail fast on a null. We throw NPE here because the contract of Executor states that it throws
        // NPE on null listener, so we propagate that contract up into the add method as well.
        checkNotNull(runnable, "Runnable was null.");
        checkNotNull(executor, "Executor was null.");
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 21:17:24 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSubstitutorFactory.kt

    import org.jetbrains.kotlin.analysis.api.types.KaSubstitutor
    import org.jetbrains.kotlin.analysis.api.types.KaType
    import kotlin.contracts.ExperimentalContracts
    import kotlin.contracts.InvocationKind
    import kotlin.contracts.contract
    
    public abstract class KaSubstitutorFactory : KaSessionComponent() {
        public abstract fun buildSubstitutor(builder: KaSubstitutorBuilder): KaSubstitutor
    }
    
    public typealias KtSubstitutorFactory = KaSubstitutorFactory
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/scopeids/DefaultPersistentScopeIdLoader.java

        }
    
        // This method is effectively part of a cross Gradle version contract.
        // User scope is expected to be persisted in the global cache since 4.0.
        private GlobalScopedCacheBuilderFactory userScopeCacheScopeMarker() {
            return globalScopedcacheBuilderFactory;
        }
    
        // This method is effectively part of a cross Gradle version contract.
        // Workspace scope is expected to be persisted in the project cache dir since 4.0.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 10 18:14:29 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/ExecutionList.java

       * documentation.
       */
      public void add(Runnable runnable, Executor executor) {
        // Fail fast on a null. We throw NPE here because the contract of Executor states that it throws
        // NPE on null listener, so we propagate that contract up into the add method as well.
        checkNotNull(runnable, "Runnable was null.");
        checkNotNull(executor, "Executor was null.");
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 21:17:24 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"integer"},
    							Format:      "int32",
    						},
    					},
    					"conntrack": {
    						SchemaProps: spec.SchemaProps{
    							Description: "conntrack contains conntrack-related configuration options.",
    							Default:     map[string]interface{}{},
    							Ref:         ref("k8s.io/kube-proxy/config/v1alpha1.KubeProxyConntrackConfiguration"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top