Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 997 for registerKey (0.34 sec)

  1. 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)
  2. 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)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/error.go

    	}
    	if k.t != nil {
    		return fmt.Sprintf("no kind is registered for the type %v in scheme %q", k.t, k.schemeName)
    	}
    	if len(k.gvk.Kind) == 0 {
    		return fmt.Sprintf("no version %q has been registered in scheme %q", k.gvk.GroupVersion(), k.schemeName)
    	}
    	if k.gvk.Version == APIVersionInternal {
    		return fmt.Sprintf("no kind %q is registered for the internal version of group %q in scheme %q", k.gvk.Kind, k.gvk.Group, k.schemeName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 19 21:24:36 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/apiserver/pkg/server/resourceconfig/helpers.go

    )
    
    // GroupVersionRegistry provides access to registered group versions.
    type GroupVersionRegistry interface {
    	// IsGroupRegistered returns true if given group is registered.
    	IsGroupRegistered(group string) bool
    	// IsVersionRegistered returns true if given version is registered.
    	IsVersionRegistered(v schema.GroupVersion) bool
    	// PrioritizedVersionsAllGroups returns all registered group versions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 18:36:33 UTC 2022
    - 7.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. 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)
  10. subprojects/core-api/src/main/java/org/gradle/api/resources/TextResource.java

        /**
         * Returns the input properties registered when this resource is used as task input.
         * Not typically used directly.
         *
         * @return the input properties registered when this resource is used as task input
         */
        @Nullable
        @Optional
        @Input
        Object getInputProperties();
    
        /**
         * Returns the input files registered when this resource is used as task input.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 10 09:43:44 UTC 2018
    - 3.1K bytes
    - Viewed (0)
Back to top