Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 135 for 600s (0.04 sec)

  1. pkg/bootstrap/testdata/deferred_cluster_creation_golden.json

      },
      "layered_runtime": {
          "layers": [
              {
                "name": "global config",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. test/fixedbugs/issue29504.go

    		a /*line :999999:1*/ [ /*line :400:1*/ i] = 1
    	})
    	shouldPanic(func() {
    		var a [3]int
    		a /*line :999999:1*/ [ /*line :500:1*/ i] = 1
    	})
    	shouldPanic(func() {
    		var a []int
    		a /*line :999999:1*/ [ /*line :600:1*/ i] = 1
    	})
    
    	shouldPanic(func() {
    		var a [3]T
    		sinkT = a /*line :999999:1*/ [ /*line :700:1*/ i]
    	})
    	shouldPanic(func() {
    		var a []T
    		sinkT = a /*line :999999:1*/ [ /*line :800:1*/ i]
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 21:30:30 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/operator/output/operator-dump.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.4K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/go/scriptreadme_test.go

    	$ go test -run=Script
    	--- FAIL: TestScript (3.75s)
    	    --- FAIL: TestScript/install_rebuild_gopath (0.16s)
    	        script_test.go:223:
    	            # GOPATH with p1 in d2, p2 in d2 (0.000s)
    	            # build & install p1 (0.087s)
    	            # modify p2 - p1 should appear stale (0.029s)
    	            # build & install p1 again (0.022s)
    	            > go install -i p11
    	            [stderr]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/imagelocality/image_locality_test.go

    		},
    		{
    			// Pod: gcr.io/300 gcr.io/600 gcr.io/900
    
    			// Node1
    			// Image: gcr.io/600:latest 600MB, gcr.io/900:latest 900MB
    			// Score: 100 * (600M * 2/3 + 900M * 2/3 - 23M) / (1000M * 3 - 23M) = 32
    
    			// Node2
    			// Image: gcr.io/300:latest 300MB, gcr.io/600:latest 600MB, gcr.io/900:latest 900MB
    			// Score: 100 * (300M * 1/3 + 600M * 2/3 + 900M * 2/3 - 23M) / (1000M *3 - 23M) = 36
    
    			// Node3
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 06:17:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    				Obj(),
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node1").Capacity(map[v1.ResourceName]string{"cpu": "4000", "memory": "10000"}).Obj(),
    				st.MakeNode().Name("node2").Capacity(map[v1.ResourceName]string{"cpu": "6000", "memory": "10000"}).Obj(),
    			},
    			existingPods: []*v1.Pod{
    				st.MakePod().Node("node1").Req(map[v1.ResourceName]string{"cpu": "2000", "memory": "4000"}).Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  8. 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)
  9. tensorflow/compiler/mlir/lite/quantization/numerical_utils_test.cc

      // zero point = 0
      auto a =
          CalculateQuantizedRange(1e-6, 0, std::nullopt, std::nullopt, -128, 127);
      ASSERT_EQ(a.first, -128);
      ASSERT_EQ(a.second, 127);
    
      auto b = CalculateQuantizedRange(1e-6, 0, 0.0, std::nullopt, -128, 127);
      ASSERT_EQ(b.first, 0);
      ASSERT_EQ(b.second, 127);
    
      auto c = CalculateQuantizedRange(1e-6, 0, -1.0, 1.0, -128, 127);
      ASSERT_EQ(c.first, -128);
      ASSERT_EQ(c.second, 127);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 01:38:03 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. pkg/kubelet/util/pod_startup_latency_tracker_test.go

    kubelet_pod_start_sli_duration_seconds_bucket{le="300"} 1
    kubelet_pod_start_sli_duration_seconds_bucket{le="360"} 1
    kubelet_pod_start_sli_duration_seconds_bucket{le="480"} 1
    kubelet_pod_start_sli_duration_seconds_bucket{le="600"} 1
    kubelet_pod_start_sli_duration_seconds_bucket{le="900"} 1
    kubelet_pod_start_sli_duration_seconds_bucket{le="1200"} 1
    kubelet_pod_start_sli_duration_seconds_bucket{le="1800"} 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 06:09:49 UTC 2023
    - 13.7K bytes
    - Viewed (0)
Back to top