Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for oldu (0.19 sec)

  1. src/cmd/cgo/doc.go

    	-gccgopkgpath path
    		The -fgo-pkgpath option to be used with gccgo.
    	-gccgo_define_cgoincomplete
    		Define cgo.Incomplete locally rather than importing it from
    		the "runtime/cgo" package. Used for old gccgo versions.
    	-godefs
    		Write out input file in Go syntax replacing C package
    		names with real values. Used to generate files in the
    		syscall package when bootstrapping a new target.
    	-objdir directory
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  2. api/go1.5.txt

    pkg unicode, const Version = "8.0.0"
    pkg unicode, var Ahom *RangeTable
    pkg unicode, var Anatolian_Hieroglyphs *RangeTable
    pkg unicode, var Hatran *RangeTable
    pkg unicode, var Multani *RangeTable
    pkg unicode, var Old_Hungarian *RangeTable
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Jul 30 21:14:09 GMT 2015
    - 46.6K bytes
    - Viewed (0)
  3. api/go1.13.txt

    pkg unicode, var Dogra *RangeTable
    pkg unicode, var Gunjala_Gondi *RangeTable
    pkg unicode, var Hanifi_Rohingya *RangeTable
    pkg unicode, var Makasar *RangeTable
    pkg unicode, var Medefaidrin *RangeTable
    pkg unicode, var Old_Sogdian *RangeTable
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  4. src/cmd/buildid/buildid.go

    	f.Close()
    	if err != nil {
    		log.Fatal(err)
    	}
    
    	// <= go 1.7 doesn't embed the contentID or actionID, so no slash is present
    	if !strings.Contains(id, "/") {
    		log.Fatalf("%s: build ID is a legacy format...binary too old for this tool", file)
    	}
    
    	newID := id[:strings.LastIndex(id, "/")] + "/" + buildid.HashToString(hash)
    	if len(newID) != len(id) {
    		log.Fatalf("%s: build ID length mismatch %q vs %q", file, id, newID)
    	}
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jun 06 14:30:53 GMT 2022
    - 1.5K bytes
    - Viewed (0)
  5. src/cmd/cgo/gcc.go

    		// and also because -godefs mode still prints the AST.
    		old := *r.Expr
    		*r.Expr = expr
    
    		// Record source-level edit for cgo output.
    		if !r.Done {
    			// Prepend a space in case the earlier code ends
    			// with '/', which would give us a "//" comment.
    			repl := " " + gofmtPos(expr, old.Pos())
    			end := fset.Position(old.End())
    			// Subtract 1 from the column if we are going to
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  6. api/go1.16.txt

    pkg syscall (darwin-arm64), const IP_OLD_FW_ADD = 50
    pkg syscall (darwin-arm64), const IP_OLD_FW_ADD ideal-int
    pkg syscall (darwin-arm64), const IP_OLD_FW_DEL = 51
    pkg syscall (darwin-arm64), const IP_OLD_FW_DEL ideal-int
    pkg syscall (darwin-arm64), const IP_OLD_FW_FLUSH = 52
    pkg syscall (darwin-arm64), const IP_OLD_FW_FLUSH ideal-int
    pkg syscall (darwin-arm64), const IP_OLD_FW_GET = 54
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  7. src/archive/zip/writer_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	for i, wt := range writeTests {
    		testReadFile(t, src.File[i], &wt)
    	}
    
    	// make a new zip file copying the old compressed data.
    	buf2 := new(bytes.Buffer)
    	dst := NewWriter(buf2)
    	for _, f := range src.File {
    		if err := dst.Copy(f); err != nil {
    			t.Fatal(err)
    		}
    	}
    	if err := dst.Close(); err != nil {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Sep 15 19:04:06 GMT 2023
    - 14.1K bytes
    - Viewed (0)
  8. src/cmd/cgo/godefs.go

    	for typ, def := range typedef {
    		if new := override[typ]; new != "" {
    			if id, ok := def.Go.(*ast.Ident); ok {
    				override[id.Name] = new
    			}
    		}
    	}
    
    	// Apply overrides.
    	for old, new := range override {
    		if id := goIdent[old]; id != nil {
    			id.Name = new
    		}
    	}
    
    	// Any names still using the _C syntax are not going to compile,
    	// although in general we don't know whether they all made it
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Sep 08 14:33:35 GMT 2022
    - 4.5K bytes
    - Viewed (0)
  9. doc/godebug.md

    [permitted by the Go 1 compatibility rules](/doc/go1compat).
    Even so, Go provides a mechanism called GODEBUG to
    reduce the impact such changes have on Go developers
    using newer toolchains to compile old code.
    
    A GODEBUG setting is a `key=value` pair
    that controls the execution of certain parts of a Go program.
    The environment variable `GODEBUG`
    can hold a comma-separated list of these settings.
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Tue Apr 16 17:29:58 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  10. api/go1.txt

    pkg syscall (darwin-386), const IP_OLD_FW_ADD ideal-int
    pkg syscall (darwin-386), const IP_OLD_FW_DEL ideal-int
    pkg syscall (darwin-386), const IP_OLD_FW_FLUSH ideal-int
    pkg syscall (darwin-386), const IP_OLD_FW_GET ideal-int
    pkg syscall (darwin-386), const IP_OLD_FW_RESETLOG ideal-int
    pkg syscall (darwin-386), const IP_OLD_FW_ZERO ideal-int
    pkg syscall (darwin-386), const IP_OPTIONS ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
Back to top