Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 103 for held (0.25 sec)

  1. src/runtime/proc.go

    	if !q.empty() {
    		q.tail.ptr().schedlink = l.head
    		l.head = q.head
    	}
    }
    
    // pop removes and returns the head of l. If l is empty, it returns nil.
    func (l *gList) pop() *g {
    	gp := l.head.ptr()
    	if gp != nil {
    		l.head = gp.schedlink
    	}
    	return gp
    }
    
    //go:linkname setMaxThreads runtime/debug.setMaxThreads
    func setMaxThreads(in int) (out int) {
    	lock(&sched.lock)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. src/database/sql/sql.go

    	// is an active query. It is held for read during queries
    	// and exclusively during close.
    	closemu sync.RWMutex
    
    	// dc is owned exclusively until Commit or Rollback, at which point
    	// it's returned with putConn.
    	dc  *driverConn
    	txi driver.Tx
    
    	// releaseConn is called once the Tx is closed to release
    	// any held driverConn back to the pool.
    	releaseConn func(error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  3. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    Window-shut, and his Light being there refracted by a Prism to cast his coloured Image PT [in _Fig._ 5.] upon the opposite Wall: I held a white Paper V to that image in such manner that it might be illuminated by the colour'd Light reflected from thence, and yet not intercept any part of that Light in its passage from the Prism to the Spectrum. And I found that when the Paper was held nearer to any Colour than to the rest, it appeared of that Colour to which it approached nearest; but when it was equally...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    perhaps he can't help it,' she said to herself; `his eyes are so
    VERY nearly at the top of his head.  But at any rate he might
    answer questions.--How am I to get in?' she repeated, aloud.
    
      `I shall sit here,' the Footman remarked, `till tomorrow--'
    
      At this moment the door of the house opened, and a large plate
    came skimming out, straight at the Footman's head:  it just
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  5. src/net/http/server.go

    	// "keep-alive" connections alive.
    	// Exceptions: 304/204/1xx responses never get Content-Length, and if
    	// it was a HEAD request, we don't know the difference between
    	// 0 actual bytes and 0 bytes because the handler noticed it
    	// was a HEAD request and chose not to write anything. So for
    	// HEAD, the handler should either write the Content-Length or
    	// write non-zero bytes. If it's actually 0 bytes and the
    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. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    perhaps he can't help it,' she said to herself; `his eyes are so
    VERY nearly at the top of his head.  But at any rate he might
    answer questions.--How am I to get in?' she repeated, aloud.
    
      `I shall sit here,' the Footman remarked, `till tomorrow--'
    
      At this moment the door of the house opened, and a large plate
    came skimming out, straight at the Footman's head:  it just
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  7. src/database/sql/sql_test.go

    		var s RawBytes
    		err = r.Scan(&s)
    		if numRows == 3 && err == context.Canceled {
    			if r.closemuScanHold {
    				t.Errorf("expected closemu NOT to be held")
    			}
    			break
    		}
    		if !r.closemuScanHold {
    			t.Errorf("expected closemu to be held")
    		}
    		if err != nil {
    			t.Fatal(err)
    		}
    		t.Logf("read %q", s)
    		if mode == "bottom" && numRows == 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/configuration-cache/running-help.gif

    running-help.gif...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 156.9K bytes
    - Viewed (0)
  9. tensorflow/c/c_api.cc

        memcpy(buf, new_handle.c_str(), new_handle.size() + 1);
        *handle = buf;
      }
    }
    
    void TF_DeletePRunHandle(const char* handle) {
      delete[] handle;
      // TODO(suharshs): Free up any resources held by the partial run state.
    }
    
    void TF_SessionPRun(TF_Session* session, const char* handle,
                        const TF_Output* inputs, TF_Tensor* const* input_values,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      setNameFn(getResult(), "cst");
    }
    
    OpFoldResult ConstOp::fold(FoldAdaptor adaptor) {
      assert(adaptor.getOperands().empty() && "constant has no operands");
    
      // Return the held attribute value.
      return getValue();
    }
    
    // Builds a constant op with the specified attribute `value`. The result
    // op's type is deduced from `value`; if `value` is of scalar type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
Back to top