Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 108 for 131072 (0.12 sec)

  1. pkg/kubelet/userns/userns_manager_test.go

    			file: `{
    	                        "uidMappings":[ { "hostId":131072, "containerId":0, "length":65536 } ],
    	                        "gidMappings":[ { "hostId":131072, "containerId":0, "length":65536 } ]
                                   }`,
    			success: true,
    		},
    		{
    			name: "invalid length",
    			file: `{
    	                        "uidMappings":[ { "hostId":131072, "containerId":0, "length":0 } ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. pkg/proxy/apis/config/scheme/testdata/KubeProxyConfiguration/after/v1alpha1.yaml

    clientConnection:
      acceptContentTypes: ""
      burst: 10
      contentType: application/vnd.kubernetes.protobuf
      kubeconfig: ""
      qps: 5
    clusterCIDR: ""
    configSyncPeriod: 15m0s
    conntrack:
      maxPerCore: 32768
      min: 131072
      tcpBeLiberal: false
      tcpCloseWaitTimeout: 1h0m0s
      tcpEstablishedTimeout: 24h0m0s
      udpStreamTimeout: 0s
      udpTimeout: 0s
    detectLocal:
      bridgeInterface: ""
      interfaceNamePrefix: ""
    detectLocalMode: ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 12:50:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. pkg/proxy/apis/config/scheme/testdata/KubeProxyConfiguration/roundtrip/default/v1alpha1.yaml

    clientConnection:
      acceptContentTypes: ""
      burst: 10
      contentType: application/vnd.kubernetes.protobuf
      kubeconfig: ""
      qps: 5
    clusterCIDR: ""
    configSyncPeriod: 15m0s
    conntrack:
      maxPerCore: 32768
      min: 131072
      tcpBeLiberal: false
      tcpCloseWaitTimeout: 1h0m0s
      tcpEstablishedTimeout: 24h0m0s
      udpStreamTimeout: 0s
      udpTimeout: 0s
    detectLocal:
      bridgeInterface: ""
      interfaceNamePrefix: ""
    detectLocalMode: ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 12:50:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/process/internal/util/LongCommandLineDetectionUtil.java

        public static final int MAX_COMMAND_LINE_LENGTH_OSX = 262144;
        // Dervied from MAX_ARG_STRLEN as per http://man7.org/linux/man-pages/man2/execve.2.html
        public static final int MAX_COMMAND_LINE_LENGTH_NIX = 131072;
        private static final String WINDOWS_LONG_COMMAND_EXCEPTION_MESSAGE = "The filename or extension is too long";
        private static final String NIX_LONG_COMMAND_EXCEPTION_MESSAGE = "error=7, Argument list too long";
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 03 12:35:59 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  5. pkg/proxy/apis/config/v1alpha1/defaults_test.go

    	kubeproxyconfigv1alpha1 "k8s.io/kube-proxy/config/v1alpha1"
    )
    
    func TestDefaultsKubeProxyConfiguration(t *testing.T) {
    	oomScore := int32(-999)
    	ctMaxPerCore := int32(32768)
    	ctMin := int32(131072)
    	testCases := []struct {
    		name     string
    		original *kubeproxyconfigv1alpha1.KubeProxyConfiguration
    		expected *kubeproxyconfigv1alpha1.KubeProxyConfiguration
    	}{
    		{
    			name:     "empty-config",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:33:53 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. src/runtime/asm_wasm.s

    	DISPATCH(runtime·call4096, 4096)
    	DISPATCH(runtime·call8192, 8192)
    	DISPATCH(runtime·call16384, 16384)
    	DISPATCH(runtime·call32768, 32768)
    	DISPATCH(runtime·call65536, 65536)
    	DISPATCH(runtime·call131072, 131072)
    	DISPATCH(runtime·call262144, 262144)
    	DISPATCH(runtime·call524288, 524288)
    	DISPATCH(runtime·call1048576, 1048576)
    	DISPATCH(runtime·call2097152, 2097152)
    	DISPATCH(runtime·call4194304, 4194304)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:26:51 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/doc.go

    	MOVD 131072(R3), R4          addis r31, r4, 2           pld r4, 131072(r3)
    	                             ld    r4, 0(R3)
    
    	ADD $131073, R3              lis  r31, 2                paddi r3, r3, 131073
    	                             addi r31, 1
    	                             add  r3,r31,r3
    
    	MOVD $131073, R3             lis  r3, 2                 pli r3, 131073
    	                             addi r3, 1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  8. src/compress/flate/deflate_test.go

    		t.Logf("test disabled with -short")
    		return
    	}
    	w, err := NewWriter(io.Discard, 1)
    	if err != nil {
    		t.Fatalf("NewWriter: %v", err)
    	}
    	buf := make([]byte, 1024)
    	for i := 0; i < 131072; i++ {
    		if _, err := w.Write(buf); err != nil {
    			t.Fatalf("writer failed: %v", err)
    		}
    	}
    	w.Close()
    }
    
    func TestWriterReset(t *testing.T) {
    	t.Parallel()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/s390x.s

    	ANDW	R1, R2, R3            // b9f42031
    	ANDW	$1, R1                // c01b00000001
    	ANDW	$131071, R1           // a5160001
    	ANDW	$65536, R1            // c01b00010000
    	ANDW	$-2, R1               // a517fffe
    	OR	R1, R2                // b9810021
    	OR	R1, R2, R3            // b9e62031
    	OR	$1, R1                // a51b0001
    	OR	$131071, R1           // c01d0001ffff
    	OR	$65536, R1            // c01d00010000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 03:55:32 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  10. src/runtime/asm_mips64x.s

    	DISPATCH(runtime·call4096, 4096)
    	DISPATCH(runtime·call8192, 8192)
    	DISPATCH(runtime·call16384, 16384)
    	DISPATCH(runtime·call32768, 32768)
    	DISPATCH(runtime·call65536, 65536)
    	DISPATCH(runtime·call131072, 131072)
    	DISPATCH(runtime·call262144, 262144)
    	DISPATCH(runtime·call524288, 524288)
    	DISPATCH(runtime·call1048576, 1048576)
    	DISPATCH(runtime·call2097152, 2097152)
    	DISPATCH(runtime·call4194304, 4194304)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:45:59 UTC 2023
    - 24.3K bytes
    - Viewed (0)
Back to top