Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 244 for reregistering (0.26 sec)

  1. pkg/credentialprovider/plugins.go

    	for ix := range keys {
    		stringKeys[ix] = keys[ix].String()
    	}
    	sort.Strings(stringKeys)
    
    	for _, key := range stringKeys {
    		provider := providers[key]
    		if provider.Enabled() {
    			klog.V(4).Infof("Registering credential provider: %v", key)
    			keyring.Providers = append(keyring.Providers, provider)
    		}
    	}
    
    	return keyring
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 22:01:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/request/server_shutdown_signal.go

    // the ServerShutdownSignal interface instance.
    func WithServerShutdownSignal(parent context.Context, window ServerShutdownSignal) context.Context {
    	if ServerShutdownSignalFrom(parent) != nil {
    		return parent // Avoid double registering.
    	}
    
    	return context.WithValue(parent, serverShutdownSignalKey, window)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 15:49:30 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/initialization/dsl/VersionCatalogBuilder.java

         *
         * @param alias an identifier for the version
         * @param version the version alias name
         */
        String version(String alias, String version);
    
        /**
         * Entry point for registering a library alias.
         *
         * @param alias the alias of the library
         * @param group the group of the library
         * @param artifact the artifact ID of the library
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 25 20:59:29 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/ide/problems-api-usage/README.adoc

    ====
    
    
    ## Receiving a problem report
    
    Problems are emitted as Tooling API progress events. They can be processed by registering a `ProgressListener`:
    
    ====
    include::sample[dir="groovy",files="sample-ide/src/main/java/org/gradle/sample/SampleIde.java[tags=problems-tapi-event]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 08:50:13 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/experimental/tac/hardwares/target_hardware.h

    // Interface for an Operation capabilities which should be tied to
    // a specific hardware.
    // Users should implement the interface and use TargetHardwareOpRegistration
    // for registering the operation.
    class TargetHardwareOperation {
     public:
      virtual ~TargetHardwareOperation() = default;
    
      virtual double GetOpCost(mlir::Operation* op) const = 0;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 09 21:39:59 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/ProjectScope.java

     * (i.e. the <i>main</i> artifact) or the ones that will be used when building <i>tests</i>).
     * <p>
     * This extensible enum has two defined values, {@link #MAIN} and {@link #TEST},
     * but can be extended by registering a {@code org.apache.maven.api.spi.ProjectScopeProvider}.
     * <p>
     * Implementation must have {@code equals()} and {@code hashCode()} implemented, so implementations of this interface
     * can be used as keys.
     *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:42:51 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. src/net/rpc/server_test.go

    	if err == nil {
    		t.Error("expected error registering ReplyNotPointer")
    	}
    	err = Register(new(ArgNotPublic))
    	if err == nil {
    		t.Error("expected error registering ArgNotPublic")
    	}
    	err = Register(new(ReplyNotPublic))
    	if err == nil {
    		t.Error("expected error registering ReplyNotPublic")
    	}
    	err = Register(NeedsPtrType(0))
    	if err == nil {
    		t.Error("expected error registering NeedsPtrType")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 05:23:29 UTC 2023
    - 19K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/TaskProperties.java

    /**
     * A view of the properties of a task.
     *
     * This includes inputs, outputs, destroyables and local state properties.
     *
     * Once created, the view is immutable and registering additional or changing existing task properties will not be detected.
     *
     * Created by {@link DefaultTaskProperties#resolve(PropertyWalker, FileCollectionFactory, TaskInternal)}.
     */
    @NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:32:26 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. pkg/kubelet/pluginmanager/cache/types.go

    //	                      Out                                    Out                            Out
    //
    // The pluginwatcher module follows strictly and sequentially this state machine for each *plugin name*.
    // e.g: If you are Registering a plugin foo, you cannot get a DeRegister call for plugin foo
    // until the Register("foo") call returns. Nor will you get a Validate("foo", "Different endpoint", ...)
    // call until the Register("foo") call returns.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DefaultDependencySubstitutionsSpec.groovy

            then:
            0 * validator.validateMutation(_)
        }
    
        def "registering an all rule toggles the hasRule flag"() {
            given:
            def action = Mock(Action)
    
            when:
            substitutions.all(action)
    
            then:
            substitutions.rulesMayAddProjectDependency()
        }
    
        def "registering a substitute rule with (#from, #to) causes hasRule #result"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.3K bytes
    - Viewed (0)
Back to top