Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 44 for 3h0m0s (0.09 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/duration_test.go

    	cases := []struct {
    		input  Duration
    		result string
    	}{
    		{Duration{5 * time.Second}, "d: 5s\n"},
    		{Duration{2 * time.Minute}, "d: 2m0s\n"},
    		{Duration{time.Hour + 3*time.Millisecond}, "d: 1h0m0.003s\n"},
    	}
    
    	for _, c := range cases {
    		input := DurationHolder{c.input}
    		result, err := yaml.Marshal(&input)
    		if err != nil {
    			t.Errorf("Failed to marshal input: %q: %v", input, err)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 07 18:17:32 UTC 2018
    - 4.1K bytes
    - Viewed (0)
  2. cmd/kube-proxy/app/server_linux_test.go

      kubeconfig: /var/lib/kube-proxy/kubeconfig.conf
      qps: 5
    clusterCIDR: 10.244.0.0/16
    configSyncPeriod: 15m0s
    conntrack:
      maxPerCore: 32768
      min: 131072
      tcpCloseWaitTimeout: 1h0m0s
      tcpEstablishedTimeout: 24h0m0s
    enableProfiling: false
    healthzBindAddress: 0.0.0.0:10256
    hostnameOverride: ""
    iptables:
      masqueradeAll: false
      masqueradeBit: 14
      minSyncPeriod: 0s
      syncPeriod: 30s
    ipvs:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/report/TestResultModelTest.groovy

            expect:
            test(60000).formattedDuration == '1m0.00s'
            test(72301).formattedDuration == '1m12.30s'
            test(72305).formattedDuration == '1m12.31s'
            test(60 * 60 * 1000).formattedDuration == '1h0m0.00s'
            test(24 * 60 * 60 * 1000).formattedDuration == '1d0h0m0.00s'
        }
    
        def test(long duration) {
            return new TestResult('test', duration, null)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. releasenotes/notes/30181.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: networking
    issue:
      - 30181
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 04 02:18:31 UTC 2021
    - 193 bytes
    - Viewed (0)
  5. samples/ambient-argo/meta-application.yaml

          include: application.yaml
      project: default
      syncPolicy:
        automated:
          prune: true
          selfHeal: true
        retry:
          limit: 2
          backoff:
            duration: 5s
            maxDuration: 3m0s
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 630 bytes
    - Viewed (0)
  6. tests/testdata/config/rule-default-route-cors-policy.yaml

            allowMethods:
              - POST
              - GET
              - OPTIONS
            allowHeaders:
              - content-type
            exposeHeaders:
              - x-custom-header
            maxAge: 300s
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 01 00:53:22 UTC 2020
    - 827 bytes
    - Viewed (0)
  7. plugin/pkg/admission/defaulttolerationseconds/admission.go

    	})
    }
    
    // Plugin contains the client used by the admission controller
    // It will add default tolerations for every pod
    // that tolerate taints `notReady:NoExecute` and `unreachable:NoExecute`,
    // with tolerationSeconds of 300s.
    // If the pod already specifies a toleration for taint `notReady:NoExecute`
    // or `unreachable:NoExecute`, the plugin won't touch it.
    type Plugin struct {
    	*admission.Handler
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 06 04:56:21 UTC 2019
    - 4K bytes
    - Viewed (0)
  8. docs/bucket/replication/setup_2site_existing_replication.sh

    remote_arn=$(./mc replicate ls sitea/bucket --json | jq -r .rule.Destination.Bucket)
    sleep 1
    
    ./mc replicate resync start sitea/bucket/ --remote-bucket "${remote_arn}"
    sleep 30s ## sleep for 30s idea is that we give 300ms per object.
    
    ./mc ls -r --versions sitea/bucket >/tmp/sitea.txt
    ./mc ls -r --versions siteb/bucket >/tmp/siteb.txt
    
    out=$(diff -qpruN /tmp/sitea.txt /tmp/siteb.txt)
    ret=$?
    if [ $ret -ne 0 ]; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/operator/output/operator-init.yaml

                    fieldRef:
                      fieldPath: metadata.name
                - name: OPERATOR_NAME
                  value: "operator-test-namespace"
                - name: WAIT_FOR_RESOURCES_TIMEOUT
                  value: "300s"
                - name: REVISION
                  value: ""
    ---
    apiVersion: v1
    kind: Service
    metadata:
      namespace: operator-test-namespace
      labels:
        name: istio-operator
      name: istio-operator
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. docs/config/README.md

    Example: The following settings will increase the heal operation speed by allowing healing operation to run without delay up to `100` concurrent requests, and the maximum delay between each heal operation is set to `300ms`.
    
    ```sh
    ~ mc admin config set alias/ heal max_sleep=300ms max_io=100
    ```
    
    Once set the healer settings are automatically applied without the need for server restarts.
    
    ## Environment only settings (not in config)
    
    ### Browser
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 11 21:48:54 UTC 2023
    - 17.7K bytes
    - Viewed (0)
Back to top