Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for othernamespace (0.27 sec)

  1. pkg/controller/volume/ephemeral/controller_test.go

    	ephemeralvolumemetrics "k8s.io/kubernetes/pkg/controller/volume/ephemeral/metrics"
    )
    
    var (
    	testPodName         = "test-pod"
    	testNamespace       = "my-namespace"
    	testPodUID          = types.UID("uidpod1")
    	otherNamespace      = "not-my-namespace"
    	ephemeralVolumeName = "ephemeral-volume"
    
    	testPod               = makePod(testPodName, testNamespace, testPodUID)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. pkg/registry/admissionregistration/validatingadmissionpolicybinding/authz_test.go

    							pr.Selector = &metav1.LabelSelector{
    								MatchLabels: map[string]string{
    									"changed": "value",
    								},
    							}
    						}
    
    						if len(pr.Namespace) > 0 {
    							pr.Namespace = "othernamespace"
    						}
    
    						if pr.ParameterNotFoundAction == nil || *pr.ParameterNotFoundAction == admissionregistration.AllowAction {
    							v := admissionregistration.DenyAction
    							pr.ParameterNotFoundAction = &v
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:09 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. pilot/pkg/xds/sds_test.go

    		VerifiedIdentity: &spiffe.Identity{Namespace: "istio-system"},
    		Type:             model.Router,
    		ConfigNamespace:  "istio-system",
    	}
    	otherNamespace := &model.Proxy{
    		Metadata:         &model.NodeMetadata{ClusterID: constants.DefaultClusterName},
    		VerifiedIdentity: &spiffe.Identity{Namespace: "other-namespace"},
    		Type:             model.Router,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  4. pkg/controller/resourceclaim/controller_test.go

    	"k8s.io/utils/pointer"
    )
    
    var (
    	testPodName          = "test-pod"
    	testNamespace        = "my-namespace"
    	testPodUID           = types.UID("uidpod1")
    	otherNamespace       = "not-my-namespace"
    	podResourceClaimName = "acme-resource"
    	templateName         = "my-template"
    	className            = "my-resource-class"
    	nodeName             = "worker"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 08:56:16 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    			Kind:       "ConfigMap",
    		},
    		ObjectMeta: metav1.ObjectMeta{
    			Name:            "replicas-test.example.com",
    			Namespace:       "othernamespace",
    			ResourceVersion: "1",
    		},
    		Data: map[string]string{
    			"coolkey": "othernamespace",
    		},
    	}
    	require.NoError(t, testContext.UpdateAndWait(&nativeTypeParamPolicy, &namespaceParamBinding, configMapParam, configMapParam2, configMapParam3))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  6. pilot/pkg/model/telemetry_logging_test.go

    			assert.Equal(t, tt.excepted, got)
    		})
    	}
    }
    
    func TestAccessLoggingCache(t *testing.T) {
    	sidecar := &Proxy{ConfigNamespace: "default", Metadata: &NodeMetadata{Labels: map[string]string{"app": "test"}}}
    	otherNamespace := &Proxy{ConfigNamespace: "common", Metadata: &NodeMetadata{Labels: map[string]string{"app": "test"}}}
    	cfgs := &tpb.Telemetry{
    		AccessLogging: []*tpb.AccessLogging{
    			{
    				Providers: []*tpb.ProviderRef{
    					{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/context.go

    		svc, f := gc.ps.ServiceIndex.HostnameAndNamespace[host.Name(g)][namespace]
    		if !f {
    			otherNamespaces := []string{}
    			for ns := range gc.ps.ServiceIndex.HostnameAndNamespace[host.Name(g)] {
    				otherNamespaces = append(otherNamespaces, `"`+ns+`"`) // Wrap in quotes for output
    			}
    			if len(otherNamespaces) > 0 {
    				sort.Strings(otherNamespaces)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 18:33:02 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                        state = State.DESCRIPTION;
                        buffer = new StringBuffer();
                    } else if (state == State.INFO && isOtherNamespace(qName)) {
                        buffer = new StringBuffer();
                        state = State.EXTRA_INFO;
                    } else if ("configurations".equals(qName)) {
                        configurationStarted(attributes);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
Back to top