Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 170 for proc (0.03 sec)

  1. tests/integration/pilot/revisions/revision_tag_test.go

    				error    string
    			}{
    				{
    					"prod tag pointed to stable",
    					"prod",
    					"stable",
    					"istio.io/rev=prod",
    					"",
    				},
    				{
    					"prod tag pointed to canary",
    					"prod",
    					"canary",
    					"istio.io/rev=prod",
    					"",
    				},
    				{
    					"tag pointed to non existent revision",
    					"prod",
    					"fake-revision",
    					"istio.io/rev=prod",
    					"cannot modify tag",
    				},
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/ProjectConfigurationIntegrationTest.groovy

                allprojects { p ->
                    println "[1] Adding afterEvaluate for $p.name"
                    p.afterEvaluate new Action<Project>() {
                        void execute(Project proj) {
                            println "[1] afterEvaluate $proj.name"
                        }
                    }
                }
    
                project(':a') {
                    println "[2] Adding evaluationDependsOn"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. testing/performance/src/templates/java-source/Production.java

        }
    
        public String getProperty() {
            return property;
        }
    <% propertyCount.times { %>
        private String prop${it};
    
        public String getProp${it}() {
            return prop${it};
        }
    
        public void setProp${it}(String value) {
            prop${it} = value;
        }
    <% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. src/internal/fuzz/pcg.go

    func (r *pcgRand) uint32n(n uint32) uint32 {
    	v := r.uint32()
    	prod := uint64(v) * uint64(n)
    	low := uint32(prod)
    	if low < n {
    		thresh := uint32(-int32(n)) % n
    		for low < thresh {
    			v = r.uint32()
    			prod = uint64(v) * uint64(n)
    			low = uint32(prod)
    		}
    	}
    	return uint32(prod >> 32)
    }
    
    // exp2 generates n with probability 1/2^(n+1).
    func (r *pcgRand) exp2() int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:28:14 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. tests/integration/telemetry/api/setup_test.go

    	}
    
    	proxyMd := `{"proxyMetadata": {"OUTPUT_CERTS": "/etc/certs/custom"}}`
    	prom := echo.Config{
    		// mock prom instance is used to mock a prometheus server, which will visit other echo instance /metrics
    		// endpoint with proxy provisioned certs.
    		Service: "mock-prom",
    		Subsets: []echo.SubsetConfig{
    			{
    				Annotations: map[string]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/testprog/gc-stress.go

    	for i := range ballast {
    		ballast[i] = new([1024]*node)
    		for j := range ballast[i] {
    			ballast[i][j] = &node{
    				data: [128]byte{1, 2, 3, 4},
    			}
    		}
    	}
    
    	procs := runtime.GOMAXPROCS(-1)
    	sink = make([][]byte, procs)
    
    	for i := 0; i < procs; i++ {
    		i := i
    		go func() {
    			for {
    				sink[i] = make([]byte, 4<<10)
    			}
    		}()
    	}
    	// Increase the chance that we end up starting and stopping
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. src/math/big/floatmarsh.go

    	if x == nil {
    		return nil, nil
    	}
    
    	// determine max. space (bytes) required for encoding
    	sz := 1 + 1 + 4 // version + mode|acc|form|neg (3+2+2+1bit) + prec
    	n := 0          // number of mantissa words
    	if x.form == finite {
    		// add space for mantissa and exponent
    		n = int((x.prec + (_W - 1)) / _W) // required mantissa length in words for given precision
    		// actual mantissa slice could be shorter (trailing 0's) or longer (unused bits):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. src/internal/trace/testdata/testprog/futile-wakeup.go

    	}
    
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(8))
    	c0 := make(chan int, 1)
    	c1 := make(chan int, 1)
    	c2 := make(chan int, 1)
    	const procs = 2
    	var done sync.WaitGroup
    	done.Add(4 * procs)
    	for p := 0; p < procs; p++ {
    		const iters = 1e3
    		go func() {
    			trace.WithRegion(context.Background(), "special", func() {
    				for i := 0; i < iters; i++ {
    					runtime.Gosched()
    					c0 <- 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. src/math/big/bits_test.go

    // to prec bits according to mode.
    func (x Bits) round(prec uint, mode RoundingMode) *Float {
    	x = x.norm()
    
    	// determine range
    	var min, max int
    	for i, b := range x {
    		if i == 0 || b < min {
    			min = b
    		}
    		if i == 0 || b > max {
    			max = b
    		}
    	}
    	prec0 := uint(max + 1 - min)
    	if prec >= prec0 {
    		return x.Float()
    	}
    	// prec < prec0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. operator/cmd/mesh/profile-list_test.go

    	}
    	output := out.String()
    	expectedProfiles := []string{"default", "demo", "empty", "minimal", "openshift", "preview", "remote"}
    	for _, prof := range expectedProfiles {
    		g.Expect(output).To(ContainSubstring(prof))
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 06:27:07 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top