Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 92 for NOOP (0.03 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/VariantMetadataRules.java

        }
    
        public List<AdditionalVariant> getAdditionalVariants() {
            return additionalVariants;
        }
    
        public static VariantMetadataRules noOp() {
            return ImmutableRules.INSTANCE;
        }
    
        /**
         * A variant action is an action which is only executed if it matches the name of the variant.
         * @param <T> the type of the action subject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  2. pkg/kubelet/util/manager/cache_based_manager_test.go

    			{envVarNames: []string{"s7"}},
    			{envFromNames: []string{"s70"}},
    		},
    	}
    	// Check the no-op update scenario
    	manager.RegisterPod(podWithSecrets("ns1", "noop-pod", s5))
    	manager.RegisterPod(podWithSecrets("ns1", "noop-pod", s5))
    
    	// Now we have: 3 pods with s1, 2 pods with s2 and 2 pods with s3, 0 pods with s4.
    	refs := func(ns, name string) int {
    		store.lock.Lock()
    		defer store.lock.Unlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractNamedDomainObjectContainerTest.groovy

        Instantiator instantiator = TestUtil.instantiatorFactory().decorateLenient()
        CollectionCallbackActionDecorator collectionCallbackActionDecorator = CollectionCallbackActionDecorator.NOOP
        AbstractNamedDomainObjectContainer<TestObject> container = instantiator.newInstance(TestContainer.class, instantiator)
    
        def "is dynamic object aware"() {
            expect:
            container instanceof DynamicObjectAware
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 27 06:24:30 UTC 2018
    - 11.4K bytes
    - Viewed (0)
  4. subprojects/core/src/testFixtures/groovy/org/gradle/util/TestUtil.groovy

                it.add(TestCrossBuildInMemoryCacheFactory)
                it.add(NamedObjectInstantiator)
                it.add(CollectionCallbackActionDecorator, CollectionCallbackActionDecorator.NOOP)
                it.add(MutationGuard, MutationGuards.identity())
                it.add(DefaultDomainObjectCollectionFactory)
                it.add(PropertyHost, PropertyHost.NO_OP)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

                // proceed. Doing this immediately here lets the next task run without waiting for
                // the cancelled task's executor to run the noop AsyncCallable.
                //
                // ---
                //
                // If the CAS fails, the provided callable already started running (or it is about
                // to). Our contract promises:
                //
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  6. pkg/apis/core/validation/events_test.go

    		Old   metav1.MicroTime
    		New   metav1.MicroTime
    		Valid bool
    	}{
    		{
    			Name:  "noop microsecond precision",
    			Old:   metav1.NewMicroTime(time.Unix(100, int64(5*time.Microsecond))),
    			New:   metav1.NewMicroTime(time.Unix(100, int64(5*time.Microsecond))),
    			Valid: true,
    		},
    		{
    			Name:  "noop nanosecond precision",
    			Old:   metav1.NewMicroTime(time.Unix(100, int64(5*time.Nanosecond))),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 01 19:47:37 UTC 2022
    - 37.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/DefaultRepositoryHandlerTest.groovy

            Instantiator instantiator = TestUtil.instantiatorFactory().decorateLenient()
        ) {
            new DefaultRepositoryHandler(repositoryFactory, instantiator, CollectionCallbackActionDecorator.NOOP)
        }
    
        def testFlatDirWithClosure() {
            given:
            def repository = Mock(TestFlatDirectoryArtifactRepository) { getName() >> "name" }
            1 * repositoryFactory.createFlatDirRepository() >> repository
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 18:02:33 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. pkg/controlplane/apiserver/config.go

    limitations under the License.
    */
    
    package apiserver
    
    import (
    	"context"
    	"crypto/tls"
    	"fmt"
    	"net/http"
    	"time"
    
    	noopoteltrace "go.opentelemetry.io/otel/trace/noop"
    
    	"k8s.io/apimachinery/pkg/runtime"
    	utilnet "k8s.io/apimachinery/pkg/util/net"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/apiserver/pkg/admission"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

                // proceed. Doing this immediately here lets the next task run without waiting for
                // the cancelled task's executor to run the noop AsyncCallable.
                //
                // ---
                //
                // If the CAS fails, the provided callable already started running (or it is about
                // to). Our contract promises:
                //
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultPolymorphicDomainObjectContainerTest.groovy

            container = new DefaultPolymorphicDomainObjectContainer<?>(Object, TestUtil.instantiatorFactory().decorateLenient(),
                { it instanceof Named ? it.name : "unknown" } as Named.Namer, CollectionCallbackActionDecorator.NOOP)
    
            container.registerBinding(UnnamedPerson, DefaultUnnamedPerson)
            container.registerBinding(CtorNamedPerson, DefaultCtorNamedPerson)
    
            when:
            container.create("fred", UnnamedPerson)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 10 22:34:19 UTC 2021
    - 16K bytes
    - Viewed (0)
Back to top