Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 776 for registered_ (0.14 sec)

  1. pkg/features/kube_features_test.go

    )
    
    // TestKubeFeaturesRegistered tests that all kube features are registered.
    func TestKubeFeaturesRegistered(t *testing.T) {
    	registeredFeatures := utilfeature.DefaultFeatureGate.DeepCopy().GetAll()
    
    	for featureName := range defaultKubernetesFeatureGates {
    		if _, ok := registeredFeatures[featureName]; !ok {
    			t.Errorf("The feature gate %q is not registered in the DefaultFeatureGate", featureName)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 16 17:51:00 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/ExecuteDomainObjectCollectionCallbackBuildOperationType.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal;
    
    import org.gradle.internal.operations.BuildOperationType;
    
    /**
     * Fired when a domain object collection executes a registered callback that was registered by user code.
     *
     * @since 5.1
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugins.go

    // PluginEnabledFunc is a function type that can provide an external check on whether an admission plugin may be enabled
    type PluginEnabledFunc func(name string, config io.Reader) bool
    
    // Registered enumerates the names of all registered plugins.
    func (ps *Plugins) Registered() []string {
    	ps.lock.Lock()
    	defer ps.lock.Unlock()
    	keys := []string{}
    	for k := range ps.registry {
    		keys = append(keys, k)
    	}
    	sort.Strings(keys)
    	return keys
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. internal/config/subnet/subnet.go

    	LoggerWebhookName = "subnet"
    )
    
    // Upload given file content (payload) to specified URL
    func (c Config) Upload(reqURL string, filename string, payload []byte) (string, error) {
    	if !c.Registered() {
    		return "", errors.New("Deployment is not registered with SUBNET. Please register the deployment via 'mc license register ALIAS'")
    	}
    
    	var body bytes.Buffer
    	writer := multipart.NewWriter(&body)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 27 16:35:36 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/DefaultSerializerRegistryTest.groovy

            serialize(123, serializer) == 123
            toBytes(123L, serializer).length == toBytes(123L, longSerializer).length + 1
        }
    
        def "does not write type tag when there is only one matching registered type"() {
            given:
            def registry = new DefaultSerializerRegistry()
            registry.register(Long, longSerializer)
            registry.register(Integer, intSerializer)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. pkg/kubelet/pluginmanager/cache/actual_state_of_world_test.go

    		Name:       "test",
    	}
    	asw := NewActualStateOfWorld()
    	err := asw.AddPlugin(pluginInfo)
    	// Assert
    	if err != nil {
    		t.Fatalf("AddPlugin failed. Expected: <no error> Actual: <%v>", err)
    	}
    
    	// Get registered plugins and check the newly added plugin is there
    	aswPlugins := asw.GetRegisteredPlugins()
    	if len(aswPlugins) != 1 {
    		t.Fatalf("Actual state of world length should be one but it's %d", len(aswPlugins))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 18 12:18:41 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelRegistration.java

        ModelRuleDescriptor getDescriptor();
    
        ModelPath getPath();
    
        /**
         * Actions that need to be registered when the node is registered.
         */
        Multimap<ModelActionRole, ? extends ModelAction> getActions();
    
        /**
         * Returns whether the registered node is hidden.
         */
        boolean isHidden();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/typeregistration/BaseInstanceFactoryTest.groovy

        }
    
        def "fails when an implementation is registered that doesn't extend the base type"() {
            when:
            instanceFactory.register(ModelType.of(ThingSpec), new SimpleModelRuleDescriptor("thing"))
                .withImplementation(ModelType.of(Object))
            then:
            def ex = thrown IllegalArgumentException
            ex.message == "No factory registered to create an instance of implementation class '$Object.name'."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  9. tensorflow/c/eager/gradients.h

    // gradients.
    //
    // `ZerosLike` is not expected to be called and returns a nullptr. The creation
    // of default zeros grads is handled by the `DefaultGradientFunction` registered
    // for each op.
    // TODO(srbs): We need to define `ZerosLike` here to keep the compiler happy.
    // Figure out a way to avoid this.
    // TODO(srbs): Should ZerosLike check-fail instead of returning nullptr?
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 26 10:27:05 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/configuration/internal/ListenerBuildOperationDecorator.java

         * @param registrationPoint the place that the listener was registered - used in the operation description / details
         * @param listener the listener
         */
        <T> T decorate(String registrationPoint, Class<T> cls, T listener);
    
        /**
         * Decorates a listener of unknown type.
         * <p>
         * @param registrationPoint the place that the listener was registered - used in the operation description / details
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:19 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top