Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 236 for 1000Mi (0.09 sec)

  1. docs/bucket/notifications/README.md

    To update the configuration, use `mc admin config get notify_amqp` command to get the current configuration for `notify_amqp`.
    
    ```sh
    $ mc admin config get myminio/ notify_amqp
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. test/fixedbugs/issue46938.go

    		if got := err.(error).Error(); !strings.Contains(got, "slice bounds out of range") {
    			panic("expected panic slice out of bound, got " + got)
    		}
    	}()
    	s := make([]int64, 100)
    	p := unsafe.Pointer(&s[0])
    	n := 1000
    
    	_ = (*[10]int64)(p)[:n:n]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 25 01:57:42 UTC 2021
    - 584 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/force_shared_name_for_resource_ops.pbtxt

        }
      }
      attr: {
        key: "Tout"
        value: {
          list: {
            type: [DT_INT64]
          }
        }
      }
      attr: {
        key: "batch_timeout_micros"
        value: {
          i: 100000
        }
      }
      attr: {
        key: "f"
        value: {
          func: {
            name: "inference_function"
          }
        }
      }
      attr: {
        key: "max_batch_size"
        value: {
          i: 32
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 31 02:37:48 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/helpers_linux_test.go

    		},
    		{
    			input:  int64(5),
    			quota:  int64(1000),
    			period: uint64(100000),
    		},
    		{
    			input:  int64(9),
    			quota:  int64(1000),
    			period: uint64(100000),
    		},
    		{
    			input:  int64(10),
    			quota:  int64(1000),
    			period: uint64(100000),
    		},
    		{
    			input:  int64(200),
    			quota:  int64(20000),
    			period: uint64(100000),
    		},
    		{
    			input:  int64(500),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/tests/sink_in_invariant_ops.mlir

      // CHECK: "tf.BatchFunction"(%arg0, %0)
      // CHECK: operandSegmentSizes = array<i32: 1, 1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 21K bytes
    - Viewed (0)
  6. test/fixedbugs/issue52612.go

    type eface struct {
    	typ  unsafe.Pointer
    	data unsafe.Pointer
    }
    
    func f(c chan struct{}) {
    	var x atomic.Value
    
    	go func() {
    		x.Swap(one) // writing using the old marker
    	}()
    	for i := 0; i < 100000; i++ {
    		v := x.Load() // reading using the new marker
    
    		p := (*eface)(unsafe.Pointer(&v)).typ
    		if uintptr(p) == ^uintptr(0) {
    			// We read the old marker, which the new reader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 20:42:52 UTC 2022
    - 881 bytes
    - Viewed (0)
  7. pkg/proxy/util/linebuffer_test.go

    			expected: 1,
    		},
    		{
    			name:     "write 100 lines",
    			expected: 100,
    		},
    		{
    			name:     "write 1000 lines",
    			expected: 1000,
    		},
    		{
    			name:     "write 10000 lines",
    			expected: 10000,
    		},
    		{
    			name:     "write 100000 lines",
    			expected: 100000,
    		},
    	}
    	testBuffer := NewLineBuffer()
    	discardBuffer := NewDiscardLineBuffer()
    	for _, testCase := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 12:38:25 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. okhttp-tls/src/test/java/okhttp3/tls/HeldCertificateTest.kt

        // 5 seconds starting on 1970-01-01.
        val heldCertificate =
          HeldCertificate.Builder()
            .validityInterval(5000L, 10000L)
            .build()
        val certificate = heldCertificate.certificate
        assertThat(certificate.notBefore.time).isEqualTo(5000L)
        assertThat(certificate.notAfter.time).isEqualTo(10000L)
      }
    
      @Test
      fun customDuration() {
        val now = System.currentTimeMillis()
        val heldCertificate =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  9. cni/pkg/plugin/testdata/include-exclude-ip.txt.golden

    -A ISTIO_OUTPUT -o lo ! -d 127.0.0.1/32 -p tcp ! --dport 15008 -m owner --gid-owner 1337 -j ISTIO_IN_REDIRECT
    -A ISTIO_OUTPUT -m owner --gid-owner 1337 -j RETURN
    -A ISTIO_OUTPUT -d 127.0.0.1/32 -j RETURN
    -A ISTIO_OUTPUT -d 10.0.0.0/8 -j RETURN
    -A ISTIO_OUTPUT -d 127.0.0.0/8 -j ISTIO_REDIRECT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go

    				CpuPeriod:          100000,
    				CpuQuota:           800000,
    				CpuShares:          2048,
    				MemoryLimitInBytes: 0,
    			},
    			cgroupVersion: cgroupV1,
    		},
    		{
    			name:   "RequestNilCPU",
    			cpuLim: generateResourceQuantity("2"),
    			memLim: generateResourceQuantity("0"),
    			expected: &runtimeapi.LinuxContainerResources{
    				CpuPeriod:          100000,
    				CpuQuota:           200000,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41K bytes
    - Viewed (0)
Back to top