Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 132 for sget (0.07 sec)

  1. fastapi/routing.py

            self.name = get_name(endpoint) if name is None else name
            self.path_regex, self.path_format, self.param_convertors = compile_path(path)
            if methods is None:
                methods = ["GET"]
            self.methods: Set[str] = {method.upper() for method in methods}
            if isinstance(generate_unique_id_function, DefaultPlaceholder):
                current_generate_unique_id: Callable[
                    ["APIRoute"], str
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  2. pkg/volume/util/operationexecutor/operation_generator.go

    		}
    
    		// Get attacher, if possible
    		attachableVolumePlugin, _ :=
    			og.volumePluginMgr.FindAttachablePluginBySpec(volumeToMount.VolumeSpec)
    		var volumeAttacher volume.Attacher
    		if attachableVolumePlugin != nil {
    			volumeAttacher, _ = attachableVolumePlugin.NewAttacher()
    		}
    
    		// get deviceMounter, if possible
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  3. src/reflect/all_test.go

    		switch v.Kind() {
    		case Int:
    			v.Set(ValueOf(int(132)))
    		case Int8:
    			v.Set(ValueOf(int8(8)))
    		case Int16:
    			v.Set(ValueOf(int16(16)))
    		case Int32:
    			v.Set(ValueOf(int32(32)))
    		case Int64:
    			v.Set(ValueOf(int64(64)))
    		case Uint:
    			v.Set(ValueOf(uint(132)))
    		case Uint8:
    			v.Set(ValueOf(uint8(8)))
    		case Uint16:
    			v.Set(ValueOf(uint16(16)))
    		case Uint32:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

      GraphConstructorOptions options;
      options.allow_internal_ops = true;
      std::unique_ptr<Graph> graph(new Graph(lib_def.get()));
      s = ConvertGraphDefToGraph(options, *graphdef, graph.get());
      if (!s.ok()) return s;
    
      s = PerformStaticShapeInferenceBeforeEncapsulation(graph.get());
      if (!s.ok()) return s;
    
      // Create FunctionLibraryRuntime.
      SessionOptions session_options;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      std::map<std::string, std::set<std::string>> failed_flex_ops_;
      std::map<std::string, std::set<std::string>> failed_custom_ops_;
    
      // Ops to provide warning messages.
      std::map<std::string, std::set<std::string>> custom_ops_;
      std::map<std::string, std::set<std::string>> flex_ops_;
    
      // Resource ops to provide warning messages.
      std::map<std::string, std::set<std::string>> resource_ops_;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  6. pkg/controller/garbagecollector/garbagecollector_test.go

    		response: map[string]FakeResponse{
    			"GET" + "/api/v1/namespaces/ns1/pods/rc1Pod1": {
    				200,
    				serilizeOrDie(t, rc1Pod1),
    			},
    			"GET" + "/api/v1/namespaces/ns1/pods/rc1Pod2": {
    				200,
    				serilizeOrDie(t, rc1Pod2),
    			},
    			"GET" + "/api/v1/namespaces/ns1/pods/rc2Pod1": {
    				200,
    				serilizeOrDie(t, rc2Pod1),
    			},
    			"GET" + "/api/v1/namespaces/ns1/pods/rc3Pod1": {
    				200,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  7. cmd/site-replication.go

    	numSites := len(sris)
    	allBuckets := set.NewStringSet() // across sites
    	allUsers := set.NewStringSet()
    	allUserWPolicies := set.NewStringSet()
    	allGroups := set.NewStringSet()
    	allGroupWPolicies := set.NewStringSet()
    	allILMExpiryRules := set.NewStringSet()
    
    	allPolicies := set.NewStringSet()
    	for _, sri := range sris {
    		for b := range sri.Buckets {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

      resources:
      - '*'
      verbs:
      - get
      - list
      - watch
    - apiGroups:
      - ""
      resources:
      - endpoints
      - pods
      - services
      - nodes
      - replicationcontrollers
      - namespaces
      - secrets
      verbs:
      - get
      - list
      - watch
    - apiGroups:
      - networking.istio.io
      resources:
      - workloadentries
      verbs:
      - get
      - watch
      - list
    - apiGroups:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  9. pkg/scheduler/schedule_one_test.go

    		},
    		{
    			name:         "not set percentageOfNodesToScore and nodes number more than 50",
    			numAllNodes:  1000,
    			wantNumNodes: 420,
    		},
    		{
    			name:              "set profile percentageOfNodesToScore and nodes number more than 50",
    			profilePercentage: ptr.To[int32](40),
    			numAllNodes:       1000,
    			wantNumNodes:      400,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  10. src/unicode/tables.go

    	Letter = _L  // Letter/L is the set of Unicode letters, category L.
    	L      = _L
    	Lm     = _Lm // Lm is the set of Unicode characters in category Lm (Letter, modifier).
    	Lo     = _Lo // Lo is the set of Unicode characters in category Lo (Letter, other).
    	Lower  = _Ll // Lower is the set of Unicode lower case letters.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 04:29:53 UTC 2023
    - 205.2K bytes
    - Viewed (0)
Back to top