Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 5,637 for need (0.04 sec)

  1. src/internal/abi/stack.go

    	// the stack guard.
    	//
    	// Functions that need frames <= StackSmall can perform the stack check
    	// using a single comparison directly between the stack guard and the SP
    	// because we ensure that StackSmall bytes of stack space are available
    	// beyond the stack guard.
    	StackSmall = 128
    
    	// Functions that need frames <= StackBig can assume that neither
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:56 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. samples/multicluster/README.md

    we need to expose the istiod service through the east-west gateway:
    
    ```bash
    kubectl apply -f samples/multicluster/expose-istiod.yaml -n istio-system
    ```
    
    ## Multi-network Configuration
    
    In order to enable cross-cluster load balancing between clusters that are in different
    networks, we need to expose the services through the east-west gateway in each cluster:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 22 16:29:16 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/processing/AnnotationProcessingResult.java

         * These types need to be reprocessed no matter what source changes are made to ensure that the generated types contain all relevant information.
         */
        public Set<String> getAggregatedTypes() {
            return aggregatedTypes;
        }
    
        /**
         * Contains the types that aggregating annotation processors generated.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/cache/internal/GradleUserHomeCleanupServiceIntegrationTest.groovy

            def oldNotRecentlyUsedGradleDist = versionedDistDirs(type.version("2.3.4"), daysToTriggerCleanup, "my-dist-2")
            if (type == DistType.SNAPSHOT) {
                // we need this so there is more than one snapshot distribution
                versionedDistDirs(type.alternateVersion("2.3.4"), USED_TODAY, "my-dist-3")
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 10 15:48:56 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  5. src/runtime/cgo_sigaction.go

    	}
    	if asanenabled && new != nil {
    		asanwrite(unsafe.Pointer(new), unsafe.Sizeof(*new))
    	}
    	if _cgo_sigaction == nil || inForkedChild {
    		sysSigaction(sig, new, old)
    	} else {
    		// We need to call _cgo_sigaction, which means we need a big enough stack
    		// for C.  To complicate matters, we may be in libpreinit (before the
    		// runtime has been initialized) or in an asynchronous signal handler (with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  6. pkg/controller/deployment/progress.go

    	// and check whether it has timed out. We definitely need this, otherwise we depend on the
    	// controller resync interval. See https://github.com/kubernetes/kubernetes/issues/34458.
    	//
    	// [1] ProgressingCondition.LastUpdatedTime + progressDeadlineSeconds - time.Now()
    	//
    	// For example, if a Deployment updated its Progressing condition 3 minutes ago and has a
    	// deadline of 10 minutes, it would need to be resynced for a progress check after 7 minutes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 11:00:44 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  7. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KaEngineService.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.platform
    
    /**
     * An **engine service** as defined by the Platform Interface (see the README).
     *
     * Engine services do not need to be implemented by a platform. Quite the contrary, they are implemented by the Analysis API engine and
     * intended to support platform implementations. They are defined in the Platform Interface, as opposed to the user-facing Analysis API,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/attributeMatching/groovy/build.gradle

    configurations {
        // A configuration meant for consumers that need the API of this component
        exposedApi {
            // This configuration is an "outgoing" configuration, it's not meant to be resolved
            canBeResolved = false
            // As an outgoing configuration, explain that consumers may want to consume it
            assert canBeConsumed
        }
        // A configuration meant for consumers that need the implementation of this component
        exposedRuntime {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. pkg/config/analysis/README.md

    ```
    
    ### 2. Add the Analyzer to All()
    
    In order to be run, analyzers need to be registered in the [analyzers.All()](https://github.com/istio/istio/blob/master/pkg/config/analysis/analyzers/all.go) function. Add your analyzer as an entry there.
    
    ### 3. Create new message types
    
    If your analyzer requires any new message types (meaning a unique template and error code), you will need to do the following:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/labels.go

    // Returns the given selector, if labelKey is empty.
    func CloneSelectorAndAddLabel(selector *LabelSelector, labelKey, labelValue string) *LabelSelector {
    	if labelKey == "" {
    		// Don't need to add a label.
    		return selector
    	}
    
    	// Clone.
    	newSelector := selector.DeepCopy()
    
    	if newSelector.MatchLabels == nil {
    		newSelector.MatchLabels = make(map[string]string)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 11:09:05 UTC 2018
    - 1.7K bytes
    - Viewed (0)
Back to top