Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for nvalid (0.54 sec)

  1. pkg/config/validation/validation.go

    // ValidateHTTPHeaderValue validates a header value for Envoy
    // Valid: "foo", "%HOSTNAME%", "100%%", "prefix %HOSTNAME% suffix"
    // Invalid: "abc%123", "%START_TIME%%"
    // We don't try to check that what is inside the %% is one of Envoy recognized values, we just prevent invalid config.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  2. cmd/object-handlers_test.go

    	if err != nil {
    		t.Fatalf("Invalid UploadID: <ERROR> %s", err)
    	}
    
    	// Testing the response for Invalid AccessID.
    	// Forcing the signature check to fail.
    	rec = httptest.NewRecorder()
    	// construct HTTP request for NewMultipart upload.
    	// Setting an invalid accessID.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  3. src/net/http/server.go

    	}
    }
    
    func (cr *connReader) Read(p []byte) (n int, err error) {
    	cr.lock()
    	if cr.inRead {
    		cr.unlock()
    		if cr.conn.hijacked() {
    			panic("invalid Body.Read call. After hijacked, the original Request must not be used")
    		}
    		panic("invalid concurrent Body.Read call")
    	}
    	if cr.hitReadLimit() {
    		cr.unlock()
    		return 0, io.EOF
    	}
    	if len(p) == 0 {
    		cr.unlock()
    		return 0, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. cmd/object-handlers.go

    // GetObjectAttributes ...
    func (api objectAPIHandlers) getObjectAttributesHandler(ctx context.Context, objectAPI ObjectLayer, bucket, object string, w http.ResponseWriter, r *http.Request) {
    	opts, valid := getAndValidateAttributesOpts(ctx, w, r, bucket, object)
    	if !valid {
    		return
    	}
    
    	var s3Error APIErrorCode
    	if opts.VersionID != "" {
    		s3Error = checkRequestAuthType(ctx, r, policy.GetObjectVersionAttributesAction, bucket, object)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    	if len(lines) != 1 {
    		return 0, 0, fmt.Errorf("error parsing line %q: it must contain only one line", input)
    	}
    
    	parts := strings.Fields(lines[0])
    	if len(parts) != 4 {
    		return 0, 0, fmt.Errorf("invalid line %q", input)
    	}
    
    	// Parsing the numbers
    	num1, err := strconv.ParseUint(parts[2], 10, 32)
    	if err != nil {
    		return 0, 0, fmt.Errorf("error parsing line %q: %w", input, err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    //		For GOARCH=arm, the ARM architecture for which to compile.
    //		Valid values are 5, 6, 7.
    //		The value can be followed by an option specifying how to implement floating point instructions.
    //		Valid options are ,softfloat (default for 5) and ,hardfloat (default for 6 and 7).
    //	GOARM64
    //		For GOARCH=arm64, the ARM64 architecture for which to compile.
    //		Valid values are v8.0 (default), v8.{1-9}, v9.{0-5}.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

                        .Case("SAME", tflite::Padding_SAME)
                        .Case("VALID", tflite::Padding_VALID));
      if (padding_attr == tflite::Padding_SAME) {
        return kTfLitePaddingSame;
      }
      if (padding_attr == tflite::Padding_VALID) {
        return kTfLitePaddingValid;
      }
    
      return inst->emitOpError() << "Invalid padding attribute: " << padding,
             std::nullopt;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    		// See RFC 7230, Section 3.2.4.
    		{"Foo : bar\r\n", 400},
    		{"Foo\t: bar\r\n", 400},
    
    		// Empty header keys are invalid.
    		// See RFC 7230, Section 3.2.
    		{": empty key\r\n", 400},
    
    		// Requests with invalid Content-Length headers should be rejected
    		// regardless of the presence of a Transfer-Encoding header.
    		// Check out RFC 9110, Section 8.6 and RFC 9112, Section 6.3.3.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    	for _, d := range p.Internal.Build.Directives {
    		if strings.HasPrefix(d.Text, "//go:debug") {
    			key, _, err := load.ParseGoDebug(d.Text)
    			if err != nil && err != load.ErrNotGoDebug {
    				msg = fmt.Appendf(msg, "%s: invalid //go:debug: %v\n", d.Pos, err)
    				continue
    			}
    			if pos, ok := seen[key]; ok {
    				msg = fmt.Appendf(msg, "%s: repeated //go:debug for %v\n\t%s: previous //go:debug\n", d.Pos, key, pos)
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/data.go

    		rs := r.Sym()
    		rt := r.Type()
    		weak := r.Weak()
    		if off < 0 || off+siz > int32(len(P)) {
    			rname := ""
    			if rs != 0 {
    				rname = ldr.SymName(rs)
    			}
    			st.err.Errorf(s, "invalid relocation %s: %d+%d not in [%d,%d)", rname, off, siz, 0, len(P))
    			continue
    		}
    		if siz == 0 { // informational relocation - no work to do
    			continue
    		}
    
    		var rst sym.SymKind
    		if rs != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top