Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 250 for NOOP (0.03 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/check_control_dependencies.cc

    bool IsIntermediateOp(IslandOp island) {
      // These two side-effect-free ops are known to be used for control dependency
      // grouping (e.g., in `BreakUpIslands` pass).
      return isa<TF::IdentityOp, TF::NoOp>(island.GetBody().front());
    }
    
    // Finds a path from `source_op` to `target_op` and stores it in `path`, in
    // reverse order (from target to source). Returns false if no path was found,
    // true otherwise.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GlobalScopeServices.java

            return new DefaultDomainObjectCollectionFactory(instantiatorFactory, services, CollectionCallbackActionDecorator.NOOP, MutationGuards.identity());
        }
    
        @Provides
        @Override
        PatternSpecFactory createPatternSpecFactory(ListenerManager listenerManager) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. cmd/kube-apiserver/app/options/options_test.go

    package options
    
    import (
    	"net"
    	"reflect"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/google/go-cmp/cmp/cmpopts"
    	"github.com/spf13/pflag"
    	noopoteltrace "go.opentelemetry.io/otel/trace/noop"
    
    	"k8s.io/apiserver/pkg/admission"
    	apiserveroptions "k8s.io/apiserver/pkg/server/options"
    	"k8s.io/apiserver/pkg/storage/etcd3"
    	"k8s.io/apiserver/pkg/storage/storagebackend"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/type/DefaultArtifactTypeRegistryTest.groovy

        def attributesFactory = AttributeTestUtil.attributesFactory()
        def registry = new DefaultArtifactTypeRegistry(TestUtil.instantiatorFactory().decorateLenient(), attributesFactory, CollectionCallbackActionDecorator.NOOP, Stub(VariantTransformRegistry))
    
        def "creates as required and reuses"() {
            expect:
            def container = registry.create()
            container != null
            registry.create().is(container)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 14:43:17 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/CompositeDomainObjectSetTest.groovy

    class CompositeDomainObjectSetTest extends Specification {
    
        Class type = String
    
        protected collection(Object... entries) {
            def collection = new DefaultDomainObjectSet(type, CollectionCallbackActionDecorator.NOOP)
            entries.each { collection.add(it) }
            collection
        }
    
        protected composite(DomainObjectCollection... collections) {
            CompositeDomainObjectSet.create(type, *collections)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 05 20:02:22 UTC 2018
    - 10.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/cmd/asm/internal/asm/testdata/loong64enc1.s

    	NEGD	F4, F5			// 85181401
    	ABSD	F4, F5			// 85081401
    	TRUNCDW	F4, F5			// 85881a01
    	TRUNCFW	F4, F5			// 85841a01
    	SQRTF	F4, F5			// 85441401
    	SQRTD	F4, F5			// 85481401
    
    	DBAR	 			// 00007238
    	NOOP	 			// 00004003
    
    	MOVWR	R4, result+16(FP) 	// 6460402f
    	MOVWR	R4, 1(R5) 		// a404402f
    	MOVWR	y+8(FP), R4 		// 6440402e
    	MOVWR	1(R5), R4 		// a404402e
    
    	CMPGTF	F4, R5 			// a090110c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top