Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 2,006 for cluster0 (0.2 sec)

  1. releasenotes/notes/43436.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 43435
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 21 22:49:33 UTC 2023
    - 207 bytes
    - Viewed (0)
  2. pkg/cluster/debug.go

    // limitations under the License.
    
    package cluster
    
    // DebugInfo contains minimal information about remote clusters.
    // This struct is defined here, in a package that avoids many imports, since xds/debug usually
    // affects agent binary size. We avoid embedding other parts of a "remote cluster" struct like kube clients.
    type DebugInfo struct {
    	ID         ID     `json:"id"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 13 19:27:51 UTC 2021
    - 1007 bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/virtualservice_dupmatches.yaml

    kind: VirtualService
    metadata:
      name: sample-foo-cluster01
      namespace: foo
    spec:
      hosts:
      - sample.foo.svc.cluster.local
      http:
      - fault:
          delay:
            fixedDelay: 5s
            percentage:
              value: 100
        route:
        - destination:
            host: sample.foo.svc.cluster.local
      - mirror:
          host: sample.bar.svc.cluster.local
        route:
        - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  4. hack/e2e-internal/e2e-shrink-cluster.sh

    xichengliudui <******@****.***> 1550548203 -0500
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 19 03:50:03 UTC 2019
    - 962 bytes
    - Viewed (0)
  5. pkg/workloadapi/workload.proto

      // For k8s resources, it is recommended to use the more readable format:
      //
      // cluster/group/kind/namespace/name/section-name
      //
      // As an example, a ServiceEntry with two WorkloadEntries inlined could become
      // two Workloads with the following UIDs:
      // - cluster1/networking.istio.io/v1alpha3/ServiceEntry/default/external-svc/endpoint1
      // - cluster1/networking.istio.io/v1alpha3/ServiceEntry/default/external-svc/endpoint2
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_traffic_policy.go

    	}
    
    	return mesh.H2UpgradePolicy == meshconfig.MeshConfig_UPGRADE
    }
    
    func (cb *ClusterBuilder) applyDefaultConnectionPool(cluster *cluster.Cluster) {
    	cluster.ConnectTimeout = proto.Clone(cb.req.Push.Mesh.ConnectTimeout).(*durationpb.Duration)
    }
    
    func applyLoadBalancer(c *cluster.Cluster, lb *networking.LoadBalancerSettings, port *model.Port,
    	locality *core.Locality, proxyLabels map[string]string, meshConfig *meshconfig.MeshConfig,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  7. pkg/test/framework/components/istio/ingress.go

    		labelSelector: cfg.LabelSelector,
    		env:           ctx.Environment().(*kube.Environment),
    		cluster:       ctx.Clusters().GetOrDefault(cfg.Cluster),
    		caller:        common.NewCaller(),
    	}
    	return c
    }
    
    type ingressImpl struct {
    	service       types.NamespacedName
    	labelSelector string
    
    	env     *kube.Environment
    	cluster cluster.Cluster
    	caller  *common.Caller
    }
    
    func (c *ingressImpl) Close() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 17:13:34 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/device_compilation_profiler.cc

      // Determine eligibility assuming this is the first execution of the cluster
      // and this cluster has never been compiled before.
      auto [it, cluster_not_found] =
          cluster_compile_stats_.emplace(function.name(), ClusterCompileStats{});
      if (cluster_not_found) {
        RegisterExecutionForCluster(function, &it->second);
      }
    
      // We avoid compiling clusters that have "gone megamorphic" i.e. have an
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. tests/integration/pilot/analyze_test.go

    	t.Helper()
    	if err := t.Clusters().Default().ApplyYAMLFiles(ns, filename); err != nil {
    		t.Fatal(err)
    	}
    	t.Cleanup(func() {
    		_ = t.Clusters().Default().DeleteYAMLFiles(ns, filename)
    	})
    }
    
    func TestMultiCluster(t *testing.T) {
    	// nolint: staticcheck
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			if len(t.Environment().Clusters()) < 2 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/endpoint_builder_test.go

    				networkManager: &networkManager{
    					clusterID: c.ctl.cluster,
    					network:   c.ctl.network,
    				},
    				opts: Options{ClusterID: c.ctl.cluster},
    			}
    			eb := cc.NewEndpointBuilderFromMetadata(c.proxy)
    
    			assert.Equal(t, eb.labels, c.expected)
    		})
    	}
    }
    
    type testController struct {
    	locality string
    	cluster  cluster2.ID
    	network  network.ID
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top