Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 65 for stringList (0.11 sec)

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

    		gcargs = append(gcargs, "-fgo-pkgpath="+pkgpath)
    	}
    	if p.Internal.LocalPrefix != "" {
    		gcargs = append(gcargs, "-fgo-relative-import-path="+p.Internal.LocalPrefix)
    	}
    
    	args := str.StringList(tools.compiler(), "-c", gcargs, "-o", ofile, forcedGccgoflags)
    	if importcfg != nil {
    		if b.gccSupportsFlag(args[:1], "-fgo-importcfg=/dev/null") {
    			if err := sh.writeFile(objdir+"importcfg", importcfg); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    	Int(name string, def int, usage string) *int
    	Float64(name string, def float64, usage string) *float64
    	String(name string, def string, usage string) *string
    
    	// StringList is similar to String but allows multiple values for a
    	// single flag
    	StringList(name string, def string, usage string) *[]*string
    
    	// ExtraUsage returns any additional text that should be printed after the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/reflect/TypeTokenSubtypeTest.java

      public void testGetSubtypeOf_impossibleWildcard() {
        TypeToken<List<? extends Number>> numberList = new TypeToken<List<? extends Number>>() {};
        abstract class StringList implements List<String> {}
        assertThrows(IllegalArgumentException.class, () -> numberList.getSubtype(StringList.class));
      }
    
      private static class OwnerTypeSubtypingTests extends SubtypeTester {
        @TestSubtype
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/cli.go

    func parseFlags(o *plugin.Options) (*source, []string, error) {
    	flag := o.Flagset
    	// Comparisons.
    	flagDiffBase := flag.StringList("diff_base", "", "Source of base profile for comparison")
    	flagBase := flag.StringList("base", "", "Source of base profile for profile subtraction")
    	// Source options.
    	flagSymbolize := flag.String("symbolize", "", "Options for profile symbolization")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    	if dir != "" {
    		if err := sh.Mkdir(dir); err != nil {
    			return err
    		}
    	}
    
    	gofiles := str.StringList(p.GoFiles)
    	cgofiles := str.StringList(p.CgoFiles)
    	cfiles := str.StringList(p.CFiles)
    	sfiles := str.StringList(p.SFiles)
    	cxxfiles := str.StringList(p.CXXFiles)
    	var objects, cgoObjects, pcCFLAGS, pcLDFLAGS []string
    
    	if p.UsesCgo() || p.UsesSwig() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modfetch/codehost/vcs.go

    		},
    		readZip: func(rev, subdir, remote, target string) []string {
    			pattern := []string{}
    			if subdir != "" {
    				pattern = []string{"-I", subdir + "/**"}
    			}
    			return str.StringList("hg", "archive", "-t", "zip", "--no-decode", "-r", rev, "--prefix=prefix/", pattern, "--", target)
    		},
    	},
    
    	"svn": {
    		vcs:  "svn",
    		init: nil, // no local checkout
    		tags: func(remote string) []string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        assertEquals(StringList.class.getGenericInterfaces()[0], token.getType());
      }
    
      @SuppressWarnings("rawtypes") // Trying to test TypeToken.of(List.class)
      public void testGetClass() {
        TypeToken<List> token = TypeToken.of(List.class);
        assertEquals(new TypeToken<List>() {}, token);
      }
    
      public void testGetType() {
        TypeToken<?> t = TypeToken.of(StringList.class.getGenericInterfaces()[0]);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  8. src/cmd/go/internal/base/base.go

    }
    
    // Run runs the command, with stdout and stderr
    // connected to the go command's own stdout and stderr.
    // If the command fails, Run reports the error using Errorf.
    func Run(cmdargs ...any) {
    	cmdline := str.StringList(cmdargs...)
    	if cfg.BuildN || cfg.BuildX {
    		fmt.Printf("%s\n", strings.Join(cmdline, " "))
    		if cfg.BuildN {
    			return
    		}
    	}
    
    	cmd := exec.Command(cmdline[0], cmdline[1:]...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/cover.go

    	"path/filepath"
    )
    
    // CovData invokes "go tool covdata" with the specified arguments
    // as part of the execution of action 'a'.
    func (b *Builder) CovData(a *Action, cmdargs ...any) ([]byte, error) {
    	cmdline := str.StringList(cmdargs...)
    	args := append([]string{}, cfg.BuildToolexec...)
    	args = append(args, base.Tool("covdata"))
    	args = append(args, cmdline...)
    	return b.Shell(a).runOut(a.Objdir, nil, args)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/run/run.go

    }
    
    // buildRunProgram is the action for running a binary that has already
    // been compiled. We ignore exit status.
    func buildRunProgram(b *work.Builder, ctx context.Context, a *work.Action) error {
    	cmdline := str.StringList(work.FindExecCmd(), a.Deps[0].Target, a.Args)
    	if cfg.BuildN || cfg.BuildX {
    		b.Shell(a).ShowCmd("", "%s", strings.Join(cmdline, " "))
    		if cfg.BuildN {
    			return nil
    		}
    	}
    
    	base.RunStdin(cmdline)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top