Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 286 for forbidden (0.22 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/errors/statuserror_test.go

    			},
    			deniedBy + ": you shall not pass",
    			400,
    			metav1.StatusFailure,
    		},
    		{
    			"only reason",
    			&metav1.Status{
    				Reason: metav1.StatusReasonForbidden,
    			},
    			deniedBy + ": Forbidden",
    			400,
    			metav1.StatusFailure,
    		},
    		{
    			"message and reason",
    			&metav1.Status{
    				Message: "you shall not pass",
    				Reason:  metav1.StatusReasonForbidden,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 13:12:07 UTC 2019
    - 3.4K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtensionFile.kt

     * - be lightweight and not build the whole file structure inside.
     * - not use the Kotlin resolve inside, as this function is called during session initialization, so Analysis API access is forbidden.
     *
     * @see KaResolveExtension
     */
    public abstract class KaResolveExtensionFile {
        /**
         * The name a Kotlin file which will be generated.
         *
         * Should have the `.kt` extension.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/generic/rest/streamer.go

    	return
    }
    
    // PreventRedirects is a redirect checker that prevents the client from following a redirect.
    func PreventRedirects(_ *http.Request, _ []*http.Request) error {
    	return errors.New("redirects forbidden")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 16:43:09 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/UrlComponentEncodingTester.kt

        }
    
      fun test(component: Component) =
        apply {
          for ((codePoint, encoding) in encodings) {
            val codePointString = Encoding.IDENTITY.encode(codePoint)
            if (encoding == Encoding.FORBIDDEN) {
              testForbidden(codePoint, codePointString, component)
              continue
            }
            if (encoding == Encoding.PUNYCODE) {
              testPunycode(codePointString, component)
              continue
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ResolveContext.java

        /**
         * Marks this resolve context as observed, meaning its state has been seen by some external operation
         * and further changes to this context that would change its public state are forbidden.
         */
        void markAsObserved();
    
        FailureResolutions getFailureResolutions();
    
        /**
         * Details about this resolve context to provide additional context during failure cases.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_query_empty.txt

    v1.1.0
    -- $WORK/notfound/example.com/join/@v/v1.1.0.info --
    {"Version": "v1.1.0"}
    -- $WORK/gatekeeper/example.com/join/subpkg/@v/list --
    -- $WORK/gatekeeper/example.com/join/subpkg/@latest --
    ERROR: Latest version is forbidden.
    -- $WORK/gatekeeper/example.com/join/@v/list --
    v1.1.0
    -- $WORK/gatekeeper/example.com/join/@v/v1.1.0.info --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  7. cmd/import-boss/README.md

      - A list of `AllowedPrefixes`
      - A list of `ForbiddenPrefixes`
    
    An import is allowed if it matches at least one allowed prefix and does not
    match any forbidden prefixes.
    
    Rules also have a boolean `Transitive` option. When this option is true, the
    rule is applied to transitive imports.
    
    Example:
    
    ```json
    {
      "Rules": [
        {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. docs/iam/identity-management-plugin.md

    The keys "exp", "parent" and "sub" in the `claims` object are reserved and if present are ignored by MinIO.
    
    If the token is not valid or access is not approved, the plugin must return a `403` (forbidden) HTTP status code. The body must have an `application/json` content-type with the following structure:
    
    ```json
    {
        "reason": <string>
    }
    ```
    
    The reason message is returned to the client.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 27 00:58:09 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  9. pkg/apis/apps/validation/validation.go

    	if !apiequality.Semantic.DeepEqual(newStatefulSetClone.Spec, oldStatefulSet.Spec) {
    		allErrs = append(allErrs, field.Forbidden(field.NewPath("spec"), "updates to statefulset spec for fields other than 'replicas', 'ordinals', 'template', 'updateStrategy', 'persistentVolumeClaimRetentionPolicy' and 'minReadySeconds' are forbidden"))
    	}
    
    	return allErrs
    }
    
    // ValidateStatefulSetStatus validates a StatefulSetStatus.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 06 22:11:20 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/errors/errors.go

    	}}
    }
    
    // NewForbidden returns an error indicating the requested action was forbidden
    func NewForbidden(qualifiedResource schema.GroupResource, name string, err error) *StatusError {
    	var message string
    	if qualifiedResource.Empty() {
    		message = fmt.Sprintf("forbidden: %v", err)
    	} else if name == "" {
    		message = fmt.Sprintf("%s is forbidden: %v", qualifiedResource.String(), err)
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 21 03:41:32 UTC 2022
    - 30.5K bytes
    - Viewed (0)
Back to top