Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for Banker (0.3 sec)

  1. docs/en/docs/img/sponsors/doist-banner.svg

    doist-banner.svg...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 01 08:58:40 UTC 2022
    - 52.2K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/lib.go

    	return nil
    }
    
    // extld returns the current external linker.
    func (ctxt *Link) extld() []string {
    	if len(flagExtld) == 0 {
    		// Return the default external linker for the platform.
    		// This only matters when link tool is called directly without explicit -extld,
    		// go tool already passes the correct linker in other cases.
    		switch buildcfg.GOOS {
    		case "darwin", "freebsd", "openbsd":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    [[sec:configuring_the_compiler_assembler_and_linker]]
    == Configuring the compiler, assembler and linker
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    		install(arg)
    	}
    }
    
    // Clean deletes temporary objects.
    func cmdclean() {
    	xflagparse(0)
    	clean()
    }
    
    // Banner prints the 'now you've installed Go' banner.
    func cmdbanner() {
    	xflagparse(0)
    	banner()
    }
    
    func banner() {
    	if vflag > 0 {
    		xprintf("\n")
    	}
    	xprintf("---\n")
    	xprintf("Installed Go for %s/%s in %s\n", goos, goarch, goroot)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ppc64/asm.go

    	//
    	// 2) We reserve space for a pointer in the .plt section (once
    	//    per referenced dynamic function).  .plt is a data
    	//    section filled solely by the dynamic linker (more like
    	//    .plt.got on other architectures).  Initially, the
    	//    dynamic linker will fill each slot with a pointer to the
    	//    corresponding x@plt entry point.
    	//
    	// 3) We generate a "call stub" x_stub based on the properties
    	//    of the caller.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  6. src/cmd/dist/test.go

    	flag.BoolVar(&t.race, "race", false, "run in race builder mode (different set of tests)")
    	flag.BoolVar(&t.compileOnly, "compile-only", false, "compile tests, but don't run them")
    	flag.StringVar(&t.banner, "banner", "##### ", "banner prefix; blank means no section banners")
    	flag.StringVar(&t.runRxStr, "run", "",
    		"run only those tests matching the regular expression; empty means to run all. "+
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  7. internal/bucket/lifecycle/lifecycle_test.go

    			objectModTime:  time.Now().UTC().Add(-1 * time.Hour), // Created one hour ago
    			isDelMarker:    true,
    			expectedAction: DeleteVersionAction,
    		},
    		// Should not expire a delete marker; ExpiredObjectDeleteAllVersions applies only when current version is not a DEL marker.
    		{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. src/cmd/cgo/out.go

    		// cgo_export_static refers to a symbol by its linker
    		// name, so set the linker name of the Go wrapper.
    		fmt.Fprintf(fgo2, "//go:linkname _cgoexp%s_%s _cgoexp%s_%s\n", cPrefix, exp.ExpName, cPrefix, exp.ExpName)
    		// In external linking mode, the Go linker sees the Go
    		// wrapper, but not the C wrapper. For this case,
    		// export the Go wrapper so the host linker can
    		// resolve the reference from the C wrapper to the Go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. cmd/xl-storage-format-v2.go

    }
    
    // xlMetaV2DeleteMarker defines the data struct for the delete marker journal type
    type xlMetaV2DeleteMarker struct {
    	VersionID [16]byte          `json:"ID" msg:"ID"`                               // Version ID for delete marker
    	ModTime   int64             `json:"MTime" msg:"MTime"`                         // Object delete marker modified time
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. src/cmd/link/internal/loader/loader.go

    // used when loading host objects (sections from the host object
    // become regular linker symbols and symbols go on the Sub list of
    // their section) and for constructing the global offset table when
    // internally linking a dynamic executable.
    //
    // Note that in later stages of the linker, we set Outer(S) to some
    // container symbol C, but don't set Sub(C). Thus we have two
    // distinct scenarios:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top