Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 241 for proc (0.08 sec)

  1. src/fmt/format.go

    	// for formatting -1 with %#U ("U+FFFFFFFFFFFFFFFF") which fits
    	// into the already allocated intbuf with a capacity of 68 bytes.
    	prec := 4
    	if f.precPresent && f.prec > 4 {
    		prec = f.prec
    		// Compute space needed for "U+" , number, " '", character, "'".
    		width := 2 + prec + 2 + utf8.UTFMax + 1
    		if width > len(buf) {
    			buf = make([]byte, width)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorDecoratedTest.groovy

            def beanWithDisplayName = create(FinalReadOnlyNonManagedPropertyBean, Describables.of("<display-name>"))
    
            expect:
            bean.prop.toString() == "property 'prop'"
            beanWithDisplayName.prop.toString() == "<display-name> property 'prop'"
        }
    
        def "can attach nested extensions to object"() {
            given:
            def bean = create(Bean)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 22K bytes
    - Viewed (0)
  3. src/math/big/float.go

    	// special case
    	if prec == 0 {
    		z.prec = 0
    		if z.form == finite {
    			// truncate z to 0
    			z.acc = makeAcc(z.neg)
    			z.form = zero
    		}
    		return z
    	}
    
    	// general case
    	if prec > MaxPrec {
    		prec = MaxPrec
    	}
    	old := z.prec
    	z.prec = uint32(prec)
    	if z.prec < old {
    		z.round(0)
    	}
    	return z
    }
    
    func makeAcc(above bool) Accuracy {
    	if above {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    func ProfileLabels(rpt *Report) []string {
    	label := []string{}
    	prof := rpt.prof
    	o := rpt.options
    	if len(prof.Mapping) > 0 {
    		if prof.Mapping[0].File != "" {
    			label = append(label, "File: "+filepath.Base(prof.Mapping[0].File))
    		}
    		if prof.Mapping[0].BuildID != "" {
    			label = append(label, "Build ID: "+prof.Mapping[0].BuildID)
    		}
    	}
    	// Only include comments that do not start with '#'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  5. src/math/big/ratconv_test.go

    		fdec := test.fdec
    		for i := 0; i < 2; i++ {
    			prec, ok := f.FloatPrec()
    			if prec != test.prec || ok != test.ok {
    				t.Errorf("%s: FloatPrec(%s): got prec, ok = %d, %v; want %d, %v", test.f, &f, prec, ok, test.prec, test.ok)
    			}
    			s := f.FloatString(test.prec)
    			if s != fdec {
    				t.Errorf("%s: FloatString(%s, %d): got %s; want %s", test.f, &f, prec, s, fdec)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/validation/ValidationMessageCheckerTest.groovy

            when:
            render conflictingAnnotationsMessage {
                type('Whatever').property('prop')
                inConflict('Input', 'Output')
                includeLink()
            }
    
            then:
            outputEquals """
    Type 'Whatever' property 'prop' has conflicting type annotations declared: @Input, @Output.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  7. src/syscall/exec_plan9.go

    // running process to exit.
    func WaitProcess(pid int, w *Waitmsg) (err error) {
    	procs.Lock()
    	ch := procs.waits[pid]
    	procs.Unlock()
    
    	var wmsg *waitErr
    	if ch != nil {
    		wmsg = <-ch
    		procs.Lock()
    		if procs.waits[pid] == ch {
    			delete(procs.waits, pid)
    		}
    		procs.Unlock()
    	}
    	if wmsg == nil {
    		// ch was missing or ch is closed
    		return NewError("process not found")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. istioctl/pkg/tag/tag.go

    injection labels.`,
    		Example: `  # Create a revision tag from the "1-8-0" revision
      istioctl tag set prod --revision 1-8-0
    
      # Point namespace "test-ns" at the revision pointed to by the "prod" revision tag
      kubectl label ns test-ns istio.io/rev=prod
    
      # Change the revision tag to reference the "1-8-1" revision
      istioctl tag set prod --revision 1-8-1 --overwrite
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. src/runtime/chan_test.go

    				<-myc
    			}
    		}
    	})
    }
    
    func benchmarkChanSync(b *testing.B, work int) {
    	const CallsPerSched = 1000
    	procs := 2
    	N := int32(b.N / CallsPerSched / procs * procs)
    	c := make(chan bool, procs)
    	myc := make(chan int)
    	for p := 0; p < procs; p++ {
    		go func() {
    			for {
    				i := atomic.AddInt32(&N, -1)
    				if i < 0 {
    					break
    				}
    				for g := 0; g < CallsPerSched; g++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:47:35 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  10. tests/integration/helm/upgrade/util.go

    		//    -s templates/revision-tags.yaml --set revision=latest --set revisionTags={prod}
    		helmtest.SetRevisionTag(t, h, "", latestRevisionTag, prodTag, helmtest.ManifestsChartPath, "")
    
    		// change the old namespace that was pointing to the old prod (1-15-0) to point to the
    		// 'latest' revision by setting the `istio.io/rev=prod` label on the namespace
    		err := oldNs.SetLabel(label.IoIstioRev.Name, prodTag)
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top