Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 5,965 for nameslice (0.19 sec)

  1. pilot/pkg/config/kube/ingress/controller_test.go

    	vs := wait()
    	if vs.Name != ingress1.Name+"-"+"virtualservice" || vs.Namespace != ingress1.Namespace {
    		t.Errorf("received unecpected config %v/%v", vs.Namespace, vs.Name)
    	}
    	ingress.Update(&ingress2)
    	vs = wait()
    	if vs.Name != ingress1.Name+"-"+"virtualservice" || vs.Namespace != ingress1.Namespace {
    		t.Errorf("received unecpected config %v/%v", vs.Namespace, vs.Name)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 18:34:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  2. pkg/controller/endpoint/endpoints_controller_test.go

    			}
    			if epa.TargetRef.Kind != "Pod" {
    				t.Fatalf("TargetRef.Kind: expected: %s, got: %s", "Pod", epa.TargetRef.Kind)
    			}
    			if epa.TargetRef.Namespace != pod.ObjectMeta.Namespace {
    				t.Fatalf("TargetRef.Namespace: expected: %s, got: %s", pod.ObjectMeta.Namespace, epa.TargetRef.Namespace)
    			}
    			if epa.TargetRef.Name != pod.ObjectMeta.Name {
    				t.Fatalf("TargetRef.Name: expected: %s, got: %s", pod.ObjectMeta.Name, epa.TargetRef.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/resource_access_test.go

    			for _, q := range quotas {
    				if q.Namespace != testNamespace2 {
    					t.Errorf("Expected %s namespace, got %s", testNamespace2, q.Namespace)
    				}
    			}
    		}()
    	}
    
    	// and here we wait for all the goroutines
    	wg.Wait()
    	// since all the calls with the same namespace will be held, they must
    	// be caught on the singleflight group. there are two different sets of
    	// namespace calls hence only 2.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 13:54:56 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/common/deployment/echos.go

    		c.Namespaces = make([]namespace.Getter, c.NamespaceCount)
    		if c.NamespaceCount == 1 {
    			// If only using a single namespace, preserve the "echo" prefix.
    			g.Go(func() error {
    				ns, err := namespace.New(ctx, namespace.Config{
    					Inject: !ctx.Settings().AmbientEverywhere,
    					Prefix: "echo",
    					Labels: nsLabels,
    				})
    				if err != nil {
    					return err
    				}
    				c.Namespaces[0] = namespace.Future(&ns)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. pkg/registry/rbac/validation/rule_test.go

    			namespace: "namespace1",
    			appliesTo: true,
    			index:     1,
    			testCase:  "multiple subjects, one that match group, should ignore namespace",
    		},
    		{
    			subjects: []rbacv1.Subject{
    				{Kind: rbacv1.UserKind, Name: "barfoo"},
    				{Kind: rbacv1.GroupKind, Name: "foobar"},
    				{Kind: rbacv1.ServiceAccountKind, Namespace: "kube-system", Name: "default"},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. pilot/pkg/credentials/kube/multicluster.go

    }
    
    func (a *AggregateController) Authorize(serviceAccount, namespace string) error {
    	return a.authController.Authorize(serviceAccount, namespace)
    }
    
    func (a *AggregateController) AddEventHandler(f func(name string, namespace string)) {
    	// no ops
    }
    
    func (a *AggregateController) GetDockerCredential(name, namespace string) ([]byte, error) {
    	// Search through all clusters, find first non-empty result
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/gradients/grad_test_helper.h

    #define TENSORFLOW_C_EXPERIMENTAL_GRADIENTS_GRAD_TEST_HELPER_H_
    
    #include "tensorflow/c/eager/gradients.h"
    #include "tensorflow/c/eager/unified_api_testutil.h"
    
    namespace tensorflow {
    namespace gradients {
    namespace internal {
    
    void CompareNumericalAndAutodiffGradients(
        Model model, Model grad_model, AbstractContext* ctx,
        absl::Span<AbstractTensorHandle* const> inputs, bool use_function,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 14 20:36:51 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/ops/gen/cpp/renderers/op_implementation_renderer.h

    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/renderer_context.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/views/op_view.h"
    
    namespace tensorflow {
    namespace generator {
    namespace cpp {
    
    class OpImplementationRenderer : public Renderer {
     public:
      explicit OpImplementationRenderer(RendererContext context, OpView op);
      void Render();
    
     private:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. tensorflow/c/eager/graph_function.cc

    #include <utility>
    
    #include "tensorflow/c/eager/abstract_function.h"
    #include "tensorflow/core/framework/function.h"
    #include "tensorflow/core/platform/status.h"
    
    namespace tensorflow {
    namespace tracing {
    namespace graph {
    GraphFunction::GraphFunction(FunctionDef fdef)
        : AbstractFunction(kGraph),
          func_record_(new FunctionRecord(std::move(fdef), {}, true)) {}
    GraphFunction::~GraphFunction() {}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 04 19:49:06 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/logging_hooks.h

    #define TENSORFLOW_COMPILER_MLIR_TF2XLA_INTERNAL_LOGGING_HOOKS_H_
    
    #include <string>
    
    #include "llvm/ADT/StringRef.h"
    #include "mlir/Pass/PassManager.h"  // from @llvm-project
    
    namespace tensorflow {
    namespace tf2xla {
    namespace internal {
    
    // Setup the input pass manager to enable IR dumping after each pass.
    // Note a side effect of this method is that multi threading will be disabled.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 14:26:22 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top