Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 800 for cluster1 (0.12 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/fixtures/server.go

    	if err != nil {
    		return nil, servertesting.TestServer{}, err
    	}
    	fakeKubeConfig.WriteString(`
    apiVersion: v1
    kind: Config
    clusters:
    - cluster:
        server: http://127.1.2.3:12345
      name: integration
    contexts:
    - context:
        cluster: integration
        user: test
      name: default-context
    current-context: default-context
    users:
    - name: test
      user:
        password: test
        username: test
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. docs/bucket/lifecycle/README.md

    }
    ```
    
    ## 4. Enable ILM transition feature
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Aug 26 07:33:25 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. hack/testdata/CRD/example-crd-1-cluster-scoped-resource.yaml

    Arda Güçlü <******@****.***> 1640076789 +0300
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 26 06:01:46 UTC 2022
    - 80 bytes
    - Viewed (0)
  4. tests/integration/pilot/testdata/mcs-serviceimport-crd.yaml

                        to a specific source cluster
                      type: object
                      required:
                      - cluster
                      properties:
                        cluster:
                          description: cluster is the name of the exporting cluster. Must
                            be a valid RFC-1123 DNS label.
                          type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 00:51:29 UTC 2021
    - 7K bytes
    - Viewed (0)
  5. tests/integration/pilot/cni/cniversionskew_test.go

    			if !i.Settings().EnableCNI {
    				t.Skip("CNI version skew test is only tested when CNI is enabled.")
    			}
    			for _, v := range versions {
    				installCNIOrFail(t, v)
    				podFetchFn := kube.NewSinglePodFetch(t.Clusters().Default(), i.Settings().SystemNamespace, "k8s-app=istio-cni-node")
    				// Make sure CNI pod is using image with applied version.
    				retry.UntilSuccessOrFail(t, func() error {
    					pods, err := podFetchFn()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 22:56:37 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_activity.proto

        int32 count = 2;
      }
    
      // Describes a single XLA cluster.
      //
      // Next ID: 4
      message Cluster {
        string name = 1;
    
        // The number of nodes in the cluster.
        int32 size = 2;
    
        // A histogram of the TF operations in this cluster.
        repeated OpAndCount op_histogram = 3;
      }
    
      // The number of nodes in the graph that are not inside an XLA cluster.
      int32 unclustered_node_count = 1;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 15 03:11:33 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  7. docs/distributed/DESIGN.md

    RD/REDUCED_REDUNDANCY` for each object uploads so effectively utilizing the capacity of the cluster. Additionally these can also be enforced using IAM policies to make sure the client uploads with correct HTTP headers.
    
    - MinIO also supports expansion of existing clusters in server pools. Each pool is a self contained entity with same SLA's (read/write quorum) for each object as original cluster. By using the existing namespace for lookup validation MinIO ensures conflicting objects are...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 8K bytes
    - Viewed (0)
  8. tests/integration/pilot/multicluster_test.go

    		Run(func(t framework.TestContext) {
    			if len(t.Clusters().Primaries()) == 0 {
    				t.Skip("no primary cluster in framework (most likely only remote-config)")
    			}
    
    			// we don't need to test this per-cluster
    			primary := t.Clusters().Primaries()[0]
    			// it doesn't matter if the other cluster is a primary/remote/etc.
    			remote := t.Clusters().Exclude(primary)[0]
    
    			var (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/audit_test.go

    			assert.NotEmpty(t, options.Validate(), "Options should be invalid.")
    		})
    	}
    }
    
    func makeTmpWebhookConfig(t *testing.T) string {
    	config := v1.Config{
    		Clusters: []v1.NamedCluster{
    			{Cluster: v1.Cluster{Server: "localhost", InsecureSkipTLSVerify: true}},
    		},
    	}
    	f, err := ioutil.TempFile("", "k8s_audit_webhook_test_")
    	require.NoError(t, err, "creating temp file")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 27 14:57:26 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  10. istioctl/pkg/writer/compare/comparator_test.go

    	if err != nil {
    		t.Fatalf("Failed to create Comparator: %v", err)
    	}
    	err = comparator.Diff()
    	if err != nil {
    		t.Errorf("Unexpected error during diff: %v", err)
    	}
    
    	expected := []string{"Clusters Match", "Listeners Match", "Routes Match"}
    	for _, exp := range expected {
    		if !bytes.Contains(outputBuffer.Bytes(), []byte(exp)) {
    			t.Errorf("Expected %s, but it was not found", exp)
    		}
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top