Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for stressNet (0.14 sec)

  1. test/stress/runstress.go

    		if err != nil {
    			log.Fatalf("stressNet: http Get error: %v", err)
    		}
    		if res.StatusCode != 200 {
    			log.Fatalf("stressNet: Status code = %d", res.StatusCode)
    		}
    		n, err := io.Copy(io.Discard, res.Body)
    		if err != nil {
    			log.Fatalf("stressNet: io.Copy: %v", err)
    		}
    		if n != int64(size) {
    			log.Fatalf("stressNet: copied = %d; want %d", n, size)
    		}
    		res.Body.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:21:35 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/hash/Murmur3_32HashFunction.java

      static final HashFunction MURMUR3_32_FIXED =
          new Murmur3_32HashFunction(0, /* supplementaryPlaneFix= */ true);
    
      // We can include the non-BMP fix here because Hashing.goodFastHash stresses that the hash is a
      // temporary-use one. Therefore it shouldn't be persisted.
      static final HashFunction GOOD_FAST_HASH_32 =
          new Murmur3_32HashFunction(Hashing.GOOD_FAST_HASH_SEED, /* supplementaryPlaneFix= */ true);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 11.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/hash/Murmur3_32HashFunction.java

      static final HashFunction MURMUR3_32_FIXED =
          new Murmur3_32HashFunction(0, /* supplementaryPlaneFix= */ true);
    
      // We can include the non-BMP fix here because Hashing.goodFastHash stresses that the hash is a
      // temporary-use one. Therefore it shouldn't be persisted.
      static final HashFunction GOOD_FAST_HASH_32 =
          new Murmur3_32HashFunction(Hashing.GOOD_FAST_HASH_SEED, /* supplementaryPlaneFix= */ true);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 11.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/poset_test.go

    		// Undo: 100<101
    		{Undo, 0, 0},
    		{Ordered_Fail, 4, 7},
    		{Ordered_Fail, 7, 12},
    		{Ordered, 100, 101},
    
    		// Recreated DAG #1 from scratch, reusing same nodes.
    		// This also stresses that Undo has done its job correctly.
    		// DAG: 1<2<(5|6), 101<102<(105|106<107)
    		{Checkpoint, 0, 0},
    		{SetOrder, 101, 102},
    		{SetOrder, 102, 105},
    		{SetOrder, 102, 106},
    		{SetOrder, 106, 107},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 26 07:52:35 UTC 2019
    - 18.1K bytes
    - Viewed (0)
  5. src/expvar/expvar_test.go

    	var (
    		bytesSent Int
    		bytesRead Int
    	)
    
    	// The benchmark creates GOMAXPROCS client/server pairs.
    	// Each pair creates 4 goroutines: client reader/writer and server reader/writer.
    	// The benchmark stresses concurrent reading and writing to the same connection.
    	// Such pattern is used in net/http and net/rpc.
    
    	b.StopTimer()
    
    	P := runtime.GOMAXPROCS(0)
    	N := b.N / P
    	W := 1000
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:46:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. src/net/tcpsock_test.go

    	testHookUninstaller.Do(uninstallTestHooks)
    
    	// The benchmark creates GOMAXPROCS client/server pairs.
    	// Each pair creates 4 goroutines: client reader/writer and server reader/writer.
    	// The benchmark stresses concurrent reading and writing to the same connection.
    	// Such pattern is used in net/http and net/rpc.
    
    	b.StopTimer()
    
    	P := runtime.GOMAXPROCS(0)
    	N := b.N / P
    	W := 1000
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/BUILD

            "@llvm-project//mlir:Support",
        ],
    )
    
    # TensorFlow ops are separated into `tensorflow_ops_a_m.cc` and
    # `tensorflow_ops_n_z.cc` so that C++ compiler won't be stressed by huge C++
    # files. However, there might be dependencies between `tensorflow_ops_a_m.cc`
    # and `tensorflow_ops_n_z.cc`, thus they must be built in one `cc_library`.
    cc_library(
        name = "tensorflow_ops_sharded",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 47.7K bytes
    - Viewed (0)
Back to top