Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 6,081 for f$ (0.07 sec)

  1. src/crypto/ecdsa/testdata/SigVer.rsp.bz2

    d9fa54d0300a6ac74936 Result = F (1 - Message changed) Msg = fd5d8331e5cdd7f205bd Qx = f4fd02f3d224727e156a Qy = e7aa734828ef326259f9 R = 9f57e28f69d2ebd96f6d S = 8cfe716488479e04500c Result = F (4 - Q changed) Msg = 0f05382e2df448462075 Qx = 0fdb8faf52d8f46229cc Qy = 96c8d1946528bdd2c14c R = c53c0ce7d408278552a5 S = be7453a12693ce7812fe Result = F (4 - Q changed) Msg = 826ca168835f0d8b3005 Qx = 240431da69703b32ba2a Qy = 13beb5198ee00abdcfb2 R = ad03bdf64e3450407a2a S = 7b55db9abf2045e2dc7c Result = F (1 - Message...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 93.2K bytes
    - Viewed (0)
  2. test/fixedbugs/issue12577.go

    	y2 float64 = z2
    	y3 float64 = z3
    )
    
    func test32(f float32) {
    	if f != 0 || math.Signbit(float64(f)) {
    		println("BUG: got", f, "want 0.0")
    		return
    	}
    }
    
    func test64(f float64) {
    	if f != 0 || math.Signbit(f) {
    		println("BUG: got", f, "want 0.0")
    		return
    	}
    }
    
    func main() {
    	if f := -x0; f != 0 || !math.Signbit(float64(f)) {
    		println("BUG: got", f, "want -0.0")
    	}
    
    	test32(-0.0)
    	test32(x0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 22:11:11 UTC 2015
    - 1011 bytes
    - Viewed (0)
  3. src/go/doc/filter.go

    	}
    	return a[0:w]
    }
    
    // Filter eliminates documentation for names that don't pass through the filter f.
    // TODO(gri): Recognize "Type.Method" as a name.
    func (p *Package) Filter(f Filter) {
    	p.Consts = filterValues(p.Consts, f)
    	p.Vars = filterValues(p.Vars, f)
    	p.Types = filterTypes(p.Types, f)
    	p.Funcs = filterFuncs(p.Funcs, f)
    	p.Doc = "" // don't show top-level package doc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/lockedfile/internal/filelock/filelock_test.go

    	t.Logf("Unlock(fd %d) = %v", f.Fd(), err)
    	if err != nil {
    		t.Fail()
    	}
    }
    
    func mustTempFile(t *testing.T) (f *os.File, remove func()) {
    	t.Helper()
    
    	base := filepath.Base(t.Name())
    	f, err := os.CreateTemp("", base)
    	if err != nil {
    		t.Fatalf(`os.CreateTemp("", %q) = %v`, base, err)
    	}
    	t.Logf("fd %d = %s", f.Fd(), f.Name())
    
    	return f, func() {
    		f.Close()
    		os.Remove(f.Name())
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 22:37:50 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. pkg/kube/portforwarder.go

    		// The forwarder is now ready.
    		return nil
    	}
    }
    
    func (f *forwarder) Address() string {
    	return net.JoinHostPort(f.localAddress, strconv.Itoa(f.localPort))
    }
    
    func (f *forwarder) Close() {
    	close(f.stopCh)
    	// Closing the stop channel should close anything
    	// opened by f.forwarder.ForwardPorts()
    }
    
    func (f *forwarder) ErrChan() <-chan error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 02:12:37 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/deadcode.go

    // The caller should call f.Cache.freeBoolSlice(live) when it is done with it.
    func findlive(f *Func) (reachable []bool, live []bool) {
    	reachable = ReachableBlocks(f)
    	var order []*Value
    	live, order = liveValues(f, reachable)
    	f.Cache.freeValueSlice(order)
    	return
    }
    
    // ReachableBlocks returns the reachable blocks in f.
    func ReachableBlocks(f *Func) []bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:29:01 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  7. src/cmd/gofmt/testdata/rewrite4.input

    // Some more test cases.
    func _() {
    	_ = (-x).f
    	_ = (*x).f
    	_ = (&x).f
    	_ = (!x).f
    	_ = (-x.f)
    	_ = (*x.f)
    	_ = (&x.f)
    	_ = (!x.f)
    	(-x).f()
    	(*x).f()
    	(&x).f()
    	(!x).f()
    	_ = (-x.f())
    	_ = (*x.f())
    	_ = (&x.f())
    	_ = (!x.f())
    
    	_ = ((-x)).f
    	_ = ((*x)).f
    	_ = ((&x)).f
    	_ = ((!x)).f
    	_ = ((-x.f))
    	_ = ((*x.f))
    	_ = ((&x.f))
    	_ = ((!x.f))
    	((-x)).f()
    	((*x)).f()
    	((&x)).f()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 22 00:25:13 UTC 2014
    - 1.1K bytes
    - Viewed (0)
  8. test/typeparam/issue50417.go

    // implications on the spec. See issue #51576.
    
    /*
    type Sf struct {
    	f int
    }
    
    func f0[P Sf](p P) {
    	_ = p.f
    	p.f = 0
    }
    
    func f0t[P ~struct{ f int }](p P) {
    	_ = p.f
    	p.f = 0
    }
    
    var _ = f0[Sf]
    var _ = f0t[Sf]
    
    func f1[P interface {
    	~struct{ f int }
    	m()
    }](p P) {
    	_ = p.f
    	p.f = 0
    	p.m()
    }
    
    var _ = f1[Sfm]
    
    type Sm struct{}
    
    func (Sm) m() {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 09 21:26:42 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  9. test/declbad.go

    		_ = i
    	}
    	{
    		// change of type for f
    		i, f, s := f3()
    		f, g, t := f3() // ERROR "redeclared|cannot assign|incompatible|cannot use"
    		_, _, _, _, _ = i, f, s, g, t
    	}
    	{
    		// change of type for i
    		i, f, s := f3()
    		j, i, t := f3() // ERROR "redeclared|cannot assign|incompatible|cannot use"
    		_, _, _, _, _ = i, f, s, j, t
    	}
    	{
    		// no new variables
    		i, f, s := f3()
    		i, f := f2() // ERROR "redeclared|no new"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 14 07:12:37 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/regalloc_test.go

    			Exit("mem5"),
    		),
    	)
    	flagalloc(f.f)
    	regalloc(f.f)
    	checkFunc(f.f)
    	// Spill should be moved to exit2.
    	if numSpills(f.blocks["loop1"]) != 0 {
    		t.Errorf("spill present from loop1")
    	}
    	if numSpills(f.blocks["loop2"]) != 0 {
    		t.Errorf("spill present in loop2")
    	}
    	if numSpills(f.blocks["exit1"]) != 0 {
    		t.Errorf("spill present in exit1")
    	}
    	if numSpills(f.blocks["exit2"]) != 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top