Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 102 for nameslice (0.24 sec)

  1. pkg/config/validation/validation.go

    			if visibility.Instance(e) == visibility.Private {
    				// substitute this with the current namespace so that we
    				// can check for duplicates like ., namespace
    				key = namespace
    			}
    			if exportToSet.Contains(key) {
    				if key != e {
    					errs = appendErrors(errs, fmt.Errorf("duplicate entries in exportTo: . and current namespace %s", namespace))
    				} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  2. tests/integration/pilot/common/routing.go

    			fmt.Sprintf("%s:%d", cfg.ClusterLocalFQDN(), port),
    			fmt.Sprintf("%s:12345", cfg.ClusterLocalFQDN()),
    			fmt.Sprintf("%s.%s.svc", cfg.Service, cfg.Namespace.Name()),
    			fmt.Sprintf("%s.%s.svc:%d", cfg.Service, cfg.Namespace.Name(), port),
    			fmt.Sprintf("%s.%s.svc:12345", cfg.Service, cfg.Namespace.Name()),
    			cfg.Service,
    			fmt.Sprintf("%s:%d", cfg.Service, port),
    			fmt.Sprintf("%s:12345", cfg.Service),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    #include "tensorflow/compiler/mlir/tensorflow/utils/dynamic_shape_utils.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/side_effect_analysis_util.h"
    
    namespace mlir {
    namespace TF {
    
    namespace {
    // Returns the equivalent Value skipping through identity nodes.
    Value LookThroughIdentity(Value result) {
      while (isa_and_nonnull<IdentityOp, IdentityNOp>(result.getDefiningOp())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  4. pkg/controller/podautoscaler/horizontal_test.go

    			tc.Lock()
    			defer tc.Unlock()
    
    			obj := action.(core.UpdateAction).GetObject().(*autoscalingv2.HorizontalPodAutoscaler)
    			assert.Equal(t, namespace, obj.Namespace, "the HPA namespace should be as expected")
    			assert.Equal(t, hpaName, obj.Name, "the HPA name should be as expected")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    		// namespace, if enableServiceLinks is true.
    		if service.Namespace == metav1.NamespaceDefault && masterServices.Has(serviceName) {
    			if _, exists := serviceMap[serviceName]; !exists {
    				serviceMap[serviceName] = service
    			}
    		} else if service.Namespace == ns && enableServiceLinks {
    			serviceMap[serviceName] = service
    		}
    	}
    
    	mappedServices := []*v1.Service{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_types.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/dynamic_shape_utils.h"
    #include "tensorflow/core/framework/kernel_shape_util.h"
    
    namespace mlir {
    namespace TFL {
    
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(CeilOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(CosOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(LocalResponseNormalizationOp);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  7. pkg/apis/admissionregistration/validation/validation_test.go

    			Name: "webhook.k8s.io",
    			ClientConfig: admissionregistration.WebhookClientConfig{
    				Service: &admissionregistration.ServiceReference{
    					Namespace: "ns",
    					Name:      "n",
    					Port:      443,
    				},
    				URL: strPtr("example.com/k8s/webhook"),
    			},
    		},
    		}, true),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    #include "tensorflow/core/platform/status.h"
    #include "tensorflow/core/util/padding.h"
    #include "tensorflow/core/util/tensor_format.h"
    
    namespace mlir {
    namespace TF {
    
    namespace {
    #include "tensorflow/compiler/mlir/tensorflow/transforms/generated_canonicalize.inc"
    }  // namespace
    
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(AbsOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(AcosOp);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  9. pkg/kubelet/eviction/helpers_test.go

    // newPodStats returns a pod stat where each container is using the specified working set
    // each pod must have a Name, UID, Namespace
    func newPodStats(pod *v1.Pod, podWorkingSetBytes uint64) statsapi.PodStats {
    	return statsapi.PodStats{
    		PodRef: statsapi.PodReference{
    			Name:      pod.Name,
    			Namespace: pod.Namespace,
    			UID:       string(pod.UID),
    		},
    		Memory: &statsapi.MemoryStats{
    			WorkingSetBytes: &podWorkingSetBytes,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  10. pkg/printers/internalversion/printers_test.go

    	}
    }
    
    func TestPrintNamespace(t *testing.T) {
    	tests := []struct {
    		namespace api.Namespace
    		expected  []metav1.TableRow
    	}{
    		// Basic namespace with status and age.
    		{
    			namespace: api.Namespace{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "namespace1",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
Back to top