Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 378 for registerKey (0.15 sec)

  1. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentSourceSetIntegrationTest.groovy

        }
    
        def "fail when multiple source sets are registered with the same name"() {
            buildFile << """
    model {
        components {
            sampleLib(SampleLibrary) {
                binaries {
                    bin(SampleBinary) {
                        sources {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/internal/work/DefaultAsyncWorkTrackerTest.groovy

                        }
    
                        @Override
                        void cancel() {
    
                        }
                    })
                    instant.registered
                }
                thread.blockUntil.registered
                workerThread {
                    asyncWorkTracker.waitForCompletion(operation1, RELEASE_PROJECT_LOCKS)
                }
                thread.blockUntil.waitStarted
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 06 04:53:10 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/scheme.go

    	defaulterFuncs map[reflect.Type]func(interface{})
    
    	// converter stores all registered conversion functions. It also has
    	// default converting behavior.
    	converter *conversion.Converter
    
    	// versionPriority is a map of groups to ordered lists of versions for those groups indicating the
    	// default priorities of these versions as registered in the scheme
    	versionPriority map[string][]string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 25.2K bytes
    - Viewed (0)
  4. pkg/kube/adapter.go

    	// `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]` and `matchPolicy: Equivalent`,
    	// an API request to apps/v1beta1 deployments would be converted and sent to the webhook
    	// with `kind: {group:"apps", version:"v1", kind:"Deployment"}` (matching the rule the webhook registered for),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 10 16:40:00 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/storage/storage_factory.go

    	// centralized control over the shape of etcd directories
    	ResourcePrefix(groupResource schema.GroupResource) string
    
    	// Configs gets configurations for all of registered storage destinations.
    	Configs() []storagebackend.Config
    
    	// Backends gets all backends for all registered storage destinations.
    	// Used for getting all instances for health validations.
    	// Deprecated: Use Configs instead
    	Backends() []Backend
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 13:35:58 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/eventbus/SubscriberRegistry.java

    import javax.annotation.CheckForNull;
    
    /**
     * Registry of subscribers to a single event bus.
     *
     * @author Colin Decker
     */
    @ElementTypesAreNonnullByDefault
    final class SubscriberRegistry {
    
      /**
       * All registered subscribers, indexed by event type.
       *
       * <p>The {@link CopyOnWriteArraySet} values make it easy and relatively lightweight to get an
       * immutable snapshot of all current subscribers to an event without any locking.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:05:46 UTC 2021
    - 10.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/eventbus/SubscriberRegistry.java

    import javax.annotation.CheckForNull;
    
    /**
     * Registry of subscribers to a single event bus.
     *
     * @author Colin Decker
     */
    @ElementTypesAreNonnullByDefault
    final class SubscriberRegistry {
    
      /**
       * All registered subscribers, indexed by event type.
       *
       * <p>The {@link CopyOnWriteArraySet} values make it easy and relatively lightweight to get an
       * immutable snapshot of all current subscribers to an event without any locking.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:05:46 UTC 2021
    - 10.5K bytes
    - Viewed (0)
  8. pkg/kube/multicluster/secretcontroller.go

    				continue
    			}
    			// stop previous remote cluster
    			prev.Stop()
    		} else if c.cs.Contains(cluster.ID(clusterID)) {
    			// if the cluster has been registered before by another secret, ignore the new one.
    			logger.Warnf("cluster has already been registered")
    			continue
    		}
    		logger.Infof("%s cluster", action)
    
    		remoteCluster, err := c.createRemoteCluster(kubeConfig, clusterID)
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. testing/integ-test/src/integTest/groovy/org/gradle/integtests/configuration/ExecuteDomainObjectCollectionCallbackBuildOperationTypeIntegrationTest.groovy

        def '#containerType container callbacks emit registrant when using #callbackName callback(before creation registered)'() {
            given:
            callbackScript(containerAccess, callbackName)
            buildFile << """
                ${requiresPlugins ? requiresPlugins.collect { "apply plugin: '${it}'" }.join('\n') : ''}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/devicemanager/manager.go

    }
    
    // GetCapacity is expected to be called when Kubelet updates its node status.
    // The first returned variable contains the registered device plugin resource capacity.
    // The second returned variable contains the registered device plugin resource allocatable.
    // The third returned variable contains previously registered resources that are no longer active.
    // Kubelet uses this information to update resource capacity/allocatable in its node status.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
Back to top