Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 92 for 100M (0.08 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    									CacheSize: pointer.Int32(1000),
    								},
    							},
    							{
    								KMS: &apiserver.KMSConfiguration{
    									Name:       "another-kms",
    									APIVersion: "v2",
    									Timeout: &metav1.Duration{
    										Duration: 1 * time.Second,
    									},
    									Endpoint:  "unix:///tmp/anothertestprovider.sock",
    									CacheSize: pointer.Int32(1000),
    								},
    							},
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  2. src/strings/strings_test.go

    		if got := IndexRune(tt.in, tt.rune); got != tt.want {
    			t.Errorf("IndexRune(%q, %d) = %v; want %v", tt.in, tt.rune, got, tt.want)
    		}
    	}
    
    	haystack := "test世界"
    	allocs := testing.AllocsPerRun(1000, func() {
    		if i := IndexRune(haystack, 's'); i != 2 {
    			t.Fatalf("'s' at %d; want 2", i)
    		}
    		if i := IndexRune(haystack, '世'); i != 4 {
    			t.Fatalf("'世' at %d; want 4", i)
    		}
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/SetsTest.java

        verifySetContents(set, EMPTY_COLLECTION);
      }
    
      public void testNewHashSetWithExpectedSizeLarge() {
        HashSet<Integer> set = Sets.newHashSetWithExpectedSize(1000);
        verifySetContents(set, EMPTY_COLLECTION);
      }
    
      public void testNewHashSetFromIterator() {
        HashSet<Integer> set = Sets.newHashSet(SOME_COLLECTION.iterator());
        verifySetContents(set, SOME_COLLECTION);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/ppc64.s

    	ADDEX R3, R5, $3, R6            // 7cc32f54
    	ADDEX R3, $3, R5, R6            // 7cc32f54
    	ADDIS $8, R3                    // 3c630008
    	ADD   $524288, R3               // 3c630008
    	ADDIS $1000, R3, R4             // 3c8303e8
    
    	ANDCC $1, R3                    // 70630001
    	ANDCC $1, R3, R4                // 70640001
    	ANDCC $-1, R4                   // 3be0ffff7fe42039
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  5. src/runtime/mgcscavenge.go

    	// for gcPercent and one for memoryLimit. Let's handle the latter first because
    	// it's simpler.
    
    	// We want to target retaining (100-reduceExtraPercent)% of the heap.
    	memoryLimitGoal := uint64(float64(memoryLimit) * (1 - reduceExtraPercent/100.0))
    
    	// mappedReady is comparable to memoryLimit, and represents how much total memory
    	// the Go runtime has committed now (estimated).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. src/runtime/mgcpacer.go

    		// heap goal, and that's twice the heap goal (i.e. if GOGC=100 and the heap and/or
    		// stacks and/or globals grow to twice their size, this limits the current GC cycle's
    		// growth to 4x the original live heap's size).
    		//
    		// This maintains the invariant that we use no more memory than the next GC cycle
    		// will anyway.
    		hardGoal := int64((1.0 + float64(gcPercent)/100.0) * float64(heapGoal))
    		if extHeapGoal > hardGoal {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        assertThat(readJournalLines()).isEqualTo(
          listOf(DiskLruCache.MAGIC, DiskLruCache.VERSION_1, "100", "2", "") + expectedBodyLines,
        )
      }
    
      private fun createJournal(vararg bodyLines: String) {
        createJournalWithHeader(
          DiskLruCache.MAGIC,
          DiskLruCache.VERSION_1,
          "100",
          "2",
          "",
          *bodyLines,
        )
      }
    
      private fun createJournalWithHeader(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  8. src/net/netip/netip_test.go

    	for i := 0; i < b.N; i++ {
    		ip := net.IPv4(8, 8, 8, 8)
    		ips = ips[:0]
    		for i := 0; i < 100; i++ {
    			ips = append(ips, ip)
    		}
    	}
    }
    
    func BenchmarkIPv4(b *testing.B) {
    	b.ReportAllocs()
    	ips := []Addr{}
    	for i := 0; i < b.N; i++ {
    		ip := IPv4(8, 8, 8, 8)
    		ips = ips[:0]
    		for i := 0; i < 100; i++ {
    			ips = append(ips, ip)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  9. src/crypto/tls/tls_test.go

    			name := fmt.Sprintf("%sPacket/%dkbps", mode, kbps)
    			b.Run(name, func(b *testing.B) {
    				b.Run("TLSv12", func(b *testing.B) {
    					latency(b, VersionTLS12, kbps*1000, mode == "Max")
    				})
    				b.Run("TLSv13", func(b *testing.B) {
    					latency(b, VersionTLS13, kbps*1000, mode == "Max")
    				})
    			})
    		}
    	}
    }
    
    func TestConnectionStateMarshal(t *testing.T) {
    	cs := &ConnectionState{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      Output weights_0 = ops::VarHandleOp(scope.WithOpName("weights_0"), DT_FLOAT,
                                          TensorShape({1000}));
      Output weights_1 = ops::VarHandleOp(scope.WithOpName("weights_1"), DT_FLOAT,
                                          TensorShape({1000}));
    
      // We update the weights by adding delta to them (to "simulate" a
      // ResourceApplyGradientDescent and similar things).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
Back to top