Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 92 for NOOP (0.04 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/DefaultPluginContainerTest.groovy

        def pluginManager = new DefaultPluginManager(pluginRegistry, instantiator, target, new TestBuildOperationRunner(), new DefaultUserCodeApplicationContext(), CollectionCallbackActionDecorator.NOOP, TestUtil.domainObjectCollectionFactory())
    
        @Subject
        def container = pluginManager.pluginContainer
    
        @Rule
        TestNameTestDirectoryProvider testDirectoryProvider = new TestNameTestDirectoryProvider(getClass())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. test/escape2.go

    func noop(x, y *int) {} // ERROR "x does not escape$" "y does not escape$"
    
    func foo82() {
    	var x, y, z int // ERROR "moved to heap: x$" "moved to heap: y$" "moved to heap: z$"
    	go noop(tee(&z))
    	go noop(&x, &y)
    	for {
    		var u, v, w int // ERROR "moved to heap: u$" "moved to heap: v$" "moved to heap: w$"
    		defer noop(tee(&u))
    		defer noop(&v, &w)
    	}
    }
    
    type Fooer interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/CompositeDomainObjectSet.java

        @SuppressWarnings("varargs")
        public static <T> CompositeDomainObjectSet<T> create(Class<T> type, DomainObjectCollection<? extends T>... collections) {
            return create(type, CollectionCallbackActionDecorator.NOOP, collections);
        }
    
        @SafeVarargs
        public static <T> CompositeDomainObjectSet<T> create(Class<T> type, CollectionCallbackActionDecorator callbackActionDecorator, DomainObjectCollection<? extends T>... collections) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/testing/testcase.go

    			},
    		},
    		{
    			Name: "match & no reinvoke",
    			Webhooks: []registrationv1.MutatingWebhook{{
    				Name:                    "noop",
    				ClientConfig:            ccfgSVC("noop"),
    				Rules:                   matchEverythingRules,
    				NamespaceSelector:       &metav1.LabelSelector{},
    				ObjectSelector:          &metav1.LabelSelector{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 47.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/build_xla_ops_pass_test.cc

      EXPECT_THAT(sink_node,
                  NodeWith(CtrlDeps(NodeWith(Op("_XlaRun")),
                                    NodeWith(Op("StatefulPartitionedCall")),
                                    NodeWith(Op("NoOp")))));
    }
    
    #ifdef GOOGLE_CUDA
    FunctionDefLibrary CreateFunctionDefLibWithInt32Input(const string& name) {
      FunctionDefLibrary fdef_lib;
      FunctionDef func = FunctionDefHelper::Create(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top