Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 569 for logic (0.04 sec)

  1. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/LanguageSpecificAdaptor.java

            builder.fileComment("This settings file is used to specify which projects to include in your build-logic build.");
            builder.propertyAssignment(null, "rootProject.name", settings.isUseIncubatingAPIs() ? "build-logic" : "buildSrc");
            builder.useVersionCatalogFromOuterBuild("Reuse version catalog from the main build.");
            return builder;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 06:07:00 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. pkg/envoy/agent.go

    				log.Infof("Graceful termination logic ended prematurely, envoy process terminated early")
    				return
    			default:
    				if err != nil {
    					log.Errorf(err.Error())
    					retryCount++
    					// Max retry 5 times
    					if retryCount > 4 {
    						a.abortCh <- errAbort
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. manifests/charts/gateways/istio-egress/templates/zzz_profile.yaml

    {{/*
    WARNING: DO NOT EDIT, THIS FILE IS A PROBABLY COPY.
    The original version of this file is located at /manifests directory.
    If you want to make a change in this file, edit the original one and run "make gen".
    
    Complex logic ahead...
    We have three sets of values, in order of precedence (last wins):
    1. The builtin values.yaml defaults
    2. The profile the user selects
    3. Users input (-f or --set)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/templates/zzz_profile.yaml

    {{/*
    WARNING: DO NOT EDIT, THIS FILE IS A PROBABLY COPY.
    The original version of this file is located at /manifests directory.
    If you want to make a change in this file, edit the original one and run "make gen".
    
    Complex logic ahead...
    We have three sets of values, in order of precedence (last wins):
    1. The builtin values.yaml defaults
    2. The profile the user selects
    3. Users input (-f or --set)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. manifests/charts/ztunnel/templates/zzz_profile.yaml

    {{/*
    WARNING: DO NOT EDIT, THIS FILE IS A PROBABLY COPY.
    The original version of this file is located at /manifests directory.
    If you want to make a change in this file, edit the original one and run "make gen".
    
    Complex logic ahead...
    We have three sets of values, in order of precedence (last wins):
    1. The builtin values.yaml defaults
    2. The profile the user selects
    3. Users input (-f or --set)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. manifests/charts/istio-cni/templates/zzz_profile.yaml

    {{/*
    WARNING: DO NOT EDIT, THIS FILE IS A PROBABLY COPY.
    The original version of this file is located at /manifests directory.
    If you want to make a change in this file, edit the original one and run "make gen".
    
    Complex logic ahead...
    We have three sets of values, in order of precedence (last wins):
    1. The builtin values.yaml defaults
    2. The profile the user selects
    3. Users input (-f or --set)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. src/go/types/gcsizes.go

    			// Special case: sync/atomic.align64 is an
    			// empty struct we recognize as a signal that
    			// the struct it contains must be
    			// 64-bit-aligned.
    			//
    			// This logic is equivalent to the logic in
    			// cmd/compile/internal/types/size.go:calcStructOffset
    			return 8
    		}
    
    		// spec: "For a variable x of struct type: unsafe.Alignof(x)
    		// is the largest of the values unsafe.Alignof(x.f) for each
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. platforms/jvm/language-jvm/src/main/java/org/gradle/api/internal/tasks/compile/daemon/CompilerWorkerExecutor.java

    import org.gradle.workers.WorkParameters;
    import org.gradle.workers.internal.DaemonForkOptions;
    import org.gradle.workers.internal.DefaultWorkResult;
    
    import java.io.Serializable;
    
    /**
     * Encapsulates the logic to execute a work item for an {@link AbstractDaemonCompiler}.
     */
    public interface CompilerWorkerExecutor {
        /**
         * Executes a compiler specified by the {@link CompilerParameters}
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-plugins/src/main/kotlin/org/gradle/kotlin/dsl/plugins/dsl/KotlinDslPlugin.kt

                        "Let Gradle control the version of `kotlin-dsl` by removing any explicit `kotlin-dsl` version constraints from your build logic.",
                    expectedKotlinDslPluginsVersion, appliedKotlinDslPluginsVersion, project
                )
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 03 11:09:52 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. pkg/kubelet/configmap/configmap_manager.go

    }
    
    const (
    	defaultTTL = time.Minute
    )
    
    // NewCachingConfigMapManager creates a manager that keeps a cache of all configmaps
    // necessary for registered pods.
    // It implement the following logic:
    //   - whenever a pod is create or updated, the cached versions of all configmaps
    //     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.5K bytes
    - Viewed (0)
Back to top