Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 514 for 120m (0.04 sec)

  1. cluster/addons/calico-policy-controller/typha-vertical-autoscaler-configmap.yaml

      namespace: kube-system
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    data:
      typha-autoscaler: |-
        {
          "calico-typha": {
            "requests": {
              "cpu": {
                "base": "120m",
                "step": "80m",
                "nodesPerStep": 10,
                "max": "1000m"
              }
            }
          }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 14 15:32:57 UTC 2019
    - 414 bytes
    - Viewed (0)
  2. .github/workflows/go-lint.yml

              Set-MpPreference -DisableRealtimeMonitoring $true
              netsh int ipv4 set dynamicport tcp start=60000 num=61000
              go build --ldflags="-s -w" -o %GOPATH%\bin\minio.exe
              go test -v --timeout 120m ./...
          - name: Build on ${{ matrix.os }}
            if: matrix.os == 'ubuntu-latest'
            env:
              CGO_ENABLED: 0
              GO111MODULE: on
            run: |
              sudo apt install jq -y
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 22:29:33 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testshared/testdata/global/main.go

    	}
    }
    
    //go:noinline
    func testLargeOffset() {
    	for i, s := range globallib.Data[1<<20:] {
    		if s != int64(i)+1<<20 {
    			panic("testLargeOffset: index mismatch")
    		}
    	}
    
    	x := globallib.Data[1<<20+1]
    	if x != 1<<20+1 {
    		panic("testLargeOffset: direct mismatch")
    	}
    
    	y := &globallib.Data[1<<20+2]
    	if y != &ptrData()[1<<20+2] {
    		panic("testLargeOffset: address mismatch")
    	}
    }
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. pkg/kubelet/metrics/testdata/image_pull_duration_metric

    kubelet_image_pull_duration_seconds_bucket{image_size_in_bytes="0-10MB",le="30"} 1
    kubelet_image_pull_duration_seconds_bucket{image_size_in_bytes="0-10MB",le="60"} 1
    kubelet_image_pull_duration_seconds_bucket{image_size_in_bytes="0-10MB",le="120"} 1
    kubelet_image_pull_duration_seconds_bucket{image_size_in_bytes="0-10MB",le="180"} 1
    kubelet_image_pull_duration_seconds_bucket{image_size_in_bytes="0-10MB",le="240"} 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/mips64.s

    //	LMOVH rreg ',' rreg
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    	MOVH	R16, R27	// 0010dc00001bdc03
    	MOVHU	R1, R3		// 3023ffff
    
    //	LMOVB rreg ',' rreg
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    	MOVB	R8, R9		// 00084e0000094e03
    	MOVBU	R12, R17	// 319100ff
    
    //	LMOVV addr ',' rreg
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    	MOVV	foo<>+3(SB), R2
    	MOVV	(R5), R18	// dcb20000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    	SYS_CONNECTSERVER                   = 0x4B5 // 1205
    	SYS_DISCONNE                        = 0x4B6 // 1206
    	SYS_DISCONNECTSERVER                = 0x4B6 // 1206
    	SYS_JOINWORK                        = 0x4B7 // 1207
    	SYS_JOINWORKUNIT                    = 0x4B7 // 1207
    	SYS_LEAVEWOR                        = 0x4B8 // 1208
    	SYS_LEAVEWORKUNIT                   = 0x4B8 // 1208
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/DefaultVisualStudioLocatorTest.groovy

            when:
            def result = visualStudioLocator.locateComponent(vsDir)
    
            then:
            result.available
            result.component.name == "Visual Studio 12.0.0"
            result.component.version == VersionNumber.parse("12.0")
            result.component.baseDir == vsDir
            result.component.visualCpp.name == "Visual C++ 12.0.0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 25.1K bytes
    - Viewed (0)
  8. src/internal/gover/gover_test.go

    var isLangTests = []testCase1[string, bool]{
    	{"1.2rc3", false},
    	{"1.2.3", false},
    	{"1.999testmod", false},
    	{"1.22", true},
    	{"1.21", true},
    	{"1.20", false}, // == 1.20.0
    	{"1.19", false}, // == 1.20.0
    	{"1.3", false},  // == 1.3.0
    	{"1.2", false},  // == 1.2.0
    	{"1", false},    // == 1.0.0
    }
    
    func TestIsValid(t *testing.T) { test1(t, isValidTests, "IsValid", IsValid) }
    
    var isValidTests = []testCase1[string, bool]{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.20.md

    Initially introduced in 1.18, Kubernetes 1.20 now enables API Priority and Fairness (APF) by default. This allows `kube-apiserver` to [categorize incoming requests by priority levels](https://docs.k8s.io/concepts/cluster-administration/flow-control/).
    
    ### IPv4/IPv6 run
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  10. src/cmd/go/internal/gover/gover_test.go

    var isLangTests = []testCase1[string, bool]{
    	{"1.2rc3", false},
    	{"1.2.3", false},
    	{"1.999testmod", false},
    	{"1.22", true},
    	{"1.21", true},
    	{"1.20", false}, // == 1.20.0
    	{"1.19", false}, // == 1.20.0
    	{"1.3", false},  // == 1.3.0
    	{"1.2", false},  // == 1.2.0
    	{"1", false},    // == 1.0.0
    }
    
    func TestPrev(t *testing.T) { test1(t, prevTests, "Prev", Prev) }
    
    var prevTests = []testCase1[string, string]{
    	{"", ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top