Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 121 for no_aop (0.15 sec)

  1. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer.h

      // consume the tensor with index `itensor`. NoOp if that's already the case.
      // The arguments must be valid indices (i.e., obtained with
      // `AddOperation`/`AddTensor`).
      void AddUse(int ioperation, int itensor);
    
      // Undoes an AddUse(ioperation, itensor). NoOp if there was no prior `AddUse`.
      // The arguments must be valid indices (i.e., obtained with
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 12K bytes
    - Viewed (0)
  2. pkg/wasm/convert.go

    				if err != nil {
    					if !wasmHTTPConfig.GetConfig().GetFailOpen() {
    						convertErrs[i] = err
    						return
    					}
    					// Use NOOP filter because the download failed.
    					newExtensionConfig, err = createHTTPAllowAllFilter(extConfig.GetName())
    					if err != nil {
    						// If the fallback is failing, send the Nack regardless of fail_open.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. test/escape2n.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)
  4. src/runtime/sys_openbsd_arm.s

    // For now use hardware no-ops as this works with both older and newer
    // kernels. After OpenBSD 6.8 is released this should be changed to
    // speculation barriers.
    #define NOOP	MOVW    R0, R0
    #define	INVOKE_SYSCALL	\
    	SWI	$0;	\
    	NOOP;		\
    	NOOP
    
    // mstart_stub is the first function executed on a new thread started by pthread_create.
    // It just does some low-level setup and then calls mstart.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.cc

          // ops have no other uses or have one NoOp only, they can be simply
          // erased.
          auto &operations = init_func_op.front().getOperations();
          if ((operations.size() == 1 &&
               operations.front().hasTrait<OpTrait::IsTerminator>()) ||
              (operations.size() == 2 &&
               dyn_cast<mlir::TF::NoOp>(operations.front()) &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  6. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonServer.java

                return new DefaultDomainObjectCollectionFactory(instantiatorFactory, services, CollectionCallbackActionDecorator.NOOP, MutationGuards.identity());
            }
    
            @Provides
            ClassPathRegistry createClassPathRegistry(DefaultModuleRegistry moduleRegistry) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. pkg/controlplane/apiserver/options/options_test.go

    package options
    
    import (
    	"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
    - 10.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top