Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,001 for registered_ (0.23 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/admission.go

    		errs = append(errs, fmt.Errorf("plugins %v in RecommendedPluginOrder are not registered",
    			recommendPlugins.Difference(intersections).List()))
    	}
    	if !intersections.Equal(registeredPlugins) {
    		// Developer error, this should never run in.
    		errs = append(errs, fmt.Errorf("plugins %v registered are not in RecommendedPluginOrder",
    			registeredPlugins.Difference(intersections).List()))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 12 08:49:42 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/dependencies/transforms/IdentifyTransformExecutionProgressDetails.java

         * The component identifier of the input artifact.
         */
        ComponentIdentifier getComponentId();
    
        /**
         * The from attributes of the registered transform.
         */
        Map<String, String> getFromAttributes();
    
        /**
         * The to attributes of the registered transform.
         */
        Map<String, String> getToAttributes();
    
        /**
         * The file name of the input artifact that is about to be transformed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jul 15 07:29:19 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    When a task is registered, it is known to the build.
    It can be configured, and references to it can be passed around, but the task object itself has not been created, and its actions have not been executed.
    The registered task will remain in this state until something in the build needs the instantiated task object.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractNamedDomainObjectContainerTest.groovy

            def otherObj = container.register("otherObj") {
                prop = 'value'
            }
            then:
            someObj.present
            otherObj.get().prop == 'value'
        }
    
        def "can find registered objects"() {
            when:
            container.register("someObj")
            container.register("otherObj") {
                prop = 'value'
            }
            def someObj = container.named("someObj")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 27 06:24:30 UTC 2018
    - 11.4K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/plugins/posix/posix_filesystem.h

    // that provides the filesystem functionality. However, the POSIX filesystem
    // needs to be statically registered in some tests and utilities for building
    // the API files at the time of creating the pip package. Hence, we need to
    // expose this function so that this filesystem can be statically registered
    // when needed.
    void TF_InitPlugin(TF_FilesystemPluginInfo* info);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 20 16:42:12 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/DefaultListenerManagerInServiceRegistryTest.groovy

            then:
            0 * _
    
            when:
            broadcast.something("12")
    
            then:
            1 * listener.something("12")
            0 * _
        }
    
        def "creates stateful listener registered after broadcaster is created"() {
            def created = Mock(Runnable)
            def listener = Mock(TestListener)
    
            when:
            def broadcast = listenerManager.getBroadcaster(TestListener)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/ExtensionsStorage.java

            if (hasExtension(name)) {
                throw new IllegalArgumentException(
                    format("Cannot add extension with name '%s', as there is an extension already registered with that name.", name));
            }
            extensions.put(name, new ExtensionHolder<>(name, publicType, extension));
        }
    
        public boolean hasExtension(String name) {
            return extensions.containsKey(name);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 17 11:25:34 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/plugins/SoftwareTypeRegistrationPluginTarget.java

                        .contextualLabel("is registered as a software type plugin but does not expose a software type")
                        .severity(Severity.ERROR)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:28 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. src/image/format.go

    type format struct {
    	name, magic  string
    	decode       func(io.Reader) (Image, error)
    	decodeConfig func(io.Reader) (Config, error)
    }
    
    // Formats is the list of registered formats.
    var (
    	formatsMu     sync.Mutex
    	atomicFormats atomic.Value
    )
    
    // RegisterFormat registers an image format for use by [Decode].
    // Name is the name of the format, like "jpeg" or "png".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. internal/config/subnet/config.go

    	// Transport configured with proxy_url if set optionally.
    	transport http.RoundTripper
    
    	// The subnet base URL
    	BaseURL string
    }
    
    var configLock sync.RWMutex
    
    // Registered indicates if cluster is registered or not
    func (c *Config) Registered() bool {
    	configLock.RLock()
    	defer configLock.RUnlock()
    
    	return len(c.APIKey) > 0
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top