Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 157 for cheese (0.11 sec)

  1. src/go/types/unify.go

    					// match and we can simply compare the number of methods.
    					// TODO(gri) We may be able to relax this rule and select
    					// the more general interface. But if one of them is a defined
    					// type, it's not clear how to choose and whether we introduce
    					// an order dependency or not. Requiring the same method set
    					// is conservative.
    					if len(xi.typeSet().methods) != len(yi.typeSet().methods) {
    						return false
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_client.go

    		}
    		ech = &echContext{config: echConfig}
    		hello.encryptedClientHello = []byte{1} // indicate inner hello
    		// We need to explicitly set these 1.2 fields to nil, as we do not
    		// marshal them when encoding the inner hello, otherwise transcripts
    		// will later mismatch.
    		hello.supportedPoints = nil
    		hello.ticketSupported = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  3. src/internal/trace/event/go122/event.go

    	},
    	EvCPUSamples: event.Spec{
    		Name: "CPUSamples",
    	},
    	EvCPUSample: event.Spec{
    		Name: "CPUSample",
    		Args: []string{"time", "m", "p", "g", "stack"},
    		// N.B. There's clearly a timestamp here, but these Events
    		// are special in that they don't appear in the regular
    		// M streams.
    	},
    	EvFrequency: event.Spec{
    		Name: "Frequency",
    		Args: []string{"freq"},
    	},
    	EvExperimentalBatch: event.Spec{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	// Required.
    	PriorityLevelConfiguration PriorityLevelConfigurationReference `json:"priorityLevelConfiguration" protobuf:"bytes,1,opt,name=priorityLevelConfiguration"`
    	// `matchingPrecedence` is used to choose among the FlowSchemas that match a given request. The chosen
    	// FlowSchema is among those with the numerically lowest (which we take to be logically highest)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/CompactHashMap.java

      /**
       * Keeps track of metadata like the number of hash table bits and modifications of this data
       * structure (to make it possible to throw ConcurrentModificationException in the iterator). Note
       * that we choose not to make this volatile, so we do less of a "best effort" to track such
       * errors, for better performance.
       *
       * <p>For a new instance, where the arrays above have not yet been allocated, the value of {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  6. pkg/volume/util/util.go

    	return true
    }
    
    // MakeAbsolutePath convert path to absolute path according to GOOS
    func MakeAbsolutePath(goos, path string) string {
    	if goos != "windows" {
    		return filepath.Clean("/" + path)
    	}
    	// These are all for windows
    	// If there is a colon, give up.
    	if strings.Contains(path, ":") {
    		return path
    	}
    	// If there is a slash, but no drive, add 'c:'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/signature.go

    			// receiver type expression would fail in Checker.collectParams below,
    			// when Checker.ident cannot resolve the _ to a type.
    			//
    			// Checker.recvTParamMap maps these blank identifiers to their type parameter
    			// types, so that they may be resolved in Checker.ident when they fail
    			// lookup in the scope.
    			for i, p := range rparams {
    				if p.Value == "_" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:33:05 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/unify.go

    					// match and we can simply compare the number of methods.
    					// TODO(gri) We may be able to relax this rule and select
    					// the more general interface. But if one of them is a defined
    					// type, it's not clear how to choose and whether we introduce
    					// an order dependency or not. Requiring the same method set
    					// is conservative.
    					if len(xi.typeSet().methods) != len(yi.typeSet().methods) {
    						return false
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  9. pkg/volume/plugins.go

    	// Mount options for a persistent volume
    	MountOptions []string
    	// Suggested PV.Name of the PersistentVolume to provision.
    	// This is a generated name guaranteed to be unique in Kubernetes cluster.
    	// If you choose not to use it as volume name, ensure uniqueness by either
    	// combining it with your value or create unique values of your own.
    	PVName string
    	// PVC is reference to the claim that lead to provisioning of a new PV.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  10. pilot/pkg/model/sidecar.go

    					}
    				} else {
    					// We couldn't find the hostname in our config namespace
    					// We have to pick one arbitrarily for now, so we'll pick the first namespace alphabetically
    					// TODO: could we choose services more intelligently based on their ports?
    					if len(byNamespace) == 0 {
    						// This hostname isn't found anywhere
    						log.Debugf("Could not find service hostname %s parsed from %s", h, vs.Key())
    						continue
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
Back to top