Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for NotSupported (0.38 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. 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)
  7. 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)
  8. staging/src/k8s.io/apiserver/pkg/server/egressselector/config.go

    		case apiserver.ProtocolGRPC:
    			allErrs = append(allErrs, validateGRPCTransport(service.Connection.Transport, fldPath)...)
    		default:
    			allErrs = append(allErrs, field.NotSupported(
    				fldPath.Child("protocol"),
    				service.Connection.ProxyProtocol,
    				[]string{
    					string(apiserver.ProtocolDirect),
    					string(apiserver.ProtocolHTTPConnect),
    					string(apiserver.ProtocolGRPC),
    				}))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  9. pkg/apis/policy/validation/validation.go

    	if spec.UnhealthyPodEvictionPolicy != nil && !supportedUnhealthyPodEvictionPolicies.Has(string(*spec.UnhealthyPodEvictionPolicy)) {
    		allErrs = append(allErrs, field.NotSupported(fldPath.Child("unhealthyPodEvictionPolicy"), *spec.UnhealthyPodEvictionPolicy, supportedUnhealthyPodEvictionPolicies.List()))
    	}
    
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  10. pkg/credentialprovider/plugin/config.go

    			validAPIVersions := []string{}
    			for apiVersion := range apiVersions {
    				validAPIVersions = append(validAPIVersions, apiVersion)
    			}
    
    			allErrs = append(allErrs, field.NotSupported(fieldPath.Child("apiVersion"), provider.APIVersion, validAPIVersions))
    		}
    
    		if len(provider.MatchImages) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 19 15:11:57 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top