Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for aName (0.03 sec)

  1. src/cmd/cgo/out.go

    			fmt.Fprintf(fgcch, "struct %s_return {\n", exp.ExpName)
    			forFieldList(fntype.Results,
    				func(i int, aname string, atype ast.Expr) {
    					fmt.Fprintf(fgcch, "\t%s r%d;", p.cgoType(atype).C, i)
    					if len(aname) > 0 {
    						fmt.Fprintf(fgcch, " /* %s */", aname)
    					}
    					fmt.Fprint(fgcch, "\n")
    				})
    			fmt.Fprintf(fgcch, "};\n")
    			gccResult = "struct " + exp.ExpName + "_return"
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. src/crypto/tls/tls_test.go

    			aSuite, bSuite := cipherSuiteByID(a), cipherSuiteByID(b)
    			aName, bName := CipherSuiteName(a), CipherSuiteName(b)
    			// * < RC4
    			if !strings.Contains(aName, "RC4") && strings.Contains(bName, "RC4") {
    				return -1
    			} else if strings.Contains(aName, "RC4") && !strings.Contains(bName, "RC4") {
    				return +1
    			}
    			// * < CBC_SHA256
    			if !strings.Contains(aName, "CBC_SHA256") && strings.Contains(bName, "CBC_SHA256") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  3. src/time/time_test.go

    		t.Errorf("sec = %d, nsec = %d, want sec = %d, nsec = 0", t2.Second(), t2.Nanosecond(), sec)
    	}
    }
    
    func equalTimeAndZone(a, b Time) bool {
    	aname, aoffset := a.Zone()
    	bname, boffset := b.Zone()
    	return a.Equal(b) && aoffset == boffset && aname == bname
    }
    
    var gobTests = []Time{
    	Date(0, 1, 2, 3, 4, 5, 6, UTC),
    	Date(7, 8, 9, 10, 11, 12, 13, FixedZone("", 0)),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
Back to top