Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 132 for logic (0.08 sec)

  1. pkg/kubelet/secret/secret_manager.go

    	return result
    }
    
    const (
    	defaultTTL = time.Minute
    )
    
    // NewCachingSecretManager creates a manager that keeps a cache of all secrets
    // necessary for registered pods.
    // It implements the following logic:
    //   - whenever a pod is created or updated, the cached versions of all secrets
    //     are invalidated
    //   - every GetObject() call tries to fetch the value from local cache; if it is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/EnvVariableInjection.groovy

            }
        }
    
        static void checkEnvironmentVariableUnset(String key) {
            // We can't "unset" the variable with the API executer provides, but it isn't necessary, thanks to the filtering in
            // build-logic/jvm/src/main/kotlin/gradlebuild/propagated-env-variables.kt
            if (System.getenv().containsKey(key)) {
                throw new IllegalStateException("Environment variable $key is present for this process and may affect tests")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. build-logic/jvm/src/main/kotlin/gradlebuild.start-scripts.gradle.kts

        launcherJar.from(tasks.jar)
        agentJars.from(resolveAgentsClasspath)
        // The trick below is to use the templates from the current code instead of the wrapper. It does not cover the case where the generation logic is updated though.
        unixScriptTemplate.from(layout.projectDirectory.file("../../../platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:55 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. cni/pkg/plugin/plugin.go

    	for _, excludeNs := range conf.Kubernetes.ExcludeNamespaces {
    		if podNamespace == excludeNs {
    			log.Infof("pod namespace excluded")
    			return nil
    		}
    	}
    
    	// Begin ambient plugin logic
    	// For ambient pods, this is all the logic we need to run
    	if conf.AmbientEnabled {
    		log.Debugf("istio-cni ambient cmdAdd podName: %s - checking if ambient enabled", podName)
    		podIsAmbient, err := isAmbientPod(kClient, podName, podNamespace)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. platforms/extensibility/test-kit/build.gradle.kts

    import gradlebuild.basics.tasks.PackageListGenerator
    
    plugins {
        id("gradlebuild.distribution.implementation-java")
    }
    
    description = "A library that aids in testing Gradle plugins and build logic in general"
    
    errorprone {
        disabledChecks.addAll(
            "CatchAndPrintStackTrace", // 1 occurrences
            "ImmutableEnumChecker", // 1 occurrences
        )
    }
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache-base/src/main/kotlin/org/gradle/internal/cc/base/services/ConfigurationCacheEnvironmentChangeTracker.kt

                    mutatedSystemProperties[key] = SystemPropertyRemove(key)
                } else {
                    // If the key is not a string, it can only affect properties that were set by the build logic. There is
                    // no need to persist the removal, but the set value should not be persisted too. A placeholder value
                    // will keep the key mutated to avoid recording it as an input.
    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/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/ProviderCodecs.kt

            if (!value.hasBeenObtained()) {
                // source has **NOT** been used as build logic input:
                // serialize the source
                writeBoolean(true)
                encodeValueSource(value)
            } else {
                // source has been used as build logic input:
                // serialize the value directly as it will be part of the
                // cached state fingerprint.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinDeclarationProviderFactory.kt

     *
     * Hence, [KotlinDeclarationProvider]s cannot just be combined by combining the scopes of all declaration providers and calling
     * [createDeclarationProvider]. [KotlinDeclarationProviderMerger] should implement proper merging logic that takes these concerns into
     * account.
     */
    public abstract class KotlinDeclarationProviderMerger : KotlinComposableProviderMerger<KotlinDeclarationProvider>, KotlinPlatformComponent {
        public companion object {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationApplication.kt

         */
        public val useSiteTarget: AnnotationUseSiteTarget?
    
        /**
         * This property can be used to optimize some argument processing logic.
         * For example, if you have [KaAnnotationApplicationInfo] from [KaAnnotated.annotationInfos] and [hasArguments] is **false**,
         * then you can avoid [KaAnnotated.annotationsByClassId] call,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheValueSourceIntegrationTest.groovy

            when:
            configurationCacheRun "greet"
    
            then:
            configurationCache.assertStateLoaded()
            output.contains("Hello!")
        }
    
        def "#usage property from properties file used as build logic input"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
            buildKotlinFile """
    
                import org.gradle.api.provider.*
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top