Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 55 for decisions (2.21 sec)

  1. src/cmd/internal/obj/sym.go

    //	Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com)
    //	Portions Copyright © 2004,2006 Bruce Ellis
    //	Portions Copyright © 2005-2007 C H Forsyth (******@****.***)
    //	Revisions Copyright © 2000-2007 Lucent Technologies Inc. and others
    //	Portions Copyright © 2009 The Go Authors. All rights reserved.
    //
    // Permission is hereby granted, free of charge, to any person obtaining a copy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/tracing.go

    	var sampling float64
    	if useCustomSampler {
    		// If the TracingProvider has a custom sampler (OTel Sampler)
    		// the sampling percentage is set to 100% so all spans arrive at the sampler for its decision.
    		sampling = 100
    	} else if spec.RandomSamplingPercentage != nil {
    		sampling = *spec.RandomSamplingPercentage
    	} else {
    		// gracefully fallback to MeshConfig configuration. It will act as an implicit
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/volume_manager.go

    	return result
    }
    
    func (vm *volumeManager) GetVolumesInUse() []v1.UniqueVolumeName {
    	// Report volumes in desired state of world and actual state of world so
    	// that volumes are marked in use as soon as the decision is made that the
    	// volume *should* be attached to this node until it is safely unmounted.
    	desiredVolumes := vm.desiredStateOfWorld.GetVolumesToMount()
    	allAttachedVolumes := vm.actualStateOfWorld.GetAttachedVolumes()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/values.yaml

          stackdriver:
            enabled: false
      # Revision is set as 'version' label and part of the resource names when installing multiple control planes.
      revision: ""
      # Revision tags are aliases to Istio control plane revisions
      revisionTags: []
      # For Helm compatibility.
      ownerName: ""
      # meshConfig defines runtime configuration of components, including Istiod and istio-agent behavior
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/values.yaml

            enabled: false
      # Revision is set as 'version' label and part of the resource names when installing multiple control planes.
      revision: ""
    
      # Revision tags are aliases to Istio control plane revisions
      revisionTags: []
    
      # For Helm compatibility.
      ownerName: ""
    
      # meshConfig defines runtime configuration of components, including Istiod and istio-agent behavior
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    The annotation can be used on its own, or together with `@CacheableTask`.
    
    NOTE: This annotation is only for documenting the reason behind not caching the task by default.
    Build logic can override this decision via the runtime API (see below).
    
    == Enable caching of non-cacheable tasks
    
    As we have seen, built-in tasks, or tasks provided by plugins, are cacheable if their class is annotated with the `Cacheable` annotation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/fetch.go

    and rsc.io/private/quux.
    
    For fine-grained control over module download and validation, the GONOPROXY
    and GONOSUMDB environment variables accept the same kind of glob list
    and override GOPRIVATE for the specific decision of whether to use the proxy
    and checksum database, respectively.
    
    For example, if a company ran a module proxy serving private modules,
    users would configure go using:
    
    	GOPRIVATE=*.corp.example.com
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_client.go

    			return err
    		}
    	} else {
    		// This is a renegotiation handshake. We require that the
    		// server's identity (i.e. leaf certificate) is unchanged and
    		// thus any previous trust decision is still valid.
    		//
    		// See https://mitls.org/pages/attacks/3SHAKE for the
    		// motivation behind this requirement.
    		if !bytes.Equal(c.peerCertificates[0].Raw, certMsg.certificates[0]) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/interface.go

    	// - There is no guarantee that the information is always up-to-date.
    	//   So, plugins shouldn't use it in QueueingHint and PreEnqueue
    	//   otherwise, they might make a decision based on stale information.
    	//
    	// Instead, they should use the resources getting from Informer created from SharedInformerFactory().
    	SnapshotSharedLister() SharedLister
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    In the build script, we can now request a specific variant and Gradle will fail with a selection error if more information is needed to make a decision.
    
    Gradle is able to understand the common case where a single attribute is missing that would have removed the ambiguity.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
Back to top