Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for InvalidValue (0.66 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/bean/DefaultPropertyWalker.java

            @Override
            public String toString() {
                return "Implementation: " + implementationValue;
            }
        }
    
        private static class InvalidValue implements PropertyValue {
            private final Exception exception;
    
            public InvalidValue(Exception exception) {
                this.exception = exception;
            }
    
            @Nullable
            @Override
            public Object call() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/features/features_test.go

    		value                string
    		expectedError        bool
    		expectedFeaturesGate map[string]bool
    	}{
    		{ //invalid value (missing =)
    			value:         "invalidValue",
    			expectedError: true,
    		},
    		{ //invalid value (missing =)
    			value:         "feature1=true,invalidValue",
    			expectedError: true,
    		},
    		{ //invalid value (not a boolean)
    			value:         "feature1=notABoolean",
    			expectedError: true,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 04:57:22 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/ExcludeRuleNotationConverterTest.groovy

            then:
            thrown(InvalidUserDataException)
        }
    
        def "throw exception with a valid group but invalid second key"() {
            when:
            parser.parseNotation([group: 'aGroup', invalidKey1:"invalidValue"]);
            then:
            thrown(MissingPropertyException)
        }
    
        def "checkValidExcludeRuleMap is true if group or module is defined"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:11 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/fields/selector_test.go

    		`\\\`, // orphan slash is invalid
    		`\a`,  // unrecognized escape sequence is invalid
    	}
    	for _, invalidValue := range invalidTestcases {
    		_, err := UnescapeValue(invalidValue)
    		if _, ok := err.(InvalidEscapeSequence); !ok || err == nil {
    			t.Errorf("UnescapeValue(%s): expected invalid escape sequence error, got %#v", invalidValue, err)
    		}
    	}
    }
    
    func TestSelectorParse(t *testing.T) {
    	testGoodStrings := []string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 27 08:00:38 UTC 2017
    - 11.2K bytes
    - Viewed (0)
  5. cmd/signature-v4-parser_test.go

    		// The other query params should exist, other wise ErrInvalidQueryParams will be returned because of missing fields.
    		{
    			inputQueryKeyVals: []string{
    				"X-Amz-Algorithm", "InvalidValue",
    				"X-Amz-Credential", "",
    				"X-Amz-Signature", "",
    				"X-Amz-Date", "",
    				"X-Amz-SignedHeaders", "",
    				"X-Amz-Expires", "",
    			},
    			expectedPreSignValues: preSignValues{},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers_test.go

    		},
    		{
    			node: api.Node{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo6"},
    				Status:     api.NodeStatus{Conditions: []api.NodeCondition{{Type: "InvalidValue", Status: api.ConditionTrue}}},
    			},
    			// Columns: Name, Status, Roles, Age, KubeletVersion
    			expected: []metav1.TableRow{{Cells: []interface{}{"foo6", "Unknown", "<none>", "<unknown>", ""}}},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
Back to top