Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 131 for distinguish (0.14 sec)

  1. staging/src/k8s.io/api/discovery/v1/types.go

    	Conditions EndpointConditions `json:"conditions,omitempty" protobuf:"bytes,2,opt,name=conditions"`
    
    	// hostname of this endpoint. This field may be used by consumers of
    	// endpoints to distinguish endpoints from each other (e.g. in DNS names).
    	// Multiple endpoints which use the same hostname should be considered
    	// fungible (e.g. multiple A values in DNS). Must be lowercase and pass DNS
    	// Label (RFC 1123) validation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

    Measuring complex pipelines may require more work or external tools to collect and process measurements.
    It's important to distinguish those parts of the pipeline that caching has no effect on, for example, the time builds spend waiting in the CI system's queue, or time taken by checking out source code from version control.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    	"istio.io/istio/operator/pkg/tpath"
    	"istio.io/istio/operator/pkg/util"
    )
    
    const (
    	validationMethodName = "Validate"
    )
    
    type deprecatedSettings struct {
    	old string
    	new string
    	// In ordered to distinguish between unset for non-pointer values, we need to specify the default value
    	def any
    }
    
    // ValidateConfig  calls validation func for every defined element in Values
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. cni/pkg/nodeagent/informers.go

    		// pod was added to our cache
    		// we get here in 2 cases:
    		// 1. new pod was created on our node
    		// 2. we were restarted and current existing pods are added to our cache
    
    		// We have no good way to distinguish between these two cases from here. But we don't need to!
    		// Existing pods will be handled by the dataplane using `GetAmbientPods`,
    		// and the initial enqueueNamespace, and new pods will be handled by the CNI.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/aggregate/controller_test.go

    		}
    	}
    }
    
    func TestGetProxyWorkloadLabels(t *testing.T) {
    	// If no registries return workload labels, we must return nil, rather than an empty list.
    	// This ensures callers can distinguish between no labels, and labels not found.
    	aggregateCtl := buildMockController()
    
    	instances := aggregateCtl.GetProxyWorkloadLabels(&model.Proxy{IPAddresses: []string{mock.HelloInstanceV0}})
    	if instances != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/apiclient/wait.go

    			hash, err := getStaticPodSingleHash(w.client, nodeName, component)
    			if err != nil {
    				lastErr = err
    				return false, nil
    			}
    			// Set lastErr to nil to be able to later distinguish between getStaticPodSingleHash() and timeout errors
    			lastErr = nil
    			// We should continue polling until the UID changes
    			if hash == previousHash {
    				return false, nil
    			}
    
    			return true, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. internal/kms/config.go

    	// MINIO_KMS_SECRET_KEY_FILE. The docker image always sets the
    	// MINIO_KMS_SECRET_KEY_FILE - either to the argument passed to
    	// the container or to a default string (e.g. "minio_master_key").
    	//
    	// We have to distinguish a explicit config from an implicit. Hence,
    	// we unset the env. vars if they are set but empty or contain a path
    	// which does not exist. The downside of this check is that if
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 14:31:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. src/os/exec.go

    // A Signal represents an operating system signal.
    // The usual underlying implementation is operating system-dependent:
    // on Unix it is syscall.Signal.
    type Signal interface {
    	String() string
    	Signal() // to distinguish from other Stringers
    }
    
    // Getpid returns the process id of the caller.
    func Getpid() int { return syscall.Getpid() }
    
    // Getppid returns the process id of the caller's parent.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/capture/run.go

    		return nil
    	}
    	return err
    }
    
    // configureIPv6Addresses sets up a new IP address on local interface. This is used as the source IP
    // for inbound traffic to distinguish traffic we want to capture vs traffic we do not. This is needed
    // for IPv6 but not IPv4, as IPv4 defaults to `netmask 255.0.0.0`, which allows binding to addresses
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/fetch.go

    	}
    }
    
    // HaveSum returns true if the go.sum file contains an entry for mod.
    // The entry's hash must be generated with a known hash algorithm.
    // mod.Version may have a "/go.mod" suffix to distinguish sums for
    // .mod and .zip files.
    func HaveSum(mod module.Version) bool {
    	goSum.mu.Lock()
    	defer goSum.mu.Unlock()
    	inited, err := initGoSum()
    	if err != nil || !inited {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top