Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for Unregistered (0.14 sec)

  1. pkg/kubelet/kubelet.go

    	// StatsProvider provides the node and the container stats.
    	StatsProvider *stats.Provider
    
    	// pluginmanager runs a set of asynchronous loops that figure out which
    	// plugins need to be registered/unregistered based on this node and makes it so.
    	pluginManager pluginmanager.PluginManager
    
    	// This flag sets a maximum number of images to report in the node status.
    	nodeStatusMaxImages int32
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (1)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      const tensorflow::OpRegistrationData* op_reg_data;
      TF_RETURN_IF_ERROR(
          graph_->op_registry()->LookUp(node.type_string(), &op_reg_data));
      if (!op_reg_data) {
        DVLOG(1) << "Skipping inference for unregistered op " << node.type_string();
        return default_type();
      }
      if (op_reg_data->shape_inference_fn == nullptr) {
        DVLOG(1) << "Skipping inference for op without shape function "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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 (1)
  9. 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)
  10. 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)
Back to top