Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 80 for Forbidden (0.16 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java

                                        + " byte) is over " + maxLength + " byte. The url is " + filePath);
                            }
                        }
                    } else {
                        // Forbidden
                        responseData.setHttpStatusCode(Constants.FORBIDDEN_STATUS_CODE);
                        responseData.setMimeType(APPLICATION_OCTET_STREAM);
                    }
                } else if (file.isDirectory()) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 23 01:54:10 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. pkg/apis/networking/validation/validation.go

    	}
    
    	if numPeers == 0 {
    		allErrs = append(allErrs, field.Required(peerPath, "must specify a peer"))
    	} else if numPeers > 1 && peer.IPBlock != nil {
    		allErrs = append(allErrs, field.Forbidden(peerPath, "may not specify both ipBlock and another peer"))
    	}
    
    	return allErrs
    }
    
    // ValidateNetworkPolicySpec tests if required fields in the networkpolicy spec are set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 14:48:01 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  3. pkg/controller/endpoint/endpoints_controller.go

    	if err != nil {
    		if createEndpoints && errors.IsForbidden(err) {
    			// A request is forbidden primarily for two reasons:
    			// 1. namespace is terminating, endpoint creation is not allowed by default.
    			// 2. policy is misconfigured, in which case no service would function anywhere.
    			// Given the frequency of 1, we log at a lower level.
    			logger.V(5).Info("Forbidden from creating endpoints", "error", err)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  4. pkg/kubelet/server/server.go

    			return
    		}
    		if decision != authorizer.DecisionAllow {
    			klog.V(2).InfoS("Forbidden", "user", attrs.GetUser().GetName(), "verb", attrs.GetVerb(), "resource", attrs.GetResource(), "subresource", attrs.GetSubresource())
    			msg := fmt.Sprintf("Forbidden (user=%s, verb=%s, resource=%s, subresource=%s)", attrs.GetUser().GetName(), attrs.GetVerb(), attrs.GetResource(), attrs.GetSubresource())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/EventListener.kt

       */
      open fun canceled(call: Call) {
      }
    
      /**
       * Invoked when a call fails due to cache rules.
       * For example, we're forbidden from using the network and the cache is insufficient
       */
      open fun satisfactionFailure(
        call: Call,
        response: Response,
      ) {
      }
    
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types_jsonschema.go

    	// but switches back to normal pruning behaviour if nested
    	// properties or additionalProperties are specified in the schema.
    	// This can either be true or undefined. False is forbidden.
    	XPreserveUnknownFields *bool
    
    	// x-kubernetes-embedded-resource defines that the value is an
    	// embedded Kubernetes runtime.Object, with TypeMeta and
    	// ObjectMeta. The type must be object. It is allowed to further
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 22:23:23 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/api/errors/errors_test.go

    			otherReasonConsidered: false,
    			code:                  http.StatusTooManyRequests,
    			fn:                    IsTooManyRequests,
    		}, {
    			name:                  "Forbidden",
    			knownReason:           metav1.StatusReasonForbidden,
    			otherReason:           metav1.StatusReasonNotFound,
    			otherReasonConsidered: true,
    			code:                  http.StatusForbidden,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/validation/validation_test.go

    			true,
    		},
    		{ // non-duplicate, but 'all' present in config file, while values are in CLI, which is forbidden
    			[]string{"a", "b"},
    			[]string{"all"},
    			sets.New[string](),
    			true,
    		},
    		{ // non-duplicate, but 'all' present in CLI, while values are in config file, which is forbidden
    			[]string{"all"},
    			[]string{"a", "b"},
    			sets.New[string](),
    			true,
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ImmutableRangeSet.java

      }
    
      /**
       * Returns an {@code ImmutableRangeSet} containing each of the specified disjoint ranges.
       * Overlapping ranges and empty ranges are forbidden, though adjacent ranges are permitted and
       * will be merged.
       *
       * @throws IllegalArgumentException if any ranges overlap or are empty
       * @since 21.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/DefaultVersionCatalogBuilder.java

        public final static Set<String> RESERVED_ALIAS_NAMES = ImmutableSet.of("extensions", "convention");
        /**
         * names that are forbidden in generated accessors because we can't override getClass()
         */
        public final static Set<String> RESERVED_JAVA_NAMES = ImmutableSet.of("class");
    
        private final Interner<String> strings;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 32.3K bytes
    - Viewed (0)
Back to top