Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 4,331 for p$ (0.03 sec)

  1. src/cmd/compile/internal/ssa/looprotate.go

    				after[p.ID] = append(after[p.ID], nextb)
    			}
    			b = nextb
    		}
    		// Swap b and p so that we'll handle p before b when moving blocks.
    		f.Blocks[idToIdx[loop.header.ID]] = p
    		f.Blocks[idToIdx[p.ID]] = loop.header
    		idToIdx[loop.header.ID], idToIdx[p.ID] = idToIdx[p.ID], idToIdx[loop.header.ID]
    
    		// Place b after p.
    		for _, b := range after[p.ID] {
    			move[b.ID] = struct{}{}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/s390x/asmz.go

    		p.RestArgs[i].Addr.Class = int8(c.aclass(&p.RestArgs[i].Addr) + 1)
    	}
    
    	// Mirrors the argument list in Optab.
    	args := [...]int8{
    		p.From.Class - 1,
    		C_NONE, // p.Reg
    		C_NONE, // p.RestArgs[0]
    		C_NONE, // p.RestArgs[1]
    		C_NONE, // p.RestArgs[2]
    		p.To.Class - 1,
    	}
    	// Fill in argument class for p.Reg.
    	switch {
    	case REG_R0 <= p.Reg && p.Reg <= REG_R15:
    		args[1] = C_REG
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    }
    </pre>
    
    <p>
    More than one type may implement an interface.
    For instance, if two types <code>S1</code> and <code>S2</code>
    have the method set
    </p>
    
    <pre>
    func (p T) Read(p []byte) (n int, err error)
    func (p T) Write(p []byte) (n int, err error)
    func (p T) Close() error
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  4. src/go/types/instantiate_test.go

    	const prefix = `package p
    
    type T[P any] struct{}
    
    var X T[int]
    
    `
    	tests := []struct {
    		decl string
    		want string
    	}{
    		{"func (r T[P]) m() P", "func (T[int]).m() int"},
    		{"func (r T[P]) m(P)", "func (T[int]).m(int)"},
    		{"func (r *T[P]) m(P)", "func (*T[int]).m(int)"},
    		{"func (r T[P]) m() T[P]", "func (T[int]).m() T[int]"},
    		{"func (r T[P]) m(T[P])", "func (T[int]).m(T[int])"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. cni/pkg/plugin/testdata/dns.txt.golden

    -N ISTIO_IN_REDIRECT
    -N ISTIO_OUTPUT
    -A ISTIO_INBOUND -p tcp --dport 15008 -j RETURN
    -A ISTIO_REDIRECT -p tcp -j REDIRECT --to-ports 15001
    -A ISTIO_IN_REDIRECT -p tcp -j REDIRECT --to-ports 15006
    -A PREROUTING -p tcp -j ISTIO_INBOUND
    -A ISTIO_INBOUND -p tcp --dport 15020 -j RETURN
    -A ISTIO_INBOUND -p tcp --dport 15021 -j RETURN
    -A ISTIO_INBOUND -p tcp --dport 15090 -j RETURN
    -A ISTIO_INBOUND -p tcp -j ISTIO_IN_REDIRECT
    -A OUTPUT -p tcp -j ISTIO_OUTPUT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/capture/testdata/loopback-outbound-iprange.golden

    iptables -t nat -A ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 3 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 4 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 1 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 2 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -p udp --dport 53 -d 127.0.0.53/32 -j REDIRECT --to-port 15053
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. src/runtime/mpagealloc.go

    	}
    	p.sysStat = sysStat
    
    	// Initialize p.inUse.
    	p.inUse.init(sysStat)
    
    	// System-dependent initialization.
    	p.sysInit(test)
    
    	// Start with the searchAddr in a state indicating there's no free memory.
    	p.searchAddr = maxSearchAddr()
    
    	// Set the mheapLock.
    	p.mheapLock = mheapLock
    
    	// Initialize the scavenge index.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  8. src/runtime/pprof/proto_test.go

    		t.Errorf("p.PeriodType = %v\nwant = %v", fmtJSON(p.PeriodType), fmtJSON(periodType))
    	}
    	if !reflect.DeepEqual(p.SampleType, sampleType) {
    		t.Errorf("p.SampleType = %v\nwant = %v", fmtJSON(p.SampleType), fmtJSON(sampleType))
    	}
    	if defaultSampleType != p.DefaultSampleType {
    		t.Errorf("p.DefaultSampleType = %v\nwant = %v", p.DefaultSampleType, defaultSampleType)
    	}
    	// Clear line info since it is not in the expected samples.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 23:21:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    	taints = []v1.Taint{{Key: v1.TaintNodeUnschedulable, Value: "", Effect: v1.TaintEffectNoSchedule}}
    )
    
    func (p *criticalPaths) sort() {
    	if p[0].MatchNum == p[1].MatchNum && p[0].TopologyValue > p[1].TopologyValue {
    		// Swap TopologyValue to make them sorted alphabetically.
    		p[0].TopologyValue, p[1].TopologyValue = p[1].TopologyValue, p[0].TopologyValue
    	}
    }
    
    func TestPreFilterState(t *testing.T) {
    	tests := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/initialization/Settings.java

        /**
         * <p>Adds the given projects to the build. Each name in the supplied list is treated as the name of a project to
         * add to the build.</p>
         *
         * <p>The supplied name is converted to a project directory relative to the parent directory of the root
         * project directory.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
Back to top