Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,910 for nvalid (0.21 sec)

  1. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/jsonpath_flags_test.go

    			expectedOutput: "foo",
    		},
    		{
    			name:               "valid output format and invalid --template argument results in a parsing from the printer",
    			outputFormat:       "jsonpath",
    			templateArg:        "{invalid}",
    			expectedParseError: "unrecognized identifier invalid",
    		},
    		{
    			name:          "no printer is matched on an invalid outputFormat",
    			outputFormat:  "invalid",
    			expectNoMatch: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 09:47:52 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/misannotated.yaml

        # no such Istio annotation
        networking.istio.io/exportThree: bar
        # Valid Istio annotation
        networking.istio.io/exportTo: baz
    spec:
      ports:
      - name: http
        port: 8000
        targetPort: 80
      selector:
        app: httpbin
    ---
    # K8s object with invalid Istio annotations
    apiVersion: v1
    kind: Pod
    metadata:
      name: invalid-annotations
      annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 21:10:07 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/authorizationpolicies.yaml

    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: meshwide-httpbin
      namespace: istio-system # valid: it applies to whole mesh
    spec:
      {}
    ---
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: meshwide-httpbin-v1
      namespace: istio-system # invalid: no pods running anywhere in the mesh
    spec:
      selector:
        matchLabels:
          version: bogus-version
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 08 14:14:46 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  4. pkg/registry/storage/csinode/storage/storage_test.go

    	csiNode.ObjectMeta = metav1.ObjectMeta{GenerateName: "foo"}
    	test.TestCreate(
    		// valid
    		csiNode,
    		// invalid
    		&storageapi.CSINode{
    			ObjectMeta: metav1.ObjectMeta{Name: "*BadName!"},
    			Spec: storageapi.CSINodeSpec{
    				Drivers: []storageapi.CSINodeDriver{
    					{
    						Name:         "invalid-name-!@#$%^&*()",
    						NodeID:       "invalid-node-!@#$%^&*()",
    						TopologyKeys: []string{"company.com/zone1", "company.com/zone2"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 12 20:55:35 UTC 2019
    - 4.4K bytes
    - Viewed (0)
  5. internal/crypto/sse_test.go

    			"X-Minio-Internal-Server-Side-Encryption-Iv":             "coVfGS3I/CTrqexX5vUN+PQPoP9aUFiPYYrSzqTWfBA=",
    		},
    		ExpectedErr: nil,
    	},
    	{ // 1 - Valid HTTP headers but invalid metadata entries for bucket/object2
    		Headers: http.Header{
    			"X-Amz-Server-Side-Encryption-Customer-Algorithm": []string{"AES256"},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  6. src/internal/types/testdata/fixedbugs/issue49043.go

    package p
    
    // The example from the issue.
    type (
    	N[P any] M /* ERROR "invalid recursive type" */ [P]
    	M[P any] N[P]
    )
    
    // A slightly more complicated case.
    type (
    	A[P any] B /* ERROR "invalid recursive type" */ [P]
    	B[P any] C[P]
    	C[P any] A[P]
    )
    
    // Confusing but valid (note that `type T *T` is valid).
    type (
    	N1[P any] *M1[P]
    	M1[P any] *N1[P]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 512 bytes
    - Viewed (0)
  7. cni/test/install_k8s_test.go

    		},
    		{
    			name:                   "Skip invalid .conf file for first valid .conf file",
    			chainedCNIPlugin:       true,
    			resultFileName:         "01-minikube_cni.conflist",
    			expectedOutputFile:     testDataDir + "/expected/minikube_cni.conflist.expected",
    			expectedPostCleanFile:  testDataDir + "/expected/minikube_cni.conflist.clean",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 27 18:01:48 UTC 2022
    - 8K bytes
    - Viewed (0)
  8. src/crypto/internal/edwards25519/edwards25519_test.go

    }
    
    func TestInvalidEncodings(t *testing.T) {
    	// An invalid point, that also happens to have y > p.
    	invalid := "efffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7f"
    	p := NewGeneratorPoint()
    	if out, err := p.SetBytes(decodeHex(invalid)); err == nil {
    		t.Error("expected error for invalid point")
    	} else if out != nil {
    		t.Error("SetBytes did not return nil on an invalid encoding")
    	} else if p.Equal(B) != 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 18:45:00 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/template_flags_test.go

    			outputFormat:   "go-template",
    			templateArg:    "invalid",
    			expectedOutput: "invalid",
    		},
    		{
    			name:          "no printer is matched on an invalid outputFormat",
    			outputFormat:  "invalid",
    			expectNoMatch: true,
    		},
    		{
    			name:          "go-template printer should not match on any other format supported by another printer",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 09:47:52 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/generic/testing/tester.go

    		valid,
    		t.createObject,
    		t.getObject,
    		expectedGrace,
    	)
    }
    
    func (t *Tester) TestGet(valid runtime.Object) {
    	t.tester.TestGet(valid)
    }
    
    func (t *Tester) TestList(valid runtime.Object) {
    	t.tester.TestList(
    		valid,
    		t.setObjectsForList,
    	)
    }
    
    func (t *Tester) TestWatch(valid runtime.Object, labelsPass, labelsFail []labels.Set, fieldsPass, fieldsFail []fields.Set) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 16:50:16 UTC 2019
    - 4.8K bytes
    - Viewed (0)
Back to top