Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for forbidden (0.15 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            } else {
                notifyChildren(type);
            }
        }
    
        /**
         * Emit a warning (and eventually throw an exception) if a mutation of type {@code type} occurs
         * during a forbidden state.
         *
         * @return true if a deprecation was emitted
         */
        private boolean maybePreventMutation(MutationType type, String typeDescription) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    			}
    		}
    	}
    
    	invalid := []string{
    		"1.1.M",
    		"1+1.0M",
    		"0.1mi",
    		"0.1am",
    		"aoeu",
    		".5i",
    		"1i",
    		"-3.01i",
    		"-3.01e-",
    
    		// trailing whitespace is forbidden
    		" 1",
    		"1 ",
    	}
    	for _, item := range invalid {
    		_, err := ParseQuantity(item)
    		if err == nil {
    			t.Errorf("%v parsed unexpectedly", item)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // corresponding HTTP response code, are used in the
      // HTTP response to the client.
      // The currently supported reasons are: "Unauthorized", "Forbidden", "Invalid", "RequestEntityTooLarge".
      // If not set, StatusReasonInvalid is used in the response to the client.
      // +optional
      optional string reason = 3;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/buildlist.go

    				case "lazymod=log":
    					debug.PrintStack()
    					fmt.Fprintf(os.Stderr, "go: read full module graph.\n")
    				case "lazymod=strict":
    					debug.PrintStack()
    					base.Fatalf("go: read full module graph (forbidden by GODEBUG=lazymod=strict).")
    				}
    			}
    		})
    	}
    
    	var graphRoots []module.Version
    	if inWorkspaceMode() {
    		graphRoots = roots
    	} else {
    		graphRoots = MainModules.Versions()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. plugin/pkg/admission/resourcequota/admission_test.go

    							{
    								ScopeName: corev1.ResourceQuotaScopePriorityClass,
    								Operator:  corev1.ScopeSelectorOpExists,
    							},
    						},
    					},
    				},
    			},
    			expErr: "forbidden: exceeded quota: quota, requested: memory=20Gi, used: memory=1Gi, limited: memory=10Gi",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ppc64/ssa.go

    			p.To.Type = obj.TYPE_CONST
    			p.To.Offset = 0
    
    			// BNE 2(PC)
    			p2 := s.Prog(ppc64.ABNE)
    			p2.To.Type = obj.TYPE_BRANCH
    
    			// STW R0, 0(R0)
    			// Write at 0 is forbidden and will trigger a SIGSEGV
    			p = s.Prog(ppc64.AMOVW)
    			p.From.Type = obj.TYPE_REG
    			p.From.Reg = ppc64.REG_R0
    			p.To.Type = obj.TYPE_MEM
    			p.To.Reg = ppc64.REG_R0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. src/net/http/client_test.go

    	}
    
    	checkErr = errors.New("no redirects allowed")
    	res, err = c.Get(ts.URL)
    	if urlError, ok := err.(*url.Error); !ok || urlError.Err != checkErr {
    		t.Errorf("with redirects forbidden, expected a *url.Error with our 'no redirects allowed' error inside; got %#v (%q)", err, err)
    	}
    	if res == nil {
    		t.Fatalf("Expected a non-nil Response on CheckRedirect failure (https://golang.org/issue/3795)")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// If this is the first validation in the list to fail, this reason, as well as the
    	// corresponding HTTP response code, are used in the
    	// HTTP response to the client.
    	// The currently supported reasons are: "Unauthorized", "Forbidden", "Invalid", "RequestEntityTooLarge".
    	// If not set, StatusReasonInvalid is used in the response to the client.
    	// +optional
    	Reason *metav1.StatusReason `json:"reason,omitempty" protobuf:"bytes,3,opt,name=reason"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/init.go

    			return "", err
    		}
    		return info.Version, nil
    	}
    }
    
    // AllowMissingModuleImports allows import paths to be resolved to modules
    // when there is no module root. Normally, this is forbidden because it's slow
    // and there's no way to make the result reproducible, but some commands
    // like 'go get' are expected to do this.
    //
    // This function affects the default cfg.BuildMod when outside of a module,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
Back to top