Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 63 for 4000A1 (0.16 sec)

  1. pilot/pkg/xds/endpoints/ep_filters_test.go

    					// 3 local endpoints in network2
    					{Address: "20.0.0.1", Weight: 6},
    					{Address: "20.0.0.2", Weight: 6},
    					{Address: "20.0.0.3", Weight: 6},
    					// 2 endpoint on network1 with weight aggregated at the gateway
    					{Address: "1.1.1.1", Weight: 12},
    					// 1 endpoint on network4 with no gateway (i.e. directly accessible)
    					{Address: "40.0.0.1", Weight: 6},
    				},
    				Weight: 36,
    			},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/hash/BloomFilterTest.java

            .addEqualityGroup(BloomFilter.create(Funnels.byteArrayFunnel(), 100, 0.02))
            .addEqualityGroup(BloomFilter.create(Funnels.byteArrayFunnel(), 200, 0.01))
            .addEqualityGroup(BloomFilter.create(Funnels.byteArrayFunnel(), 200, 0.02))
            .addEqualityGroup(BloomFilter.create(Funnels.unencodedCharsFunnel(), 100, 0.01))
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  3. src/log/slog/handler_test.go

    			attrs:    attrs,
    			wantText: "time=2000-01-02T03:04:05.000Z level=INFO msg=message a=one b=2",
    			wantJSON: `{"time":"2000-01-02T03:04:05Z","level":"INFO","msg":"message","a":"one","b":2}`,
    		},
    		{
    			name:     "empty key",
    			attrs:    append(slices.Clip(attrs), Any("", "v")),
    			wantText: `time=2000-01-02T03:04:05.000Z level=INFO msg=message a=one b=2 ""=v`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 13:57:53 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  4. src/log/slog/text_handler_test.go

    				wantPrefix string
    				modKey     func(string) string
    			}{
    				{
    					"none",
    					HandlerOptions{},
    					`time=2000-01-02T03:04:05.000Z level=INFO msg="a message"`,
    					func(s string) string { return s },
    				},
    				{
    					"replace",
    					HandlerOptions{ReplaceAttr: upperCaseKey},
    					`TIME=2000-01-02T03:04:05.000Z LEVEL=INFO MSG="a message"`,
    					strings.ToUpper,
    				},
    			} {
    				t.Run(opts.name, func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 19:05:59 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_sandbox_linux_test.go

    			pod:         getPodWithOverhead(),
    			expectedResource: &runtimeapi.LinuxContainerResources{
    				MemoryLimitInBytes: 268435456,
    				CpuPeriod:          100000,
    				CpuQuota:           400000,
    				CpuShares:          2048,
    			},
    			expectedOverhead: &runtimeapi.LinuxContainerResources{
    				MemoryLimitInBytes: 134217728,
    				CpuPeriod:          100000,
    				CpuQuota:           100000,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. pkg/kubelet/network/dns/dns_test.go

    			dnsConfig: &v1.PodDNSConfig{
    				Nameservers: []string{"10.0.0.11"},
    				Searches:    []string{"my.domain"},
    				Options: []v1.PodDNSConfigOption{
    					{Name: "ndots", Value: &testNdotsOptionValue},
    					{Name: "debug"},
    				},
    			},
    			expectedDNSConfig: &runtimeapi.DNSConfig{
    				Servers:  []string{testClusterNameserver, "10.0.0.11"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/cache/UserHomeScopedCompileCaches.java

                "classAnalysis",
                new HashCodeSerializer(),
                new ClassAnalysis.Serializer(interner)
            ).withCacheDecorator(inMemoryCacheDecoratorFactory.decorator(400000, true));
            this.classAnalysisCache = new MinimalPersistentCache<>(cache.createIndexedCache(classCacheParameters));
        }
    
        @Override
        public void close() {
            cache.close();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Feb 24 12:57:52 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. src/log/slog/json_handler_test.go

    		name string
    		opts HandlerOptions
    		want string
    	}{
    		{
    			"none",
    			HandlerOptions{},
    			`{"time":"2000-01-02T03:04:05Z","level":"INFO","msg":"m","a":1,"m":{"b":2}}`,
    		},
    		{
    			"replace",
    			HandlerOptions{ReplaceAttr: upperCaseKey},
    			`{"TIME":"2000-01-02T03:04:05Z","LEVEL":"INFO","MSG":"m","A":1,"M":{"b":2}}`,
    		},
    	} {
    		t.Run(test.name, func(t *testing.T) {
    			var buf bytes.Buffer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 17:06:26 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  9. src/os/exec_unix_test.go

    		// EINVAL (see waitid in usr/src/uts/common/os/exit.c in
    		// illumos). This is configurable via sysconf(_SC_MAXPID), but
    		// we'll just take the default.
    		pid = 30000-1
    	}
    
    	p, err := FindProcess(pid)
    	if err != nil {
    		t.Fatalf("FindProcess(math.MaxInt32) got err %v, want nil", err)
    	}
    
    	if ps, err := p.Wait(); !errors.Is(err, syscall.ECHILD) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. tensorflow/cc/saved_model/testdata/OptimizerSlotVariableModule/variables/variables.data-00000-of-00001

    Katherine Wu <******@****.***> 1665621632 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 13 00:45:05 UTC 2022
    - 810 bytes
    - Viewed (0)
Back to top