Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 687 for 1000L (0.07 sec)

  1. pilot/pkg/security/authz/builder/testdata/http/single-policy-out.yaml

                        prefixLen: 32
                - orIds:
                    ids:
                    - directRemoteIp:
                        addressPrefix: 10.0.0.1
                        prefixLen: 32
                    - directRemoteIp:
                        addressPrefix: 10.0.0.2
                        prefixLen: 32
                - orIds:
                    ids:
                    - header:
                        name: X-header
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 16:35:46 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/http2/FrameLogTest.kt

        assertThat(frameLog(true, 3, 10000, TYPE_HEADERS, 0x4))
          .isEqualTo("<< 0x00000003 10000 HEADERS       END_HEADERS")
        assertThat(frameLog(true, 3, 10000, TYPE_CONTINUATION, 0x4))
          .isEqualTo("<< 0x00000003 10000 CONTINUATION  END_HEADERS")
        assertThat(frameLog(true, 4, 10000, TYPE_PUSH_PROMISE, 0x4))
          .isEqualTo("<< 0x00000004 10000 PUSH_PROMISE  END_PUSH_PROMISE")
      }
    
      @Test
      fun flagOverlapOn0x20() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_container_windows_test.go

    	// Above, we're setting the limit to 3 CPUs. But we can't expect more than 100% of the CPUs
    	// we have. (e.g.: if we only have 2 CPUs, we can't have 150% CPU max).
    	if expectedCpuMax > 10000 {
    		expectedCpuMax = 10000
    	}
    	expectedWindowsConfig := &runtimeapi.WindowsContainerConfig{
    		Resources: &runtimeapi.WindowsContainerResources{
    			CpuMaximum:         expectedCpuMax,
    			MemoryLimitInBytes: 256 * 1024 * 1024,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. pkg/registry/core/service/portallocator/allocator_test.go

    		}
    		if found.Has(strconv.Itoa(p)) {
    			t.Fatalf("allocated %d twice @ %d", p, count)
    		}
    		found.Insert(strconv.Itoa(p))
    	}
    	if _, err := r.AllocateNext(); err != ErrFull {
    		t.Fatal(err)
    	}
    
    	released := 10005
    	if err := r.Release(released); err != nil {
    		t.Fatal(err)
    	}
    	if f := r.Free(); f != 1 {
    		t.Errorf("unexpected free %d", f)
    	}
    	if f := r.Used(); f != 200 {
    		t.Errorf("unexpected used %d", f)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 07:15:02 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. cmd/endpoint_test.go

    	case1Endpoint2 := "http://" + nonLoopBackIP + "/d2"
    	args := []string{
    		"http://" + nonLoopBackIP + ":10000/d1",
    		"http://" + nonLoopBackIP + ":10000/d2",
    		"http://example.org:10000/d3",
    		"http://example.com:10000/d4",
    	}
    	case1URLs, case1LocalFlags := getExpectedEndpoints(args, "http://"+nonLoopBackIP+":10000/")
    
    	case2Endpoint1 := "http://" + nonLoopBackIP + "/d1"
    	case2Endpoint2 := "http://" + nonLoopBackIP + ":9000/d2"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jan 13 07:53:03 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. test/fixedbugs/issue31419.go

    	go f() // get itab in a loop
    
    	var i I
    	for k := 0; k < 10000; k++ {
    		i, ok = e.(I) // read the cached itab
    		if ok {
    			println("iteration", k, "i =", i, "&t =", &t)
    			panic("conversion succeeded")
    		}
    	}
    	<-ch
    }
    
    func f() {
    	for i := 0; i < 10000; i++ {
    		f1()
    	}
    	ch <- 1
    }
    
    func f1() {
    	defer func() {
    		err := recover()
    		if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 18:59:57 UTC 2019
    - 948 bytes
    - Viewed (0)
  7. pkg/volume/util/device_util_linux_test.go

    	matches := addressPattern.FindStringSubmatch(filename)
    	if nil != matches {
    		switch matches[1] {
    		case "host2":
    			return []byte("10.0.0.1"), nil
    		case "host3":
    			return []byte("10.0.0.2"), nil
    		}
    	}
    	targetNamePattern := regexp.MustCompile("^/sys/class/iscsi_host/(host\\d)/device/session\\d/iscsi_session/session\\d/targetname$")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 8K bytes
    - Viewed (0)
  8. cmd/streaming-signature-v4_test.go

    	tests := []testCase{
    		// Test - 1 valid case.
    		{
    			[]byte("10000;chunk-signature=ad80c730a21e5b8d04586a2213dd63b9a0e99e0e2307b0ade35a65485a288648"),
    			[]byte("10000"),
    			[]byte("ad80c730a21e5b8d04586a2213dd63b9a0e99e0e2307b0ade35a65485a288648"),
    		},
    		// Test - 2 no chunk extension, return same buffer.
    		{
    			[]byte("10000;"),
    			[]byte("10000;"),
    			nil,
    		},
    		// Test - 3 no chunk size, return error.
    		{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/math/MathTesting.java

        for (int exponent : asList(2, 3, 4, 9, 15, 16, 17, 24, 25, 30)) {
          int x = 1 << exponent;
          intValues.add(x, x + 1, x - 1);
        }
        intValues.add(9999).add(10000).add(10001).add(1000000); // near powers of 10
        intValues.add(5792).add(5793); // sqrt(2^25) rounded up and down
        POSITIVE_INTEGER_CANDIDATES = intValues.build();
        NEGATIVE_INTEGER_CANDIDATES =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        @Size(max = 1000)
        public String ldapProviderUrl;
    
        @Size(max = 1000)
        public String ldapSecurityPrincipal;
    
        @Size(max = 1000)
        public String ldapAdminSecurityPrincipal;
    
        @Size(max = 1000)
        public String ldapAdminSecurityCredentials;
    
        @Size(max = 1000)
        public String ldapBaseDn;
    
        @Size(max = 1000)
        public String ldapAccountFilter;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top