Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 168 for addOption (4.03 sec)

  1. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                            type: object
                          type: array
                        mirror:
                          description: Mirror HTTP traffic to a another destination in
                            addition to forwarding the requests to the intended destination.
                          properties:
                            host:
                              description: The name of a service from the service registry.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  2. pkg/controller/endpointslice/endpointslice_controller_test.go

    			assert.ElementsMatch(t, testcase.expectedEndpoints, slice.Endpoints)
    		})
    	}
    }
    
    // TestPodAddsBatching verifies that endpoint updates caused by pod addition are batched together.
    // This test uses real time.Sleep, as there is no easy way to mock time in endpoints controller now.
    // TODO(mborsz): Migrate this test to mock clock when possible.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  3. src/runtime/panic.go

    // deferconvert, which would catch calling the loop body
    // and having it defer after the loop is done. If we have a
    // more general catch of loop body misuse, though, this
    // might not be worth worrying about in addition.
    //
    // See also ../cmd/compile/internal/rangefunc/rewrite.go.
    func deferrangefunc() any {
    	gp := getg()
    	if gp.m.curg != gp {
    		// go code on the system stack can't defer
    		throw("defer on system stack")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/liveness/plive.go

    	liveout := bitvec.New(nvars)
    	livedefer := bitvec.New(nvars) // always-live variables
    
    	// If there is a defer (that could recover), then all output
    	// parameters are live all the time.  In addition, any locals
    	// that are pointers to heap-allocated output parameters are
    	// also always live (post-deferreturn code needs these
    	// pointers to copy values back to the stack).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  5. src/net/netip/netip.go

    	ret := make([]byte, 0, size)
    	for i := uint8(0); i < 8; i++ {
    		if i > 0 {
    			ret = append(ret, ':')
    		}
    
    		ret = appendHexPad(ret, ip.v6u16(i))
    	}
    
    	if ip.z != z6noz {
    		// The addition of a zone will cause a second allocation, but when there
    		// is no zone the ret slice will be stack allocated.
    		ret = append(ret, '%')
    		ret = append(ret, ip.Zone()...)
    	}
    	return string(ret)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  6. manifests/charts/base/crds/crd-all.gen.yaml

                            type: object
                          type: array
                        mirror:
                          description: Mirror HTTP traffic to a another destination in
                            addition to forwarding the requests to the intended destination.
                          properties:
                            host:
                              description: The name of a service from the service registry.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  7. src/cmd/dist/test.go

    				&goTest{
    					variant:   "cpu" + strconv.Itoa(i),
    					timeout:   300 * time.Second,
    					cpu:       strconv.Itoa(i),
    					short:     true,
    					testFlags: []string{"-quick"},
    					// We set GOMAXPROCS=2 in addition to -cpu=1,2,4 in order to test runtime bootstrap code,
    					// creation of first goroutines and first garbage collections in the parallel setting.
    					env: []string{"GOMAXPROCS=2"},
    					pkg: "runtime",
    				})
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. src/go/types/expr.go

    		}
    	}
    	return ""
    }
    
    var op2str1 = [...]string{
    	token.XOR: "bitwise complement",
    }
    
    // This is only used for operations that may cause overflow.
    var op2str2 = [...]string{
    	token.ADD: "addition",
    	token.SUB: "subtraction",
    	token.XOR: "bitwise XOR",
    	token.MUL: "multiplication",
    	token.SHL: "shift",
    }
    
    // If typ is a type parameter, underIs returns the result of typ.underIs(f).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  9. src/net/http/request.go

    	"Trailer":           true,
    }
    
    // A Request represents an HTTP request received by a server
    // or to be sent by a client.
    //
    // The field semantics differ slightly between client and server
    // usage. In addition to the notes on the fields below, see the
    // documentation for [Request.Write] and [RoundTripper].
    type Request struct {
    	// Method specifies the HTTP method (GET, POST, PUT, etc.).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  10. doc/go_spec.html

    within matching brace brackets.
    </p>
    
    <pre class="ebnf">
    Block = "{" StatementList "}" .
    StatementList = { Statement ";" } .
    </pre>
    
    <p>
    In addition to explicit blocks in the source code, there are implicit blocks:
    </p>
    
    <ol>
    	<li>The <i>universe block</i> encompasses all Go source text.</li>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
Back to top