Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for numKeys (0.14 sec)

  1. src/net/http/serve_test.go

    		return conn.readBuf.Len()
    	}
    
    	ls := &oneConnListener{conn}
    	var numReqs int
    	var size0, size1 int
    	go Serve(ls, HandlerFunc(func(rw ResponseWriter, req *Request) {
    		numReqs++
    		if numReqs == 1 {
    			size0 = readBufLen()
    			req.Body.Close()
    			size1 = readBufLen()
    		}
    	}))
    	<-conn.closec
    	if numReqs < 1 || numReqs > 2 {
    		t.Fatalf("%d. bug in test. unexpected number of requests = %d", i, numReqs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  2. src/database/sql/sql_test.go

    }
    
    func (db *DB) numDeps() int {
    	db.mu.Lock()
    	defer db.mu.Unlock()
    	return len(db.dep)
    }
    
    // Dependencies are closed via a goroutine, so this polls waiting for
    // numDeps to fall to want, waiting up to nearly the test's deadline.
    func (db *DB) numDepsPoll(t *testing.T, want int) int {
    	var n int
    	waitCondition(t, func() bool {
    		n = db.numDeps()
    		return n <= want
    	})
    	return n
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. src/net/http/transport_test.go

    	// Not parallel: uses global test hooks.
    	maxProcs, numReqs := 16, 500
    	if testing.Short() {
    		maxProcs, numReqs = 4, 50
    	}
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(maxProcs))
    	ts := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
    		fmt.Fprintf(w, "%v", r.FormValue("echo"))
    	})).ts
    
    	var wg sync.WaitGroup
    	wg.Add(numReqs)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let summary = "Computes the complex absolute value of a tensor.";
    
      let description = [{
    Given a tensor `x` of complex numbers, this operation returns a tensor of type
    `float` or `double` that is the absolute value of each element in `x`. All
    elements in `x` must be complex numbers of the form \\(a + bj\\). The absolute
    value is computed as \\( \sqrt{a^2 + b^2}\\).
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  5. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    the mean refrangible Rays, and their Proportion in round Numbers is 20 to 31. This Glass was of a Colour inclining to green. The last of the Prisms mentioned in the third Experiment was of clear white Glass. Its refracting Angle 63-1/2 Degrees. The Angle which the emergent Rays contained, with the incident 45 deg. 50 min. The Sine of half the first Angle 5262. The Sine of half the Sum of the Angles 8157. And their Proportion in round Numbers 20 to 31, as before. From the Length of the Image, which...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  6. doc/go1.17_spec.html

    float32     the set of all IEEE 754 32-bit floating-point numbers
    float64     the set of all IEEE 754 64-bit floating-point numbers
    
    complex64   the set of all complex numbers with float32 real and imaginary parts
    complex128  the set of all complex numbers with float64 real and imaginary parts
    
    byte        alias for uint8
    rune        alias for int32
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

                                  op->getResult(0));
      return op->getResult(0).getType().cast<TensorType>().clone(
          new_result_quantized_type);
    }
    
    // Matches kernel dimension numbers, ranks of input and output and constant
    // kernel for legalization to TFLite convolution ops.
    LogicalResult MatchConvolutionFormat(stablehlo::ConvolutionOp op) {
      stablehlo::ConvDimensionNumbersAttr dimension_numbers =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/CallTest.kt

            .url(server.url("/"))
            .method("POST", requestBody2)
            .build()
        val response2 = client.newCall(request2).execute()
        assertThat(response2.code).isEqualTo(200)
    
        // Use sequence numbers to confirm the connection was pooled.
        assertThat(server.takeRequest().sequenceNumber).isEqualTo(0)
        assertThat(server.takeRequest().sequenceNumber).isEqualTo(1)
      }
    
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

    capitalization.)\n\n<decimalExponent> ::= \"e\" <signedNumber> | \"E\" <signedNumber> ```\n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities.\n\nWhen a Quantity is parsed from a string, it will remember the type of suffix...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  10. src/database/sql/sql.go

    // information would be lost. While Scan stringifies all numbers
    // scanned from numeric database columns into *string, scans into
    // numeric types are checked for overflow. For example, a float64 with
    // value 300 or a string with value "300" can scan into a uint16, but
    // not into a uint8, though float64(255) or "255" can scan into a
    // uint8. One exception is that scans of some float64 numbers to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
Back to top