Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for redeclared (0.15 sec)

  1. src/net/http/request.go

    	err = readTransfer(req, b)
    	if err != nil {
    		return nil, err
    	}
    
    	if req.isH2Upgrade() {
    		// Because it's neither chunked, nor declared:
    		req.ContentLength = -1
    
    		// We want to give handlers a chance to hijack the
    		// connection, but we need to prevent the Server from
    		// dealing with the connection further if it's not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  2. cmd/api-errors.go

    	case dns.ErrInvalidBucketName:
    		apiErr = ErrInvalidBucketName
    	case dns.ErrBucketConflict:
    		apiErr = ErrBucketAlreadyExists
    	default:
    		if strings.Contains(err.Error(), "request declared a Content-Length") {
    			apiErr = ErrIncompleteBody
    		} else {
    			apiErr = ErrInternalError
    		}
    	}
    
    	return apiErr
    }
    
    var noError = APIError{}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  3. tests/integration/ambient/baseline_test.go

    				Count:   1,
    				Address: apps.ServiceAddressedWaypoint[0].Address(),
    				Port:    echo.Port{ServicePort: 12345},
    				Scheme:  scheme.HTTP,
    				HBONE:   hbsvc,
    				// TODO: VIP:* should error sooner for undeclared ports
    				Check: check.Error(),
    			})
    			run("Pod IP destination", echo.CallOptions{
    				To:      apps.WorkloadAddressedWaypoint,
    				Count:   1,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	} else {
    		factor = fmt.Sprintf("%.1fx", exceedFactor)
    	}
    	return fmt.Sprintf("%s exceeds budget by factor of %s (try simplifying the rule, or adding maxItems, maxProperties, and maxLength where arrays, maps, and strings are declared)", costName, factor)
    }
    
    var newlineMatcher = regexp.MustCompile(`[\n\r]+`) // valid newline chars in CEL grammar
    func hasNewlines(s string) bool {
    	return newlineMatcher.MatchString(s)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// to these actions only if the FailurePolicy is set to Fail, otherwise the failures are
    	// ignored. This includes compilation errors, runtime errors and misconfigurations of the policy.
    	//
    	// validationActions is declared as a set of action values. Order does
    	// not matter. validationActions may not contain duplicates of the same action.
    	//
    	// The supported actions values are:
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  6. src/reflect/type.go

    	Name() string
    
    	// PkgPath returns a defined type's package path, that is, the import path
    	// that uniquely identifies the package, such as "encoding/base64".
    	// If the type was predeclared (string, error) or not defined (*T, struct{},
    	// []int, or A where A is an alias for a non-defined type), the package path
    	// will be the empty string.
    	PkgPath() string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/lib.go

    		// a variable to hold g in assembly (currently only intel).
    		if sb.Type() == 0 {
    			sb.SetType(sym.STLSBSS)
    			sb.SetSize(int64(ctxt.Arch.PtrSize))
    		} else if sb.Type() != sym.SDYNIMPORT {
    			Errorf(nil, "runtime declared tlsg variable %v", sb.Type())
    		}
    		ctxt.loader.SetAttrReachable(tlsg, true)
    		ctxt.Tlsg = tlsg
    	}
    
    	var moduledata loader.Sym
    	var mdsb *loader.SymbolBuilder
    	if ctxt.BuildMode == BuildModePlugin {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top