Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,001 for registered_ (0.38 sec)

  1. platforms/software/signing/src/main/java/org/gradle/plugins/signing/SignOperation.java

            return this;
        }
    
        /**
         * The registered signatures.
         */
        public List<Signature> getSignatures() {
            return new ArrayList<Signature>(signatures);
        }
    
        /**
         * Returns the single registered signature.
         *
         * @return The signature.
         * @throws IllegalStateException if there is not exactly one registered signature.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/ServiceScopeValidator.java

            return String.format(
                "The service implementation '%s' is registered in the '%s' scope but does not declare it explicitly.\n" +
                    "The implementation appears to serve %s.\n" +
                    "Try the following:\n" +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:17 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. pkg/kubelet/configmap/configmap_manager.go

    	}
    }
    
    // NewWatchingConfigMapManager creates a manager that keeps a cache of all configmaps
    // necessary for registered pods.
    // It implements the following logic:
    //   - whenever a pod is created or updated, we start individual watches for all
    //     referenced objects that aren't referenced from other registered pods
    //   - every GetObject() returns a value from local cache propagated via watches
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. pkg/kubelet/secret/secret_manager.go

    	}
    }
    
    // NewWatchingSecretManager creates a manager that keeps a cache of all secrets
    // necessary for registered pods.
    // It implements the following logic:
    //   - whenever a pod is created or updated, we start individual watches for all
    //     referenced objects that aren't referenced from other registered pods
    //   - every GetObject() returns a value from local cache propagated via watches
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/configuration/internal/ExecuteListenerBuildOperationType.java

        public interface Details {
    
            /**
             * The application ID of the script or plugin that registered the listener.
             *
             * @see org.gradle.api.internal.plugins.ApplyPluginBuildOperationType.Details#getApplicationId()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/attributes/AttributesSchemaInternal.java

        /**
         * Returns the list of custom {@link ResolutionFailureDescriber}s registered on this schema for the given failure type.
         *
         * @param failureType The type of failure to describe
         * @param <FAILURE> The type of failure to describe
         * @return The list of custom describers registered on this schema for the given failure type
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/ClassGeneratorSuffixRegistry.java

    import javax.annotation.Nonnull;
    import java.util.Map;
    import java.util.concurrent.ConcurrentHashMap;
    
    public class ClassGeneratorSuffixRegistry {
        // Use Throwable to record the location where a suffix was registered, to allow diagnostics when a collision is found
        // This may have performance implications, however the assumption is that class generators are global scoped objects that are created once and in very small numbers
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/eventbus/EventBus.java

       */
      public void register(Object object) {
        subscribers.register(object);
      }
    
      /**
       * Unregisters all subscriber methods on a registered {@code object}.
       *
       * @param object object whose subscriber methods should be unregistered.
       * @throws IllegalArgumentException if the object was not previously registered.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 25 16:37:57 UTC 2021
    - 12.8K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationListenerRegistrar.java

    @ServiceScope(Scope.CrossBuildSession.class)
    public interface BuildOperationNotificationListenerRegistrar {
    
        /**
         * The registered listener will receive notification for all build operations for the
         * current build execution, including those operations that started before the
         * listener was registered.
         *
         * @since 4.4
         */
        void register(BuildOperationNotificationListener listener);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. pilot/pkg/bootstrap/servicecontroller.go

    	)
    	serviceControllers.AddRegistry(s.serviceEntryController)
    
    	registered := sets.New[provider.ID]()
    	for _, r := range args.RegistryOptions.Registries {
    		serviceRegistry := provider.ID(r)
    		if registered.Contains(serviceRegistry) {
    			log.Warnf("%s registry specified multiple times.", r)
    			continue
    		}
    		registered.Insert(serviceRegistry)
    		log.Infof("Adding %s registry adapter", serviceRegistry)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top