Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 236 for proc (0.05 sec)

  1. pilot/pkg/config/kube/crdclient/client_test.go

    		if selectedLabels == nil || reflect.DeepEqual(selectedLabels, labels[1]) {
    			expectedCanary = append(expectedCanary, TranslateObject(obj, gvk.ServiceEntry, ""))
    		}
    		// prod revision should receive only global objects and objects with the prod revision
    		if selectedLabels == nil || reflect.DeepEqual(selectedLabels, labels[2]) {
    			expectedProd = append(expectedProd, TranslateObject(obj, gvk.ServiceEntry, ""))
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 02:58:52 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. .gitignore

    security/cmd/node_agent/na/cert_file
    security/cmd/node_agent/na/pkey
    # istioctl bash completion file
    tools/istioctl.bash
    vendor
    # Contains the built artifacts
    out/
    etc/
    var/
    # Go compiled tests
    *.test
    # Profiles
    *.prof
    # MacOS extended attributes
    ._*
    # MacOS Desktop Services Store
    .DS_Store
    /manifests/charts/**/charts/
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 21:20:01 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicObjectIntegrationTest.groovy

                    @Input
                    def String prop
                    void doStuff(Action<Task> action) { action.execute(this) }
                }
                tasks.withType(GroovyTask) { conventionMapping.prop = { '[default]' } }
                task test(type: GroovyTask)
                assert test.prop == '[default]'
                test {
                    description 'does something'
                    prop 'value'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  4. src/testing/benchmark.go

    	if len(*matchBenchmarks) == 0 {
    		return true
    	}
    	// Collect matching benchmarks and determine longest name.
    	maxprocs := 1
    	for _, procs := range cpuList {
    		if procs > maxprocs {
    			maxprocs = procs
    		}
    	}
    	ctx := &benchContext{
    		match:  newMatcher(matchString, *matchBenchmarks, "-test.bench", *skip),
    		extLen: len(benchmarkName("", maxprocs)),
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    		}
    		if ps.llvmStyle {
    			skipParens = true
    		}
    	}
    
    	if skipParens {
    		ps.print(left)
    	} else if ps.llvmStyle {
    		prec := precPrimary
    		if p, ok := left.(hasPrec); ok {
    			prec = p.prec()
    		}
    		needsParen := false
    		if prec > b.prec() {
    			needsParen = true
    		}
    		if needsParen {
    			ps.startScope('(')
    		}
    
    		ps.print(left)
    
    		if needsParen {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/asm7.go

    	cursym     *obj.LSym
    	blitrl     *obj.Prog
    	elitrl     *obj.Prog
    	autosize   int32
    	extrasize  int32
    	instoffset int64
    	pc         int64
    	pool       struct {
    		start uint32
    		size  uint32
    	}
    }
    
    const (
    	funcAlign = 16
    )
    
    const (
    	REGFROM = 1
    )
    
    type Optab struct {
    	as    obj.As
    	a1    uint8 // Prog.From
    	a2    uint8 // 2nd source operand, Prog.Reg or Prog.RestArgs[XXX]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  7. src/runtime/mgc.go

    			trackLimiterEvent = pp.limiterEvent.start(limiterEventIdleMarkWork, startTime)
    		}
    
    		decnwait := atomic.Xadd(&work.nwait, -1)
    		if decnwait == work.nproc {
    			println("runtime: work.nwait=", decnwait, "work.nproc=", work.nproc)
    			throw("work.nwait was > work.nproc")
    		}
    
    		systemstack(func() {
    			// Mark our goroutine preemptible so its stack
    			// can be scanned. This lets two mark workers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/internal/upload/run.go

    		progPkgPath = strings.TrimSuffix(filepath.Base(os.Args[0]), ".exe")
    	}
    	prog := path.Base(progPkgPath)
    	progVers := info.Main.Version
    	if progVers == "(devel)" { // avoid special characters in created file names
    		progVers = "devel"
    	}
    	logBase := strings.ReplaceAll(
    		fmt.Sprintf("%s-%s-%s-%4d%02d%02d-%d.log", prog, progVers, goVers, year, month, day, os.Getpid()),
    		" ", "")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. src/math/big/int_test.go

    		if int64(r.a) < 0 || int64(r.b) < 0 {
    			continue
    		}
    		prod := tmp.MulRange(int64(r.a), int64(r.b)).String()
    		if prod != r.prod {
    			t.Errorf("#%da: got %s; want %s", i, prod, r.prod)
    		}
    	}
    	// test other ranges
    	for i, r := range mulRangesZ {
    		prod := tmp.MulRange(r.a, r.b).String()
    		if prod != r.prod {
    			t.Errorf("#%db: got %s; want %s", i, prod, r.prod)
    		}
    	}
    }
    
    func TestBinomial(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  10. pkg/scheduler/scheduler.go

    	if len(ignoredExtendedResources) == 0 {
    		return fExtenders, nil
    	}
    
    	for i := range profiles {
    		prof := &profiles[i]
    		var found = false
    		for k := range prof.PluginConfig {
    			if prof.PluginConfig[k].Name == noderesources.Name {
    				// Update the existing args
    				pc := &prof.PluginConfig[k]
    				args, ok := pc.Args.(*schedulerapi.NodeResourcesFitArgs)
    				if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
Back to top