Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 45 for Seal (0.1 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        future2 = null;
    
        /*
         * Futures should be collected even if combiner never runs. This is kind of a silly test, since
         * the combiner is almost certain to hold its own reference to the futures, and a real app would
         * hold a reference to the executor and thus to the combiner. What we really care about is that
         * the futures are released once the combiner is done running. But we happen to provide this
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        future2 = null;
    
        /*
         * Futures should be collected even if combiner never runs. This is kind of a silly test, since
         * the combiner is almost certain to hold its own reference to the futures, and a real app would
         * hold a reference to the executor and thus to the combiner. What we really care about is that
         * the futures are released once the combiner is done running. But we happen to provide this
    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. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "properties": {
            "path": {
              "description": "Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
              "type": "string"
            },
            "type": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  4. src/database/sql/sql.go

    func (tx *Tx) Commit() error {
    	// Check context first to avoid transaction leak.
    	// If put it behind tx.done CompareAndSwap statement, we can't ensure
    	// the consistency between tx.done and the real COMMIT operation.
    	select {
    	default:
    	case <-tx.ctx.Done():
    		if tx.done.Load() {
    			return ErrTxDone
    		}
    		return tx.ctx.Err()
    	}
    	if !tx.done.CompareAndSwap(false, true) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

            return WalkResult::advance();
    
          // Best-effort shape inference in attached functions. Do not return
          // failure even if it doesn't get to fixed point, but propagate "real"
          // failure.
          if (failed(PropagateShapeIntoAttachedFunctions(op, max_iterations))) {
            op->emitWarning() << "unable to refine shape of attached function "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	at.printDimension(ps)
    }
    
    // Print the array dimension.
    func (at *ArrayType) printDimension(ps *printState) {
    	space := " "
    	for len(ps.inner) > 0 {
    		// We haven't gotten to the real type yet.  Use
    		// parentheses around that type, except that if it is
    		// an array type we print it as a multi-dimensional
    		// array
    		in := ps.inner[len(ps.inner)-1]
    		if twq, ok := in.(*TypeWithQualifiers); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  7. src/reflect/all_test.go

    			// The pause needs to be big enough to let the select block before
    			// we run the helper, but if we lose that race once in a while it's okay: the
    			// select will just proceed immediately. Not a big deal.
    			// For short tests we can grow [sic] the timeout a bit without fear of taking too long
    			pause := 10 * time.Microsecond
    			if testing.Short() {
    				pause = 100 * time.Microsecond
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  8. src/net/http/server.go

    // (3) even in chunking mode if the write size from (1) is over some
    // threshold and nothing is in (2).  The answer might be mostly making
    // bufferBeforeChunkingSize smaller and having bufio's fast-paths deal
    // with this instead.
    func (w *response) Write(data []byte) (n int, err error) {
    	return w.write(len(data), data, "")
    }
    
    func (w *response) WriteString(data string) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

                    //
                    // Debuggability heuristics:
                    // 1. Names that end in digits are likely to be internal aliases
                    // to the "real" names.
                    // 2. Longer names are more likely to be internal aliases.
                    //
                    // Example set of object names created by Keras for the weight
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods_test.go

    		assert.Equal(t, containerID, fakeCommandRunner.ContainerID, "(testError=%v) ID", testError)
    		assert.Equal(t, cmd, fakeCommandRunner.Cmd, "(testError=%v) command", testError)
    		// this isn't 100% foolproof as a bug in a real CommandRunner where it fails to copy to stdout/stderr wouldn't be caught by this test
    		assert.Equal(t, "foo", string(actualOutput), "(testError=%v) output", testError)
    		assert.Equal(t, err, testError, "(testError=%v) err", testError)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
Back to top