Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for registerKey (0.35 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            expect:
            registry.atStateOrLater("parent", ModelNode.State.Registered).path == ModelPath.path("parent")
            registry.atStateOrLater("parent.foo", ModelNode.State.Registered).path == ModelPath.path("parent.foo")
    
            registry.remove(ModelPath.path("parent"))
    
            when:
            registry.atStateOrLater("parent", ModelNode.State.Registered) == null
            then:
            def exParent = thrown IllegalStateException
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/runtime/framework.go

    				continue
    			}
    
    			// if this plugin is already registered via MultiPoint, then this is
    			// a double registration and an error in the config.
    			if multiPointEnabled.has(ep.Name) {
    				return fmt.Errorf("plugin %q already registered as %q", ep.Name, pluginType.Name())
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            0 * _
    
            when:
            toList(container)
    
            then:
            0 * _
        }
    
        def "provider is not queried or element configured until collection is realized when lazy action is registered on type-filtered collection"() {
            containerAllowsExternalProviders()
            def action = Mock(Action)
            def provider1 = Mock(ProviderInternal)
            def provider2 = Mock(ProviderInternal)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/queue/scheduling_queue.go

    	moveRequestCycle int64
    
    	// preEnqueuePluginMap is keyed with profile name, valued with registered preEnqueue plugins.
    	preEnqueuePluginMap map[string][]framework.PreEnqueuePlugin
    	// queueingHintMap is keyed with profile name, valued with registered queueing hint functions.
    	queueingHintMap QueueingHintMapPerProfile
    
    	// closed indicates that the queue is closed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

    // filter out all the user provided schemes (as they are not registered) but
    // subsequent instantiations would return all registered schemes (since the
    // vector with the user provided schemes is cleared).
    static std::vector<std::string>* GetSchemesFromUserOrEnv() {
      std::vector<std::string>* all_schemes = new std::vector<std::string>;
      tensorflow::Status status =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  6. tensorflow/c/c_api.h

    // Returns the number of TF_Functions registered in `g`.
    TF_CAPI_EXPORT extern int TF_GraphNumFunctions(TF_Graph* g);
    
    // Fills in `funcs` with the TF_Function* registered in `g`.
    // `funcs` must point to an array of TF_Function* of length at least
    // `max_func`. In usual usage, max_func should be set to the result of
    // TF_GraphNumFunctions(g). In this case, all the functions registered in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    These methods are now final to avoid subclasses overriding these methods and using state that is not initialized.
    
    ==== Inputs and outputs are not automatically registered
    The Property instances that are returned by these methods are no longer automatically registered as inputs or outputs of the task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  8. cmd/test-utils_test.go

    // Here is the brief description of some of the arguments to the function below.
    //
    //	apiRouter - http.Handler with the relevant API endPoint (API endPoint under test) registered.
    //	anonReq   - unsigned *http.Request to invoke the handler's response for anonymous requests.
    //	policyFunc    - function to return bucketPolicy statement which would permit the anonymous request to be served.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	"k8s.io/klog/v2"
    	"k8s.io/kube-openapi/pkg/spec3"
    	"k8s.io/kube-openapi/pkg/validation/spec"
    )
    
    // crdHandler serves the `/apis` endpoint.
    // This is registered as a filter so that it never collides with any explicitly registered endpoints
    type crdHandler struct {
    	versionDiscoveryHandler *versionDiscoveryHandler
    	groupDiscoveryHandler   *groupDiscoveryHandler
    
    	customStorageLock sync.Mutex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/devicemanager/manager_test.go

    			require.Equal(t, resourceCapacity.Value(), resourceAllocatable.Value(), "capacity should equal to allocatable")
    			require.Equal(t, int64(1), resourceAllocatable.Value(), "Devices of plugin previously registered should be removed.")
    			p2.Stop()
    			p3.Stop()
    			cleanup(t, m, p1)
    		}
    	}
    }
    
    // Tests that the device plugin manager correctly handles registration and re-registration by
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
Back to top