Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Grappler (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          mlir::func::FuncOp func = orig_func;
          // If there are potentially references to this func from within the
          // module, create a wrapper around it and decorate the wrapper with the
          // tf_saved_model attributes instead.
          if (!mlir::SymbolTable::symbolKnownUseEmpty(orig_func.getSymNameAttr(),
                                                      &module.getBodyRegion())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        SettableFuture<Foo> input = SettableFuture.create();
        ListenableFuture<Foo> wrapper = nonCancellationPropagating(input);
        Foo foo = new Foo();
    
        assertFalse(wrapper.isDone());
        input.set(foo);
        assertTrue(wrapper.isDone());
        assertSame(foo, getDone(wrapper));
      }
    
      public void testNonCancellationPropagating_failure() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        SettableFuture<Foo> input = SettableFuture.create();
        ListenableFuture<Foo> wrapper = nonCancellationPropagating(input);
        Foo foo = new Foo();
    
        assertFalse(wrapper.isDone());
        input.set(foo);
        assertTrue(wrapper.isDone());
        assertSame(foo, getDone(wrapper));
      }
    
      public void testNonCancellationPropagating_failure() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  4. cmd/object-handlers_test.go

    type Fault int
    
    const (
    	None Fault = iota
    	MissingContentLength
    	TooBigObject
    	TooBigDecodedLength
    	BadSignature
    	BadMD5
    	MissingUploadID
    )
    
    // Wrapper for calling HeadObject API handler tests for both Erasure multiple disks and FS single drive setup.
    func TestAPIHeadObjectHandler(t *testing.T) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  5. src/net/http/server.go

    	tlsState *tls.ConnectionState
    
    	// werr is set to the first write error to rwc.
    	// It is set via checkConnErrorWriter{w}, where bufw writes.
    	werr error
    
    	// r is bufr's read source. It's a wrapper around rwc that provides
    	// io.LimitedReader-style limiting (while reading request headers)
    	// and functionality to support CloseNotifier. See *connReader docs.
    	r *connReader
    
    	// bufr reads from r.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. src/net/http/serve_test.go

    	}
    }
    
    // https://golang.org/issues/22084
    func TestTimeoutHandlerPanicRecovery(t *testing.T) {
    	wrapper := func(h Handler) Handler {
    		return TimeoutHandler(h, time.Second, "")
    	}
    	run(t, func(t *testing.T, mode testMode) {
    		testHandlerPanic(t, false, mode, wrapper, "intentional death for testing")
    	}, testNotParallel)
    }
    
    func TestRedirectBadPath(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  7. src/reflect/value.go

    // frame into a call using Values.
    // It is in this file so that it can be next to the call method above.
    // The remainder of the MakeFunc implementation is in makefunc.go.
    //
    // NOTE: This function must be marked as a "wrapper" in the generated code,
    // so that the linker can make it work correctly for panic and recover.
    // The gc compilers know to do that for the name "reflect.callReflect".
    //
    // ctxt is the "closure" generated by MakeFunc.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  8. cmd/bucket-replication.go

    	rdsc := mustReplicate(ctx, oi.Bucket, oi.Name, getMustReplicateOptions(userDefined, oi.UserTags, "", replication.ExistingObjectReplicationType, ObjectOptions{}))
    	return c.resync(oi, rdsc, tgtStatuses)
    }
    
    // wrapper function for testability. Returns true if a new reset is requested on
    // already replicated objects OR object qualifies for existing object replication
    // and no reset requested.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

            operands.push_back(tensor_index_map.lookup(stats_op.getArg()));
          else
            operands.push_back(tensor_index_map.lookup(operand));
        }
    
        // CustomTfOp is just a wrapper around a TF op, we export the custom Op
        // not the wrapper, so we fetch the op from the region.
        if (auto custom_op = dyn_cast<mlir::TFL::CustomTfOp>(inst)) {
          // If we have custom op with a region, then use the first op in the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    type Special struct {
    	Prefix string
    	Val    AST
    }
    
    func (s *Special) print(ps *printState) {
    	prefix := s.Prefix
    	if ps.llvmStyle {
    		switch prefix {
    		case "TLS wrapper function for ":
    			prefix = "thread-local wrapper routine for "
    		case "TLS init function for ":
    			prefix = "thread-local initialization routine for "
    		}
    	}
    	ps.writeString(prefix)
    	ps.print(s.Val)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
Back to top