Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 197 for isAllowed (0.19 sec)

  1. staging/src/k8s.io/api/networking/v1/types_swagger_doc_generated.go

    	"":         "HTTPIngressPath associates a path with a backend. Incoming urls matching the path are forwarded to the backend.",
    	"path":     "path is matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional \"path\" part of a URL as defined by RFC 3986. Paths must begin with a '/' and must be present when using PathType with value \"Exact\" or \"Prefix\".",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation.go

    		allErrs = append(allErrs, field.Invalid(fldPath, issuerDiscoveryURL, "discoveryURL must be different from URL"))
    	}
    
    	// issuerDiscoveryURL is not an issuer URL and does not need to validated against any set of disallowed issuers
    	allErrs = append(allErrs, validateURL(issuerDiscoveryURL, nil, fldPath)...)
    	return allErrs
    }
    
    func validateURL(issuerURL string, disallowedIssuers sets.Set[string], fldPath *field.Path) field.ErrorList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlReaderTest.groovy

            """
    
            then:
            DependencyVerificationException e = thrown()
            e.message == "Unable to read dependency verification metadata"
            e.cause.message.contains("DOCTYPE is disallowed")
        }
    
        def "can parse file with namespace declaration"() {
            when:
            parse """<?xml version="1.0" encoding="UTF-8"?>
    <verification-metadata xmlns="https://schema.gradle.org/dependency-verification"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 10:13:31 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/networking/v1/generated.proto

    // path are forwarded to the backend.
    message HTTPIngressPath {
      // path is matched against the path of an incoming request. Currently it can
      // contain characters disallowed from the conventional "path" part of a URL
      // as defined by RFC 3986. Paths must begin with a '/' and must be present
      // when using PathType with value "Exact" or "Prefix".
      // +optional
      optional string path = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoriesDeclaredInSettingsIntegrationTest.groovy

                }
            }
        }
    
        @ToBeFixedForConfigurationCache(because = "task uses dependency resolution API")
        def "mutation of settings repositories after settings have been evaluated is disallowed"() {
    
            buildFile << """
                tasks.register('mutateSettings') {
                    doLast {
                        gradle.settings.dependencyResolutionManagement {
                            repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

    
            then:
            def e = thrown IllegalStateException
            e.message == 'The value for this property cannot be changed any further.'
        }
    
        def "cannot set to empty map after changes disallowed"() {
            given:
            property.set(someValue())
            property.disallowChanges()
            when:
            property.empty()
            then:
            def e = thrown IllegalStateException
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/extensions/v1beta1/types_swagger_doc_generated.go

    	"http": "http is a list of http selectors pointing to backends. A path is matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional \"path\" part of a URL as defined by RFC 3986. Paths must begin with a '/'. A backend defines the referenced service...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 42.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    		},
    		{
    			name:              "valid url that is disallowed",
    			in:                "https://issuer-url",
    			disallowedIssuers: sets.New("https://issuer-url"),
    			want:              `issuer.url: Invalid value: "https://issuer-url": URL must not overlap with disallowed issuers: [https://issuer-url]`,
    		},
    		{
    			name: "valid url",
    			in:   "https://issuer-url",
    			want: "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  9. pkg/apis/networking/types.go

    }
    
    // IngressRuleValue represents a rule to apply against incoming requests. If the
    // rule is satisfied, the request is routed to the specified backend. Currently
    // mixing different types of rules in a single Ingress is disallowed, so exactly
    // one of the following must be set.
    type IngressRuleValue struct {
    	//TODO:
    	// 1. Consider renaming this resource and the associated rules so they
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/build.go

    		errors.Is(err, fs.ErrNotExist) ||
    		errors.As(err, &noVersionErr) {
    		// Ignore "not found" and "no matching version" errors.
    		// This means the proxy has no matching version or no versions at all.
    		//
    		// Ignore "disallowed" errors. This means the current version is
    		// excluded or retracted and there are no higher allowed versions.
    		//
    		// We should report other errors though. An attacker that controls the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top