Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Origins (0.14 sec)

  1. pkg/config/validation/validation.go

    		}
    	}
    
    	return
    }
    
    func validateAllowOrigins(origin *networking.StringMatch) error {
    	var match string
    	switch origin.MatchType.(type) {
    	case *networking.StringMatch_Exact:
    		match = origin.GetExact()
    	case *networking.StringMatch_Prefix:
    		match = origin.GetPrefix()
    	case *networking.StringMatch_Regex:
    		match = origin.GetRegex()
    	}
    	if match == "" {
    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/server_test.go

    		"Cache-Control",
    		"Retry-After",
    		"X-Amz-Bucket-Region",
    		"Expires",
    		"X-Amz*",
    		"X-Amz*",
    		"*",
    	}
    	expectedMap.Set("Vary", "Origin")
    
    	req, _ := http.NewRequest(http.MethodOptions, s.endPoint, nil)
    	req.Header.Set("Origin", "http://foobar.com")
    	res, err := s.client.Do(req)
    	if err != nil {
    		c.Fatal(err)
    	}
    
    	for k := range expectedMap {
    		if v, ok := res.Header[k]; !ok {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //	    Error      *ModuleError  // error loading module
    //	    Sum        string        // checksum for path, version (as in go.sum)
    //	    GoModSum   string        // checksum for go.mod (as in go.sum)
    //	    Origin     any           // provenance of module
    //	    Reuse      bool          // reuse of old module info is safe
    //	}
    //
    //	type ModuleError struct {
    //	    Err string // the error itself
    //	}
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/reflect/value.go

    			if xt := x.Type(); !xt.AssignableTo(elem) {
    				panic("reflect: cannot use " + xt.String() + " as type " + elem.String() + " in " + op)
    			}
    			slice.Index(i).Set(x)
    		}
    		origIn := in
    		in = make([]Value, n+1)
    		copy(in[:n], origIn)
    		in[n] = slice
    	}
    
    	nin := len(in)
    	if nin != t.NumIn() {
    		panic("reflect.Value.Call: wrong argument count")
    	}
    	nout := t.NumOut()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    diagonal pair of box corners and the coordinates can be provided as normalized
    (i.e., lying in the interval [0, 1]) or absolute.  Note that this algorithm
    is agnostic to where the origin is in the coordinate system and more
    generally is invariant to orthogonal transformations and translations
    of the coordinate system; thus translating or reflections of the coordinate
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_test.go

    				EnforcingConsecutive_5Xx: &wrappers.UInt32Value{Value: 0},
    				EnforcingSuccessRate:     &wrappers.UInt32Value{Value: 0},
    			},
    		},
    		{
    			"Local origin errors is enabled",
    			&networking.OutlierDetection{
    				SplitExternalLocalOriginErrors: true,
    				ConsecutiveLocalOriginFailures: &wrappers.UInt32Value{Value: 10},
    			},
    			&cluster.OutlierDetection{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    	// same compiler settings and can reuse each other's results.
    	// If not, the reason is already recorded in buildGcflags.
    	fmt.Fprintf(h, "compile\n")
    
    	// Include information about the origin of the package that
    	// may be embedded in the debug info for the object file.
    	if cfg.BuildTrimpath {
    		// When -trimpath is used with a package built from the module cache,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top