Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 206 for Shardz (0.12 sec)

  1. platforms/documentation/docs/src/docs/userguide/native/swift_testing.adoc

    This means that it a given test class is executed by multiple test tasks, then the test report will include executions of that class, but it can be hard to distinguish individual executions of that class and their output....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/loopclosure.go

    		}
    
    		// Inspect statements to find function literals that may be run outside of
    		// the current loop iteration.
    		//
    		// For go, defer, and errgroup.Group.Go, we ignore all but the last
    		// statement, because it's hard to prove go isn't followed by wait, or
    		// defer by return. "Last" is defined recursively.
    		//
    		// TODO: consider allowing the "last" go/defer/Go statement to be followed by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    		// so the passwd lookup doesn't need to succeed at all for Istio to function.
    		// Effectively, we want a mini-container. In fact, running in a real container would be ideal but it is hard to do portably.
    		// See https://github.com/istio/istio/issues/48416 for a real world example of this case.
    		if err := mount("/dev/null", "/etc/nsswitch.conf"); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. manifests/charts/gateways/istio-egress/values.yaml

          # There are currently two types of anti-affinity:
          #    "requiredDuringSchedulingIgnoredDuringExecution"
          #    "preferredDuringSchedulingIgnoredDuringExecution"
          # which denote "hard" vs. "soft" requirements, you can define your values
          # in "podAntiAffinityLabelSelector" and "podAntiAffinityTermLabelSelector"
          # correspondingly.
          # For example:
          # podAntiAffinityLabelSelector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. manifests/charts/gateways/istio-ingress/values.yaml

          # There are currently two types of anti-affinity:
          #    "requiredDuringSchedulingIgnoredDuringExecution"
          #    "preferredDuringSchedulingIgnoredDuringExecution"
          # which denote "hard" vs. "soft" requirements, you can define your values
          # in "podAntiAffinityLabelSelector" and "podAntiAffinityTermLabelSelector"
          # correspondingly.
          # For example:
          # podAntiAffinityLabelSelector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. pkg/controller/tainteviction/taint_eviction.go

    			return
    		}
    		utilruntime.HandleError(fmt.Errorf("could not get pod %s/%s: %v", podUpdate.podName, podUpdate.podNamespace, err))
    		return
    	}
    
    	// We key the workqueue and shard workers by nodeName. If we don't match the current state we should not be the one processing the current object.
    	if pod.Spec.NodeName != podUpdate.nodeName {
    		return
    	}
    
    	// Create or Update
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. pkg/apis/core/v1/zz_generated.defaults.go

    		a := &in.Items[i]
    		SetObjectDefaults_ReplicationController(a)
    	}
    }
    
    func SetObjectDefaults_ResourceQuota(in *v1.ResourceQuota) {
    	SetDefaults_ResourceList(&in.Spec.Hard)
    	SetDefaults_ResourceList(&in.Status.Hard)
    	SetDefaults_ResourceList(&in.Status.Used)
    }
    
    func SetObjectDefaults_ResourceQuotaList(in *v1.ResourceQuotaList) {
    	for i := range in.Items {
    		a := &in.Items[i]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 14:49:26 UTC 2023
    - 37.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/MultipleVariantSelectionIntegrationTest.groovy

                    edge('org:foo:1.0', 'org:foo:1.1') {
                        byConflictResolution('between versions 1.1 and 1.0')
                        // the following assertion is true but limitations to the test fixtures make it hard to check
                        //variant('altruntime', [custom: 'c3', 'org.gradle.status': defaultStatus()])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  9. src/archive/tar/common.go

    const (
    	// Type '0' indicates a regular file.
    	TypeReg = '0'
    
    	// Deprecated: Use TypeReg instead.
    	TypeRegA = '\x00'
    
    	// Type '1' to '6' are header-only flags and may not have a data body.
    	TypeLink    = '1' // Hard link
    	TypeSymlink = '2' // Symbolic link
    	TypeChar    = '3' // Character device node
    	TypeBlock   = '4' // Block device node
    	TypeDir     = '5' // Directory
    	TypeFifo    = '6' // FIFO node
    
    	// Type '7' is reserved.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  10. pkg/kubelet/container/runtime.go

    	// gracePeriodOverride if specified allows the caller to override the pod default grace period.
    	// only hard kill paths are allowed to specify a gracePeriodOverride in the kubelet in order to not corrupt user data.
    	// it is useful when doing SIGKILL for hard eviction scenarios, or max grace period during soft eviction scenarios.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top