Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for libName (0.2 sec)

  1. src/cmd/go/internal/work/build.go

    //	a/... b/... ---> liba/c,b/d.so - all matching import paths
    //
    // Name parts are joined with ','.
    func libname(args []string, pkgs []*load.Package) (string, error) {
    	var libname string
    	appendName := func(arg string) {
    		if libname == "" {
    			libname = arg
    		} else {
    			libname += "," + arg
    		}
    	}
    	var haveNonMeta bool
    	for _, arg := range args {
    		if search.IsMetaPackage(arg) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/action.go

    func (b *Builder) buildmodeShared(mode, depMode BuildMode, args []string, pkgs []*load.Package, a1 *Action) *Action {
    	name, err := libname(args, pkgs)
    	if err != nil {
    		base.Fatalf("%v", err)
    	}
    	return b.linkSharedAction(mode, depMode, name, a1)
    }
    
    // linkSharedAction takes a grouping action a1 corresponding to a list of built packages
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  3. src/text/scanner/scanner.go

    		}
    	}
    
    	// fractional part
    	if seenDot {
    		tok = Float
    		if prefix == 'o' || prefix == 'b' {
    			s.error("invalid radix point in " + litname(prefix))
    		}
    		ch, ds = s.digits(ch, base, &invalid)
    		digsep |= ds
    	}
    
    	if digsep&1 == 0 {
    		s.error(litname(prefix) + " has no digits")
    	}
    
    	// exponent
    	if e := lower(ch); (e == 'e' || e == 'p') && s.Mode&ScanFloats != 0 {
    		switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. LICENSES/vendor/sigs.k8s.io/yaml/LICENSE

    # The forked go-yaml.v3 library under this project is covered by two
    different licenses (MIT and Apache):
    
    #### MIT License ####
    
    The following files were ported to Go from C files of libyaml, and thus
    are still covered by their original MIT license, with the additional
    copyright staring in 2011 when the project was ported over:
    
        apic.go emitterc.go parserc.go readerc.go scannerc.go
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:42:44 UTC 2024
    - 15.9K bytes
    - Viewed (0)
Back to top