Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 105 for Fast (0.18 sec)

  1. src/cmd/internal/obj/s390x/asmz.go

    	{i: 98, as: ALMG, a1: C_LAUTO, a2: C_REG, a6: C_REG},
    
    	// bytes
    	{i: 40, as: ABYTE, a1: C_SCON},
    	{i: 40, as: AWORD, a1: C_LCON},
    	{i: 31, as: ADWORD, a1: C_LCON},
    	{i: 31, as: ADWORD, a1: C_DCON},
    
    	// fast synchronization
    	{i: 80, as: ASYNC},
    
    	// store clock
    	{i: 88, as: ASTCK, a6: C_SAUTO},
    	{i: 88, as: ASTCK, a6: C_SOREG},
    
    	// storage and storage
    	{i: 84, as: AMVC, a1: C_SCON, a3: C_LOREG, a6: C_LOREG},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  2. src/net/http/server.go

    type connReader struct {
    	conn *conn
    
    	mu      sync.Mutex // guards following
    	hasByte bool
    	byteBuf [1]byte
    	cond    *sync.Cond
    	inRead  bool
    	aborted bool  // set true before conn.rwc deadline is set to past
    	remain  int64 // bytes remaining
    }
    
    func (cr *connReader) lock() {
    	cr.mu.Lock()
    	if cr.cond == nil {
    		cr.cond = sync.NewCond(&cr.mu)
    	}
    }
    
    func (cr *connReader) unlock() { cr.mu.Unlock() }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      auto input_args_have_static_shape = [&]() -> bool {
        return mlir::cast<TensorType>(input_tensor.getType()).hasStaticShape() &&
               mlir::cast<TensorType>(kernel_tensor.getType()).hasStaticShape() &&
               mlir::cast<TensorType>(window_strides.getType()).hasStaticShape() &&
               mlir::cast<TensorType>(padding.getType()).hasStaticShape() &&
               mlir::cast<TensorType>(lhs_dilation.getType()).hasStaticShape() &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    		var first, last *sudog
    		for len(pp.sudogcache) > cap(pp.sudogcache)/2 {
    			n := len(pp.sudogcache)
    			p := pp.sudogcache[n-1]
    			pp.sudogcache[n-1] = nil
    			pp.sudogcache = pp.sudogcache[:n-1]
    			if first == nil {
    				first = p
    			} else {
    				last.next = p
    			}
    			last = p
    		}
    		lock(&sched.sudoglock)
    		last.next = sched.sudogcache
    		sched.sudogcache = first
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. src/net/http/transport_test.go

    		retry = false
    		srvWG.Add(3)
    		tests := []struct {
    			path        string
    			wantTimeout bool
    		}{
    			{path: "/fast"},
    			{path: "/slow", wantTimeout: true},
    			{path: "/fast"},
    		}
    		for i, tt := range tests {
    			req, _ := NewRequest("GET", ts.URL+tt.path, nil)
    			req = req.WithT(t)
    			res, err := c.Do(req)
    			<-inHandler
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

              CPred<"$_op.getOperand(0).getType().cast<ShapedType>().getRank() <= 1">,
              CPred<"$_op.getOperand(0).getType().cast<ShapedType>().getRank() == 2 && !$_op.getOperand(0).getType().cast<ShapedType>().hasStaticShape()">,
              CPred<"$_op.getOperand(0).getType().cast<ShapedType>().getRank() == 2 && $_op.getOperand(0).getType().cast<ShapedType>().getShape()[1] <= 4">]>>]> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/asm6.go

    }
    
    // Insert inserts b at offset i.
    func (ab *AsmBuf) Insert(i int, b byte) {
    	ab.off++
    	copy(ab.buf[i+1:ab.off], ab.buf[i:ab.off-1])
    	ab.buf[i] = b
    }
    
    // Last returns the byte at the end of the buffer.
    func (ab *AsmBuf) Last() byte { return ab.buf[ab.off-1] }
    
    // Len returns the length of the buffer.
    func (ab *AsmBuf) Len() int { return ab.off }
    
    // Bytes returns the contents of the buffer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

      }
    
      /**
       * Test the case where the futures are fulfilled prior to constructing the ListFuture. There was a
       * bug where the loop that connects a Listener to each of the futures would die on the last
       * loop-check as done() on ListFuture nulled out the variable being looped over (the list of
       * futures).
       */
      public void testAllAsList_doneFutures() throws Exception {
        // Create input and output
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

      }
    
      /**
       * Test the case where the futures are fulfilled prior to constructing the ListFuture. There was a
       * bug where the loop that connects a Listener to each of the futures would die on the last
       * loop-check as done() on ListFuture nulled out the variable being looped over (the list of
       * futures).
       */
      public void testAllAsList_doneFutures() throws Exception {
        // Create input and output
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  10. tests/integration/pilot/common/routing.go

    				Port: echo.Port{
    					Protocol: proto,
    				},
    				Check: check.And(
    					check.OK(),
    					check.RequestHeader("Istio-Custom-Header", "user-defined-value")),
    			},
    			// to keep tests fast, we only run the basic protocol test per-workload and scheme match once (per cluster)
    			targetMatchers:   matchers,
    			viaIngress:       true,
    			workloadAgnostic: true,
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
Back to top