Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 342 for B1000000 (0.13 sec)

  1. cmd/handler-utils_test.go

    		domains          []string
    		expectedResource string
    	}{
    		{"/a/b/c", "test.mydomain.com", []string{"mydomain.com"}, "/test/a/b/c"},
    		{"/a/b/c", "[2001:0db8:85a3:0000:0000:8a2e:0370:7334]:17000", []string{"mydomain.com"}, "/a/b/c"},
    		{"/a/b/c", "[2001:0db8:85a3:0000:0000:8a2e:0370:7334]", []string{"mydomain.com"}, "/a/b/c"},
    		{"/a/b/c", "192.168.1.1:9000", []string{"mydomain.com"}, "/a/b/c"},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. pilot/pkg/model/validation_test.go

    			},
    		},
    		{
    			name: "invalid endpoint port and service port",
    			instance: &ServiceInstance{
    				Service: service1,
    				Endpoint: &IstioEndpoint{
    					Address:      "192.168.1.2",
    					EndpointPort: 1000000,
    				},
    			},
    		},
    		{
    			name: "endpoint missing service port",
    			instance: &ServiceInstance{
    				Service: service1,
    				ServicePort: &Port{
    					Name:     service1.Ports[1].Name + "-extra",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 23 19:35:35 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. maven-embedder/src/test/java/org/apache/maven/cli/transfer/FileSizeFormatTest.java

            assertEquals("0 GB", format.format(_999_kilobytes, ScaleUnit.GIGABYTE));
    
            long _1000_kilobytes = 1000L * 1000L;
            assertEquals("1.0 MB", format.format(_1000_kilobytes));
            assertEquals("1000000 B", format.format(_1000_kilobytes, ScaleUnit.BYTE));
            assertEquals("1000 kB", format.format(_1000_kilobytes, ScaleUnit.KILOBYTE));
            assertEquals("1.0 MB", format.format(_1000_kilobytes, ScaleUnit.MEGABYTE));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 21:48:41 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. cmd/erasure-decode_test.go

    	b.Run(" X0000000|X0000000 ", func(b *testing.B) { benchmarkErasureDecode(8, 8, 1, 1, size, b) })
    	b.Run(" 00000000|XXXXXXXX ", func(b *testing.B) { benchmarkErasureDecode(8, 8, 0, 8, size, b) })
    	b.Run(" XXXX0000|XXXX0000 ", func(b *testing.B) { benchmarkErasureDecode(8, 8, 4, 4, size, b) })
    	b.Run(" XXXXXXXX|00000000 ", func(b *testing.B) { benchmarkErasureDecode(8, 8, 8, 0, size, b) })
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 30 20:43:25 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. src/fmt/stringer_test.go

    	s = Sprintf("%v %v %v %v %v %v", TU(5), TU8(6), TU16(7), TU32(8), TU64(9), TUI(10))
    	check(t, s, "U: 5 U8: 6 U16: 7 U32: 8 U64: 9 UI: 10")
    	s = Sprintf("%v %v %v", TF(1.0), TF32(2.0), TF64(3.0))
    	check(t, s, "F: 1.000000 F32: 2.000000 F64: 3.000000")
    	s = Sprintf("%v %v", TB(true), TS("x"))
    	check(t, s, "B: true S: \"x\"")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 2.1K bytes
    - Viewed (0)
  6. android/guava-tests/benchmark/com/google/common/collect/MinMaxPriorityQueueBenchmark.java

     *
     * @author Sverre Sundsdal
     */
    public class MinMaxPriorityQueueBenchmark {
      @Param private ComparatorType comparator;
    
      // TODO(kevinb): add 1000000 back when we have the ability to throw
      // NotApplicableException in the expensive comparator case.
      @Param({"100", "10000"})
      private int size;
    
      @Param private HeapType heap;
    
      private Queue<Integer> queue;
    
      private final Random random = new Random();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. build-logic/profiling/src/main/kotlin/gradlebuild/jmh/tasks/JmhHTMLReport.kt

                        type: 'category'
                    },
                    y: {
                        label: 'ops/s',
                        tick: {
                            format: function (x) { return (x / 1000000) + "M" }
                        }
                    }
                }
            });
            </script>
        """.trimIndent()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  8. src/runtime/defs1_netbsd_arm64.go

    	_EV_DISABLE   = 0x8
    	_EV_CLEAR     = 0x20
    	_EV_RECEIPT   = 0
    	_EV_ERROR     = 0x4000
    	_EV_EOF       = 0x8000
    	_EVFILT_READ  = 0x0
    	_EVFILT_WRITE = 0x1
    	_EVFILT_USER  = 0x8
    
    	_NOTE_TRIGGER = 0x1000000
    )
    
    type sigset struct {
    	__bits [4]uint32
    }
    
    type siginfo struct {
    	_signo   int32
    	_code    int32
    	_errno   int32
    	_reason  uintptr
    	_reasonx [16]byte
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testcshared/testdata/main2.c

          fprintf(stderr, "BUG: read: %s\n", strerror(errno));
          return 2;
        }
    
        // An EBADF error means that the shared library has not opened the
        // descriptor yet.
        ts.tv_sec = 0;
        ts.tv_nsec = 10000000;
        nanosleep(&ts, NULL);
      }
    
      if (n < 0) {
        fprintf(stderr, "BUG: failed to read any data from pipe\n");
        return 2;
      }
    
      if (n == 0) {
        fprintf(stderr, "BUG: unexpected EOF\n");
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. pkg/kubelet/apis/config/fuzzer/fuzzer.go

    			obj.ImageMaximumGCAge = metav1.Duration{}
    			obj.ImageGCHighThresholdPercent = 85
    			obj.ImageGCLowThresholdPercent = 80
    			obj.KernelMemcgNotification = false
    			obj.MaxOpenFiles = 1000000
    			obj.MaxPods = 110
    			obj.MemoryManagerPolicy = v1beta1.NoneMemoryManagerPolicy
    			obj.PodPidsLimit = -1
    			obj.NodeStatusUpdateFrequency = metav1.Duration{Duration: 10 * time.Second}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top