Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for NotSupported (0.31 sec)

  1. platforms/documentation/docs/src/snippets/configurationCache/topLevel/tests-kotlin/notSupported.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 217 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/configurationCache/topLevel/tests-groovy/notSupported.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 180 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/configurationCache/topLevel/tests-groovy/notSupported.sample.conf

    commands: [{
        executable: gradle
        args: listFiles
        expect-failure: true
        expected-output-file: notSupported.out
        allow-additional-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 161 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/configurationCache/topLevel/tests-kotlin/notSupported.sample.conf

    commands: [{
        executable: gradle
        args: listFiles
        expect-failure: true
        allow-additional-output: true
        expected-output-file: notSupported.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 161 bytes
    - Viewed (0)
  5. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/jna/UnsupportedEnvironment.java

            throw notSupported();
        }
    
        @Override
        public EnvironmentModificationResult maybeRemoveEnvironmentVariable(String name) {
            return EnvironmentModificationResult.UNSUPPORTED_ENVIRONMENT;
        }
    
        @Override
        public void setEnvironmentVariable(String name, String value) throws NativeIntegrationException {
            throw notSupported();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. pkg/volume/metrics_errors.go

    limitations under the License.
    */
    
    package volume
    
    import (
    	"fmt"
    )
    
    const (
    	// ErrCodeNotSupported code for NotSupported Errors.
    	ErrCodeNotSupported int = iota + 1
    	ErrCodeNoPathDefined
    	ErrCodeFsInfoFailed
    )
    
    // NewNotSupportedError creates a new MetricsError with code NotSupported.
    func NewNotSupportedError() *MetricsError {
    	return &MetricsError{
    		Code: ErrCodeNotSupported,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 20 14:37:12 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/validation/field/errors_test.go

    		t.Errorf("should filter")
    	}
    }
    
    func TestNotSupported(t *testing.T) {
    	notSupported := NotSupported(NewPath("f"), "v", []string{"a", "b", "c"})
    	expected := `Unsupported value: "v": supported values: "a", "b", "c"`
    	if notSupported.ErrorBody() != expected {
    		t.Errorf("Expected: %s\n, but got: %s\n", expected, notSupported.ErrorBody())
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/internalversion/validation/validation.go

    		}
    		if match != metav1.ResourceVersionMatchExact && match != metav1.ResourceVersionMatchNotOlderThan {
    			allErrs = append(allErrs, field.NotSupported(field.NewPath("resourceVersionMatch"), match, []string{string(metav1.ResourceVersionMatchExact), string(metav1.ResourceVersionMatchNotOlderThan), ""}))
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 09:55:40 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. pkg/apis/discovery/validation/validation.go

    		if endpointPort.Protocol == nil {
    			allErrs = append(allErrs, field.Required(idxPath.Child("protocol"), ""))
    		} else if !supportedPortProtocols.Has(string(*endpointPort.Protocol)) {
    			allErrs = append(allErrs, field.NotSupported(idxPath.Child("protocol"), *endpointPort.Protocol, supportedPortProtocols.List()))
    		}
    
    		if endpointPort.AppProtocol != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 18 08:49:15 UTC 2021
    - 7.8K bytes
    - Viewed (0)
  10. plugin/pkg/admission/eventratelimit/apis/eventratelimit/validation/validation.go

    			allowedValues := make([]string, len(limitTypes))
    			i := 0
    			for limitType := range limitTypes {
    				allowedValues[i] = string(limitType)
    				i++
    			}
    			allErrs = append(allErrs, field.NotSupported(idxPath.Child("type"), limit.Type, allowedValues))
    		}
    		if limit.Burst <= 0 {
    			allErrs = append(allErrs, field.Invalid(idxPath.Child("burst"), limit.Burst, "must be positive"))
    		}
    		if limit.QPS <= 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 01 17:38:03 UTC 2017
    - 2.1K bytes
    - Viewed (0)
Back to top