Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for Forbidden (0.22 sec)

  1. pkg/apis/resource/validation/validation_resourceclaim_test.go

    							Resource: "pods",
    							Name:     "foo",
    							UID:      "1",
    						})
    				}
    				return claim
    			},
    		},
    		"invalid-reserved-for-not-shared": {
    			wantFailures: field.ErrorList{field.Forbidden(field.NewPath("status", "reservedFor"), "may not be reserved more than once")},
    			oldClaim: func() *resource.ResourceClaim {
    				claim := validAllocatedClaim.DeepCopy()
    				claim.Status.Allocation.Shareable = false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/permissions/KaBaseAnalysisPermissionChecker.kt

                return "Called from a write action."
            }
    
            permissionRegistry.explicitAnalysisRestriction?.let { restriction ->
                return "Resolve is explicitly forbidden in the current action: ${restriction.description}."
            }
    
            error("Cannot get a rejection reason when analysis is allowed.")
        }
    
        private fun isProhibitedEdtAnalysis(application: Application): Boolean =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. testing/architecture-test/src/test/java/org/gradle/architecture/test/ArchUnitFixture.java

                        } else {
                            events.add(new SimpleConditionEvent(method, true, method.getFullName() + " is not using forbidden Nullable"));
                        }
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  4. pkg/apis/resource/validation/validation.go

    		if resourceClaim.Status.Allocation == nil {
    			allErrs = append(allErrs, field.Forbidden(fldPath.Child("reservedFor"), "may not be specified when `allocated` is not set"))
    		} else {
    			if !resourceClaim.Status.Allocation.Shareable && len(resourceClaim.Status.ReservedFor) > 1 {
    				allErrs = append(allErrs, field.Forbidden(fldPath.Child("reservedFor"), "may not be reserved more than once"))
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  5. src/crypto/tls/bogo_config.json

            "UnsolicitedServerNameAck-TLS-TLS13": "TODO: first pass, this should be fixed",
            "RenegotiationInfo-Forbidden-TLS13": "TODO: first pass, this should be fixed",
            "EMS-Forbidden-TLS13": "TODO: first pass, this should be fixed",
            "SendUnsolicitedOCSPOnCertificate-TLS13": "TODO: first pass, this should be fixed",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 15:52:42 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtension.kt

     * - be lightweight and not build the whole file structure inside.
     * - not use Kotlin resolve inside, as these functions are called during session initialization, so Analysis API access is forbidden.
     *
     * #### Lifecycle Management
     *
     * A [KaResolveExtension] is tied to the lifetime of its module's analysis session. It is created by [KaResolveExtensionProvider] during
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/KtAnalysisSession.kt

     * entities retrieved from it will become invalid. An analysis session also shouldn't be leaked from the [analyze] call it was created in.
     *
     * It is forbidden to store an analysis session in a variable, parameter, or property. From the [analyze] block which provides the analysis
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 18:45:26 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    						schema.GroupResource{}, "name", errors.New(""))
    				})
    			},
    			expectedError: true,
    		},
    		{
    			// A "create" call against a real server can return a forbidden error and a non-nil CRB
    			name: "admin.conf: handle forbidden error and returned CRBs, when the super-admin.conf client is nil",
    			setupAdminClient: func(client *clientsetfake.Clientset) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  9. 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)
  10. cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go

    			if _, err := adminClient.RbacV1().ClusterRoleBindings().Create(
    				ctx,
    				clusterRoleBinding,
    				metav1.CreateOptions{},
    			); err != nil {
    				if apierrors.IsForbidden(err) {
    					// If it encounters a forbidden error this means that the API server was reached
    					// but the CRB is missing - i.e. the admin.conf user does not have permissions
    					// to create its own permission RBAC yet.
    					return true, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 27K bytes
    - Viewed (0)
Back to top