Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for registerKey (0.2 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue_test.go

    					b.StopTimer()
    					c := testingclock.NewFakeClock(time.Now())
    
    					m := makeEmptyQueueingHintMapPerProfile()
    					// - All plugins registered for events[0], which is NodeAdd.
    					// - 1/2 of plugins registered for events[1]
    					// - 1/3 of plugins registered for events[2]
    					// - ...
    					for j := 0; j < len(events); j++ {
    						for k := 0; k < len(plugins); k++ {
    							if (k+1)%(j+1) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. cmd/object-handlers_test.go

    	// The only aim is to generate an HTTP request in a way that the relevant/registered end point is evoked/called.
    	nilBucket := "dummy-bucket"
    	nilObject := "dummy-object"
    
    	nilReq, err := newTestSignedRequestV4(http.MethodPut, getCopyObjectURL("", nilBucket, nilObject),
    		0, nil, "", "", nil)
    
    	// Below is how CopyObjectHandler is registered.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  3. src/net/http/server.go

    // If a pattern passed to [ServeMux.Handle] or [ServeMux.HandleFunc] conflicts with
    // another pattern that is already registered, those functions panic.
    //
    // As an example of the general rule, "/images/thumbnails/" is more specific than "/images/",
    // so both can be registered.
    // The former matches paths beginning with "/images/thumbnails/"
    // and the latter will match any other path in the "/images/" subtree.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    	return ""
    }
    
    // TestUnimplementedRESTStorage ensures that if a rest.Storage does not implement a given
    // method, that it is literally not registered with the server.  In the past,
    // we registered everything, and returned method not supported if it didn't support
    // a verb.  Now we literally do not register a storage if it does not implement anything.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/runtime/framework_test.go

    			},
    		},
    		{
    			name: "Expect 'already registered' error",
    			plugins: &config.Plugins{
    				MultiPoint: config.PluginSet{
    					Enabled: []config.Plugin{
    						{Name: testPlugin},
    						{Name: testPlugin},
    					},
    				},
    			},
    			wantErr: "already registered",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.5.md

    * federation: Adding support for DeleteOptions.OrphanDependents for federated replicasets and deployments. Setting it to false while deleting a federated replicaset or deployment also deletes the corresponding resource from all registered clusters. ([#36476](https://github.com/kubernetes/kubernetes/pull/36476), [@nikhiljindal](https://github.com/nikhiljindal))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * <code>myworkgroup</code> happends to be a workgroup(which is indeed
     * suggested by the name) the <code>list</code> method will return
     * a list of servers that have registered themselves as members of
     * <code>myworkgroup</code>.
     * </td></tr>
     * 
     * <tr><td width="20%"><code>smb1://</code></td><td>
     * Just as <code>smb1://server/</code> lists shares and
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers.go

    		{Name: "Name", Type: "string", Format: "name", Description: metav1.ObjectMeta{}.SwaggerDoc()["name"]},
    		{Name: "Drivers", Type: "integer", Description: "Drivers indicates the number of CSI drivers registered on the node"},
    		{Name: "Age", Type: "string", Description: metav1.ObjectMeta{}.SwaggerDoc()["creationTimestamp"]},
    	}
    	_ = h.TableHandler(csiNodeColumnDefinitions, printCSINode)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        public static final String LABELS_BUSINESS_CATEGORY = "{labels.businessCategory}";
    
        /** The key of the message: Registered Address */
        public static final String LABELS_user_registeredAddress = "{labels.user_registeredAddress}";
    
        /** The key of the message: Registered Address */
        public static final String LABELS_REGISTERED_ADDRESS = "{labels.registeredAddress}";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

                          std::pair<uint64_t, uint64_t>>
          custom_op_idx_map_;
    
      // Points to TensorFlow and TFLite dialects, respectively. nullptr if the
      // dialect is not registered.
      const Dialect* tf_dialect_;
      const Dialect* tfl_dialect_;
      const Dialect* vhlo_dialect_;
    
      // The failed ops during legalization.
      std::map<std::string, std::set<std::string>> failed_flex_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)
Back to top