Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 112 for map1 (0.05 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    		return nil, err
    	}
    
    	// Scope/Storages per version.
    	requestScopes := map[string]*handlers.RequestScope{}
    	storages := map[string]customresource.CustomResourceStorage{}
    	statusScopes := map[string]*handlers.RequestScope{}
    	scaleScopes := map[string]*handlers.RequestScope{}
    	deprecated := map[string]bool{}
    	warnings := map[string][]string{}
    
    	equivalentResourceRegistry := runtime.NewEquivalentResourceRegistry()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        // Function call node in the output graph. Not owned.
        Node* call_node_;
    
        // Maps from source (producer node/slot) and destination
        // (consumer node/slot) tensors in the input graph to _Arg numbers in
        // the subgraph. The source map is one-to-one, whereas the dest map may be
        // many-to-one.
        absl::flat_hash_map<OutputTensor, int, OutputTensor::Hash> args_by_src_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    // +structType=atomic
    type LabelSelector struct {
    	// matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
    	// map is equivalent to an element of matchExpressions, whose key field is "key", the
    	// operator is "In", and the values array contains only "value". The requirements are ANDed.
    	// +optional
    	MatchLabels map[string]string `json:"matchLabels,omitempty" protobuf:"bytes,1,rep,name=matchLabels"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  4. plugin/pkg/admission/noderestriction/admission_test.go

    		{
    			name: "added",
    			a:    map[string]string{},
    			b:    map[string]string{"a": "0"},
    			want: sets.NewString("a"),
    		},
    		{
    			name: "removed",
    			a:    map[string]string{"z": "3"},
    			b:    map[string]string{},
    			want: sets.NewString("z"),
    		},
    		{
    			name: "changed",
    			a:    map[string]string{"z": "3"},
    			b:    map[string]string{"z": "4"},
    			want: sets.NewString("z"),
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  5. cmd/bucket-replication-utils_gen.go

    func (z *MRFReplicateEntries) MarshalMsg(b []byte) (o []byte, err error) {
    	o = msgp.Require(b, z.Msgsize())
    	// map header, size 2
    	// string "e"
    	o = append(o, 0x82, 0xa1, 0x65)
    	o = msgp.AppendMapHeader(o, uint32(len(z.Entries)))
    	for za0001, za0002 := range z.Entries {
    		o = msgp.AppendString(o, za0001)
    		// map header, size 3
    		// string "b"
    		o = append(o, 0x83, 0xa1, 0x62)
    		o = msgp.AppendString(o, za0002.Bucket)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 61.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/expr.go

    				goto Error
    			}
    			check.indexedElts(e.ElemList, utyp.elem, -1)
    
    		case *Map:
    			// Prevent crash if the map referred to is not yet set up.
    			// See analogous comment for *Array.
    			if utyp.key == nil || utyp.elem == nil {
    				check.error(e, InvalidTypeCycle, "invalid recursive type")
    				goto Error
    			}
    			// If the map key type is an interface (but not a type parameter),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  7. src/go/types/api_test.go

    	f := mustParse(fset, src)
    	info := Info{
    		Defs:      make(map[*ast.Ident]Object),
    		Implicits: make(map[ast.Node]Object),
    	}
    	var conf Config
    	conf.Importer = importer.Default()
    	_, err := conf.Check("p", fset, []*ast.File{f}, &info)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// map import paths to importDecl
    	imports := make(map[string]*ast.ImportSpec)
    	for _, s := range f.Decls[0].(*ast.GenDecl).Specs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

            if (request.getValidationLevel() < ModelBuilderRequest.VALIDATION_LEVEL_MAVEN_2_0) {
                return;
            }
    
            Map<String, Plugin> plugins = new HashMap<>();
            Map<String, String> versions = new HashMap<>();
            Map<String, String> managedVersions = new HashMap<>();
    
            for (int i = lineage.size() - 1; i >= 0; i--) {
                Model model = lineage.get(i);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  9. src/net/http/fs_test.go

    		serveETag        string // optional
    		serveContentType string // optional
    		reqHeader        map[string]string
    		wantLastMod      string
    		wantContentType  string
    		wantContentRange string
    		wantStatus       int
    	}
    	htmlModTime := mustStat(t, "testdata/index.html").ModTime()
    	tests := map[string]testCase{
    		"no_last_modified": {
    			file:            "testdata/style.css",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

    format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of  a list item's key fields to their unique values If a key maps to...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
Back to top