Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 800 for cluster1 (0.12 sec)

  1. prow/integ-suite-kind.sh

      if [[ "${TOPOLOGY}" == "SINGLE_CLUSTER" ]]; then
        trace "setup kind cluster" setup_kind_cluster_retry "istio-testing" "${NODE_IMAGE}" "${KIND_CONFIG}"
      else
        trace "load cluster topology" load_cluster_topology "${CLUSTER_TOPOLOGY_CONFIG_FILE}"
        trace "setup kind clusters" setup_kind_clusters "${NODE_IMAGE}" "${IP_FAMILY}"
    
        TOPOLOGY_JSON=$(cat "${CLUSTER_TOPOLOGY_CONFIG_FILE}")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 05:42:41 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/tests/keras_imagenet_main.golden_summary

    Clustered nodes: 2725
    Unclustered nodes: 606
    Number of clusters: 2
    
    unclustered size 606
     AssignAddVariableOp 1
     Const 108
     DivNoNan 1
     Identity 2
     Merge 53
     PlaceholderWithDefault 1
     ReadVariableOp 2
     Switch 1
     _Arg 435
     _Retval 2
    cluster 0 size 1910
     Add 16
     AddN 71
     ArgMax 1
     AssignAddVariableOp 1
     BiasAdd 1
     BiasAddGrad 1
     Cast 115
     Const 407
     Conv2D 53
     Conv2DBackpropFilter 53
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 06 10:38:14 UTC 2023
    - 874 bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/certs/renewal/readwriter.go

    	}
    
    	// get cluster info for current context and ensure a server certificate is embedded in it
    	clusterName := kubeConfig.Contexts[kubeConfig.CurrentContext].Cluster
    	if _, ok := kubeConfig.Clusters[clusterName]; !ok {
    		return nil, errors.Errorf("invalid kubeConfig file %s: missing cluster %s", rw.kubeConfigFilePath, clusterName)
    	}
    
    	cluster := kubeConfig.Clusters[clusterName]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 01 03:09:53 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. tensorflow/compiler/mlir/tfrt/tests/runtime_lowering_tpu.mlir

        "tf_device.cluster_func"() {_xla_compile_device_type = "TPU", _replication_info = "cluster0", func = @empty_func, num_cores_per_replica = 1, step_marker_location = "", topology = "", device_assignment = [], input_sharding_configuration = [], output_sharding_configuration = [], use_spmd_for_xla_partitioning = false} : () -> ()
        func.return
      }
      func.func @empty_func() {
        func.return
      }
    
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. tests/integration/pilot/webhook_test.go

    			webhooks := []string{vwcName, "istiod-default-validator"}
    
    			// clear the updated fields and verify istiod updates them
    			cluster := t.Clusters().Default()
    			for _, vwcName := range webhooks {
    				retry.UntilSuccessOrFail(t, func() error {
    					got, err := getValidatingWebhookConfiguration(cluster.Kube(), vwcName)
    					if err != nil {
    						return fmt.Errorf("error getting initial webhook: %v", err)
    					}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 01 13:31:34 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. pilot/pkg/model/addressmap.go

    		Addresses: m.GetAddresses(),
    	}
    }
    
    // GetAddresses returns the mapping of clusters to addresses.
    func (m *AddressMap) GetAddresses() map[cluster.ID][]string {
    	if m == nil {
    		return nil
    	}
    
    	m.mutex.RLock()
    	defer m.mutex.RUnlock()
    
    	if m.Addresses == nil {
    		return nil
    	}
    
    	out := make(map[cluster.ID][]string)
    	for k, v := range m.Addresses {
    		if v == nil {
    			out[k] = nil
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 06 14:34:57 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. releasenotes/notes/35068.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
    - 35068
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 08 18:38:56 UTC 2021
    - 184 bytes
    - Viewed (0)
Back to top