Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 64 of 64 for produced (0.18 sec)

  1. pkg/proxy/ipvs/proxier_test.go

    }
    
    func TestFilterCIDRs(t *testing.T) {
    	var cidrList []string
    	var cidrs []string
    	var expected []string
    	cidrs = filterCIDRs(true, []string{})
    	if len(cidrs) > 0 {
    		t.Errorf("An empty list produces a non-empty return %v", cidrs)
    	}
    
    	cidrList = []string{"1000::/64", "10.0.0.0/16", "11.0.0.0/16", "2000::/64"}
    	expected = []string{"1000::/64", "2000::/64"}
    	cidrs = filterCIDRs(true, cidrList)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    // comment, however the order of the lines is ignored. An example with no such
    // comment is compiled but not executed. An example with no text after
    // "Output:" is compiled, executed, and expected to produce no output.
    //
    // Godoc displays the body of ExampleXxx to demonstrate the use
    // of the function, constant, or variable Xxx. An example of a method M with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/asm6.go

    		// add EVEX-only filter that will reject non-EVEX matches.
    		//
    		// Consider "VADDPD.BCST 2032(DX), X0, X0".
    		// Without this rule, operands will lead to VEX-encoded form
    		// and produce "c5b15813" encoding.
    		if !yt.match(args) {
    			// "xo" is always zero for VEX/EVEX encoded insts.
    			z += int(yt.zoffset) + xo
    		} else {
    			if p.Scond != 0 && !evexZcase(yt.zcase) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm64/asm7.go

    		return LDSTX(2, 0, 0, 0, 0) | 0x1F<<10
    	}
    
    	c.ctxt.Diag("bad opstore %v\n%v", a, p)
    	return 0
    }
    
    /*
     * load/store register (scaled 12-bit unsigned immediate) C3.3.13
     *	these produce 64-bit values (when there's an option)
     */
    func (c *ctxt7) olsr12u(p *obj.Prog, o uint32, v int32, rn, rt int16) uint32 {
    	if v < 0 || v >= (1<<12) {
    		c.ctxt.Diag("offset out of range: %d\n%v", v, p)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top