Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 168 for 10$ (0.04 sec)

  1. pkg/kube/inject/testdata/inputs/hello.yaml.10.template.gen.yaml

                image: "{{ .ProxyImage }}"
              {{- end }}
                {{- if .Values.global.proxy.resources }}
                resources:
                  {{- toYaml .Values.global.proxy.resources | nindent 10 }}
                {{- end }}
                {{with .Values.global.imagePullPolicy }}imagePullPolicy: "{{.}}"{{end}}
                securityContext:
                  capabilities:
                    drop:
                    - ALL
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/options/options_test.go

    	"--concurrent-deployment-syncs=10",
    	"--concurrent-horizontal-pod-autoscaler-syncs=10",
    	"--concurrent-statefulset-syncs=15",
    	"--concurrent-endpoint-syncs=10",
    	"--concurrent-ephemeralvolume-syncs=10",
    	"--concurrent-service-endpoint-syncs=10",
    	"--concurrent-gc-syncs=30",
    	"--concurrent-namespace-syncs=20",
    	"--concurrent-job-syncs=10",
    	"--concurrent-cron-job-syncs=10",
    	"--concurrent-replicaset-syncs=10",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            buildFile """
                gradle.sharedServices.registerIfAbsent("counter1", CountingService) {
                    parameters.initial = 10
                    maxParallelUsages = 1
                }
                gradle.sharedServices.registerIfAbsent("counter2", CountingService) {
                    parameters.initial = 10
                    maxParallelUsages = 1
                }
    
                task ambiguous(type: Consumer) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    						{
    							Rule:    "size(self.__namespace__[0]) == 10",
    							Message: "size of first element in nestedObj should be equal to 10",
    						},
    						{
    							Rule: "self.__if__ == 10",
    						},
    						{
    							Rule: "self.self == 10",
    						},
    					},
    				},
    			},
    			expectedResults: []validationMatcher{
    				noError(),
    				noError(),
    				noError(),
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

        input_data = ops.convert_to_tensor(
            rng.uniform(low=0.0, high=1.0, size=static_input_shape).astype(
                np.float32
            )
        )
    
        def data_gen() -> repr_dataset.RepresentativeDataset:
          for _ in range(100):
            yield {
                'input_tensor': rng.uniform(
                    low=0.0, high=1.0, size=static_input_shape
                ).astype(np.float32)
            }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  6. docs/metrics/prometheus/grafana/replication/minio-replication-node.json

                "axisColorMode": "text",
                "axisLabel": "",
                "axisPlacement": "auto",
                "barAlignment": 0,
                "drawStyle": "line",
                "fillOpacity": 10,
                "gradientMode": "none",
                "hideFrom": {
                  "legend": false,
                  "tooltip": false,
                  "viz": false
                },
                "insertNulls": false,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    				newResourcePod(framework.Resource{MilliCPU: 10, Memory: 20})),
    			name:                      "no resources requested always fits",
    			wantInsufficientResources: []InsufficientResource{},
    		},
    		{
    			pod: newResourcePod(framework.Resource{MilliCPU: 1, Memory: 1}),
    			nodeInfo: framework.NewNodeInfo(
    				newResourcePod(framework.Resource{MilliCPU: 10, Memory: 20})),
    			name:       "too many resources fails",
    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. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		out float64
    	}{
    		{decQuantity(0, 0, DecimalSI), 0.0},
    		{decQuantity(0, 0, DecimalExponent), 0.0},
    		{decQuantity(0, 0, BinarySI), 0.0},
    
    		{decQuantity(1, 0, DecimalSI), 1},
    		{decQuantity(1, 0, DecimalExponent), 1},
    		{decQuantity(1, 0, BinarySI), 1},
    
    		// Binary suffixes
    		{decQuantity(1024, 0, BinarySI), 1024},
    		{decQuantity(8*1024, 0, BinarySI), 8 * 1024},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  9. src/math/big/int_test.go

    	if err := quick.Check(checkQuo, nil); err != nil {
    		t.Error(err)
    	}
    
    	for i, test := range quoTests {
    		x, _ := new(Int).SetString(test.x, 10)
    		y, _ := new(Int).SetString(test.y, 10)
    		expectedQ, _ := new(Int).SetString(test.q, 10)
    		expectedR, _ := new(Int).SetString(test.r, 10)
    
    		r := new(Int)
    		q, r := new(Int).QuoRem(x, y, r)
    
    		if q.Cmp(expectedQ) != 0 || r.Cmp(expectedR) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    	return &testKMSv2EnvelopeService{nil, "1", 0, nil}, nil
    }
    
    // The factory method to create mock envelope kmsv2 service which always returns error.
    func newMockErrorEnvelopeKMSv2Service(endpoint string, timeout time.Duration) (kmsservice.Service, error) {
    	return &testKMSv2EnvelopeService{errors.New("test"), "1", 0, nil}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
Back to top