Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for nsA (0.02 sec)

  1. pkg/client/tests/fake_client_test.go

    			t.Fatalf("Expected namespace %q; got %q", "nsA", sa.Namespace)
    		}
    	}
    
    	pod1, err := tc.CoreV1().Pods("nsA").Get(context.TODO(), "pod-1", metav1.GetOptions{})
    	if err != nil {
    		t.Fatalf("Pods.Get: %s", err)
    	}
    	if pod1 == nil {
    		t.Fatalf("Expected to find pod nsA/pod-1 but it wasn't found")
    	}
    	if pod1.Namespace != "nsA" || pod1.Name != "pod-1" {
    		t.Fatalf("Expected to find pod nsA/pod-1t, got %s/%s", pod1.Namespace, pod1.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 08 17:30:21 UTC 2020
    - 5.6K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/namespacecontroller_test.go

    	}
    
    	nsA := "nsA"
    	nsB := "nsB"
    
    	// Create a namespace with discovery selector enabled
    	createNamespace(t, client.Kube(), nsA, map[string]string{"discovery-selectors": "enabled"})
    	// Create a namespace without discovery selector enabled
    	createNamespace(t, client.Kube(), nsB, map[string]string{})
    	expectConfigMap(t, nc.configmaps, CACertNamespaceConfigMap, nsA, expectedData)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/endpointslice_test.go

    	"istio.io/istio/pilot/pkg/serviceregistry/kube"
    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/test/util/assert"
    )
    
    func TestEndpointSliceFromMCSShouldBeIgnored(t *testing.T) {
    	const (
    		ns      = "nsa"
    		svcName = "svc1"
    		appName = "prod-app"
    	)
    
    	controller, fx := NewFakeControllerWithOptions(t, FakeControllerOptions{})
    
    	node := generateNode("node1", map[string]string{
    		NodeZoneLabel:              "zone1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. pkg/volume/nfs/nfs_test.go

    			},
    			ClaimRef: &v1.ObjectReference{
    				Name: "claimA",
    			},
    		},
    	}
    
    	claim := &v1.PersistentVolumeClaim{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "claimA",
    			Namespace: "nsA",
    		},
    		Spec: v1.PersistentVolumeClaimSpec{
    			VolumeName: "pvA",
    		},
    		Status: v1.PersistentVolumeClaimStatus{
    			Phase: v1.ClaimBound,
    		},
    	}
    
    	client := fake.NewSimpleClientset(pv, claim)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 9K bytes
    - Viewed (0)
  5. src/runtime/sys_netbsd_arm64.s

    	MOVD	g, R0
    	SVC	$SYS_setcontext
    	MOVD	$0, R0
    	MOVD	R0, (R0)		// crash
    
    TEXT runtime·sigaction(SB),NOSPLIT,$-8
    	MOVW	sig+0(FP), R0		// arg 1 - signum
    	MOVD	new+8(FP), R1		// arg 2 - nsa
    	MOVD	old+16(FP), R2		// arg 3 - osa
    					// arg 4 - tramp
    	MOVD	$sigreturn_tramp<>(SB), R3
    	MOVW	$2, R4			// arg 5 - vers
    	SVC	$SYS___sigaction_sigtramp
    	BCS	fail
    	RET
    fail:
    	MOVD	$0, R0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top