Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 284 for proc (0.06 sec)

  1. src/math/big/floatconv_test.go

    		// When formatting values with prec = -1 (shortest representation),
    		// the actually available mantissa precision matters.
    		// For denormalized values, that precision is < 53 (SetFloat64 default).
    		// Compute and set the actual precision explicitly.
    		f := new(Float).SetPrec(actualPrec(test.x)).SetFloat64(test.x)
    		got := f.Text(test.format, test.prec)
    		if got != test.want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 24.3K bytes
    - Viewed (0)
  2. 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)
  3. src/internal/types/testdata/check/issues0.go

    // Issue #26234: Make various field/method lookup errors easier to read by matching cmd/compile's output
    func issue26234a(f *syn.Prog) {
    	// The error message below should refer to the actual package name (syntax)
    	// not the local package name (syn).
    	f.foo /* ERROR "f.foo undefined (type *syntax.Prog has no field or method foo)" */
    }
    
    type T struct {
    	x int
    	E1
    	E2
    }
    
    type E1 struct{ f int }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/helpers_linux.go

    }
    
    // getCgroupProcs takes a cgroup directory name as an argument
    // reads through the cgroup's procs file and returns a list of tgid's.
    // It returns an empty list if a procs file doesn't exists
    func getCgroupProcs(dir string) ([]int, error) {
    	procsFile := filepath.Join(dir, "cgroup.procs")
    	f, err := os.Open(procsFile)
    	if err != nil {
    		if os.IsNotExist(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 11:52:28 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/asm/internal/arch/arm64.go

    // It returns a boolean to indicate success; failure means
    // cond was unrecognized.
    func ARM64Suffix(prog *obj.Prog, cond string) bool {
    	if cond == "" {
    		return true
    	}
    	bits, ok := parseARM64Suffix(cond)
    	if !ok {
    		return false
    	}
    	prog.Scond = bits
    	return true
    }
    
    // parseARM64Suffix parses the suffix attached to an ARM64 instruction.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 09:04:58 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm/obj5.go

    						ctxt.Diag("invalid auto-SPWRITE in non-assembly")
    						ctxt.DiagFlush()
    						log.Fatalf("bad SPWRITE")
    					}
    				}
    			}
    		}
    	}
    }
    
    func (c *ctxt5) stacksplit(p *obj.Prog, framesize int32) *obj.Prog {
    	if c.ctxt.Flag_maymorestack != "" {
    		// Save LR and make room for REGCTXT.
    		const frameSize = 8
    		// MOVW.W R14,$-8(SP)
    		p = obj.Appendp(p, c.newprog)
    		p.As = AMOVW
    		p.Scond |= C_WBIT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/main/java/org/gradleinternal/buildinit/plugins/internal/maven/Maven2Gradle.java

            return projects.stream().filter(project -> {
                Optional<MavenProject> parentIsPartOfThisBuild = projects.stream().filter(proj ->
                    project.getParent() == null || (project.getParent() != null && proj.getArtifactId().equals(project.getParent().getArtifactId()) && proj.getGroupId().equals(project.getParent().getGroupId()))
                ).findFirst();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 15:23:34 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java

            if (fessConfig instanceof SimpleImpl) {
                final Properties prop = new Properties();
                ((SimpleImpl) fessConfig).keySet().stream().forEach(k -> prop.setProperty(k, fessConfig.get(k)));
    
                final ZipEntry entry = new ZipEntry(id + "/fess_config.properties");
                try {
                    zos.putNextEntry(entry);
                    prop.store(zos, getHostInfo());
                } catch (final IOException e) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14K bytes
    - Viewed (0)
  10. src/go/doc/testdata/testing.go

    	ok = true
    	if len(tests) == 0 {
    		fmt.Fprintln(os.Stderr, "testing: warning: no tests to run")
    		return
    	}
    	for _, procs := range cpuList {
    		runtime.GOMAXPROCS(procs)
    		// We build a new channel tree for each run of the loop.
    		// collector merges in one channel all the upstream signals from parallel tests.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 11.8K bytes
    - Viewed (0)
Back to top