Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 491 for Pull (0.04 sec)

  1. pkg/scheduler/framework/plugins/schedulinggates/scheduling_gates.go

    	}
    	// When the QueueingHint feature is enabled,
    	// the scheduling queue uses Pod/Update Queueing Hint
    	// to determine whether a Pod's update makes the Pod schedulable or not.
    	// https://github.com/kubernetes/kubernetes/pull/122234
    	return []framework.ClusterEventWithHint{
    		// Pods can be more schedulable once it's gates are removed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. manifests/charts/gateway/values.yaml

      tolerations: []
    
      topologySpreadConstraints: []
    
      affinity: {}
    
      # If specified, the gateway will act as a network gateway for the given network.
      networkGateway: ""
    
      # Specify image pull policy if default behavior isn't desired.
      # Default behavior: latest images will be Always else IfNotPresent
      imagePullPolicy: ""
    
      imagePullSecrets: []
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 16:51:35 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/SystemPropertiesCompositeBuildFixture.groovy

        static Set<List<BuildWithSystemPropertyDefined>> definitions() {
            // The order needs to be consistent here for the retry plugin to work,
            // see https://github.com/gradle/gradle/pull/25605
            Set<List<BuildWithSystemPropertyDefined>> containsIncludedBuildDefinitions = new LinkedHashSet<>()
    
            Set<List<BuildWithSystemPropertyDefined>> allDefinitions = [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    //   [DONE] Irrelevant for delete, because Delete doesn't compare data.
    // - https://github.com/kubernetes/kubernetes/pull/43152
    //   [DONE] Added TestDeleteWithSuggestionAndConflict
    // - https://github.com/kubernetes/kubernetes/pull/54780
    //   [DONE] Irrelevant for delete, because Delete doesn't compare data.
    // - https://github.com/kubernetes/kubernetes/pull/58375
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  5. pkg/kubelet/container/runtime.go

    	return pod.Name + "_" + pod.Namespace
    }
    
    // BuildPodFullName builds the pod full name from pod name and namespace.
    func BuildPodFullName(name, namespace string) string {
    	return name + "_" + namespace
    }
    
    // ParsePodFullName parsed the pod full name.
    func ParsePodFullName(podFullName string) (string, string, error) {
    	parts := strings.Split(podFullName, "_")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration.go

    	}
    	// When the QueueingHint feature is enabled,
    	// the scheduling queue uses Pod/Update Queueing Hint
    	// to determine whether a Pod's update makes the Pod schedulable or not.
    	// https://github.com/kubernetes/kubernetes/pull/122234
    	clusterEventWithHint = append(clusterEventWithHint,
    		framework.ClusterEventWithHint{Event: framework.ClusterEvent{Resource: framework.Pod, ActionType: framework.Update}, QueueingHintFn: pl.isSchedulableAfterPodChange})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/testng/TestNGOptions.java

        private final Cached<String> cachedSuiteXml = Cached.of(new Callable<String>() {
            @Override
            public String call() {
                return suiteXmlWriter != null ? suiteXmlWriter.toString() : null;
            }
        });
    
        private final File projectDir;
    
        @Inject
        public TestNGOptions(ProjectLayout projectLayout) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

    # node startup steps!
    # Pull-InfraContainer must be called AFTER Verify-WorkerServices.
    function Pull-InfraContainer {
      $name, $label = ${env:INFRA_CONTAINER} -split ':',2
      if (-not ("$(& crictl images)" -match "$name.*$label")) {
        & crictl pull ${env:INFRA_CONTAINER}
        if (!$?) {
          throw "Error running 'crictl pull ${env:INFRA_CONTAINER}'"
        }
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. cmd/erasure-healing-common.go

    	if inconsistent > len(partsMetadata)/2 {
    		// If there are too many inconsistent files, then we can't trust erasure.Distribution (most likely
    		// because of bugs found in CopyObject/PutObjectTags) https://github.com/minio/minio/pull/10772
    		erasureDistributionReliable = false
    	}
    
    	metaErrs := make([]error, len(errs))
    
    	for i, onlineDisk := range onlineDisks {
    		if errs[i] != nil {
    			metaErrs[i] = errs[i]
    			continue
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods.go

    			// Ignore to avoid unnecessary warnings.
    			continue
    		}
    		secret, err := kl.secretManager.GetSecret(pod.Namespace, secretRef.Name)
    		if err != nil {
    			klog.InfoS("Unable to retrieve pull secret, the image pull may not succeed.", "pod", klog.KObj(pod), "secret", klog.KObj(secret), "err", err)
    			failedPullSecrets = append(failedPullSecrets, secretRef.Name)
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top