Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for wrongkey (0.22 sec)

  1. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/EclipseProjectTest.groovy

            then:
            2 == eclipseProject.linkedResources.size()
        }
    
        def "complains when invalid link created"() {
            when:
            eclipseProject.linkedResource(name: 'foo', type: 'folder', wrongKey: '/stuff/foo')
    
            then:
            thrown(InvalidUserDataException.class)
    
            when:
            eclipseProject.linkedResource(name: 'foo', type: 'folder', location: '/stuff/foo', locationUri: 'file:///boooo')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/interpodaffinity/scoring_test.go

    							MatchExpressions: []metav1.LabelSelectorRequirement{
    								{
    									Key:      "security",
    									Operator: metav1.LabelSelectorOpExists,
    								}, {
    									Key:      "wrongkey",
    									Operator: metav1.LabelSelectorOpDoesNotExist,
    								},
    							},
    						},
    						TopologyKey: "region",
    					},
    				},
    			},
    		},
    	}
    	hardAffinity := &v1.Affinity{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 44.8K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    							MatchExpressions: []metav1.LabelSelectorRequirement{
    								{
    									Key:      "service",
    									Operator: metav1.LabelSelectorOpExists,
    								}, {
    									Key:      "wrongkey",
    									Operator: metav1.LabelSelectorOpDoesNotExist,
    								},
    							},
    						},
    						TopologyKey: "region",
    					}, {
    						LabelSelector: &metav1.LabelSelector{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/exceptions/InvalidGpgKeyIdsException.java

        private final List<String> wrongKeys;
    
        /**
         * Creates a new exception with a list of incorrect keys.
         *
         * @param wrongKeys the list of incorrect IDs, which will be nicely formatted as part of the exception messages so the user can find them
         */
        public InvalidGpgKeyIdsException(List<String> wrongKeys) {
            this.wrongKeys = wrongKeys;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. pkg/ledger/ledger_test.go

    )
    
    func TestLongKeys(t *testing.T) {
    	longKey := "virtual-service/frontend/default"
    	l := smtLedger{tree: newSMT(hasher, nil, time.Minute)}
    	_, err := l.Put(longKey+"1", "1")
    	assert.NoError(t, err)
    	_, err = l.Put(longKey+"2", "2")
    	assert.NoError(t, err)
    	res, err := l.Get(longKey + "1")
    	assert.NoError(t, err)
    	assert.Equal(t, res, "1")
    	res, err = l.Get(longKey + "2")
    	assert.NoError(t, err)
    	assert.Equal(t, res, "2")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 12 16:12:59 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. test/fixedbugs/bug464.go

    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 3937: unhelpful typechecking loop message
    // for identifiers wrongly used as types.
    
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 338 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/objectmeta_test.go

    		},
    		TLS: tlsConfig,
    	}
    	etcdclient, err := clientv3.New(etcdConfig)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	t.Logf("Creating object with wrongly typed annotations and non-validating labels manually in etcd")
    
    	original := fixtures.NewNoxuInstance("default", "foo")
    	unstructured.SetNestedField(original.UnstructuredContent(), int64(42), "metadata", "unknown")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 05:32:34 UTC 2023
    - 19K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/table_test.go

    						{Name: "Beta", Type: "integer", Description: "the beta field", Format: "int64", Priority: 42, JSONPath: ".spec.beta"},
    						{Name: "Gamma", Type: "integer", Description: "a column with wrongly typed values", JSONPath: ".spec.gamma"},
    						{Name: "Epsilon", Type: "string", Description: "an array of integers as string", JSONPath: ".spec.epsilon"},
    					},
    					Schema: fixtures.AllowAllSchema(),
    				},
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 02 19:34:41 UTC 2021
    - 18.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    				invalid("spec", "validation", "openAPIV3Schema", "properties[wrongly-typed-object-defaults-name]", "default", "metadata"),
    				invalid("spec", "validation", "openAPIV3Schema", "properties[wrongly-typed-object-defaults-labels]", "default", "metadata"),
    				invalid("spec", "validation", "openAPIV3Schema", "properties[wrongly-typed-object-defaults-annotations]", "default", "metadata"),
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  10. pilot/pkg/credentials/kube/secrets_test.go

    	}, corev1.SecretTypeTLS)
    	emptyCert = makeSecret("empty-cert", map[string]string{
    		TLSSecretCert: "", TLSSecretKey: "tls-key",
    	}, corev1.SecretTypeTLS)
    	wrongKeys = makeSecret("wrong-keys", map[string]string{
    		"foo-bar": "my-cert", TLSSecretKey: "tls-key",
    	}, corev1.SecretTypeTLS)
    	dockerjson = makeSecret("docker-json", map[string]string{
    		corev1.DockerConfigJsonKey: "docker-cred",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top