Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 140 for ss_flags (0.14 sec)

  1. src/cmd/pack/pack.go

    accepted as a synonym for c.
    
    For more information, run
    	go doc cmd/pack`
    
    func usage() {
    	fmt.Fprintln(os.Stderr, usageMessage)
    	os.Exit(2)
    }
    
    func main() {
    	log.SetFlags(0)
    	log.SetPrefix("pack: ")
    	telemetry.Start()
    	// need "pack op archive" at least.
    	if len(os.Args) < 3 {
    		log.Print("not enough arguments")
    		fmt.Fprintln(os.Stderr)
    		usage()
    	}
    	setOp(os.Args[1])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/io/TempFileCreator.java

                    AclEntry.newBuilder()
                        .setType(ALLOW)
                        .setPrincipal(user)
                        .setPermissions(EnumSet.allOf(AclEntryPermission.class))
                        .setFlags(DIRECTORY_INHERIT, FILE_INHERIT)
                        .build());
            FileAttribute<ImmutableList<AclEntry>> attribute =
                new FileAttribute<ImmutableList<AclEntry>>() {
                  @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 06 17:11:11 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  3. src/log/slog/logger.go

    	// See TestSetDefault.
    	if _, ok := l.Handler().(*defaultHandler); !ok {
    		capturePC := log.Flags()&(log.Lshortfile|log.Llongfile) != 0
    		log.SetOutput(&handlerWriter{l.Handler(), &logLoggerLevel, capturePC})
    		log.SetFlags(0) // we want just the log message, no time or location
    	}
    }
    
    // handlerWriter is an io.Writer that calls a Handler.
    // It is used to link the default log.Logger to the default slog.Logger.
    type handlerWriter struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 18:26:18 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. src/regexp/syntax/parse.go

    	var str []rune
    	var strflags Flags
    	start := 0
    	out := sub[:0]
    	for i := 0; i <= len(sub); i++ {
    		// Invariant: the Regexps that were in sub[0:start] have been
    		// used or marked for reuse, and the slice space has been reused
    		// for out (len(out) <= start).
    		//
    		// Invariant: sub[start:i] consists of regexps that all begin
    		// with str as modified by strflags.
    		var istr []rune
    		var iflags Flags
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/io/TempFileCreator.java

                    AclEntry.newBuilder()
                        .setType(ALLOW)
                        .setPrincipal(user)
                        .setPermissions(EnumSet.allOf(AclEntryPermission.class))
                        .setFlags(DIRECTORY_INHERIT, FILE_INHERIT)
                        .build());
            FileAttribute<ImmutableList<AclEntry>> attribute =
                new FileAttribute<ImmutableList<AclEntry>>() {
                  @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 06 17:11:11 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/build.go

    	-v
    		print the names of packages as they are compiled.
    	-work
    		print the name of the temporary work directory and
    		do not delete it when exiting.
    	-x
    		print the commands.
    	-asmflags '[pattern=]arg list'
    		arguments to pass on each go tool asm invocation.
    	-buildmode mode
    		build mode to use. See 'go help buildmode' for more.
    	-buildvcs
    		Whether to stamp binaries with version control information
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

                this.andx.headerStart = this.headerStart;
                this.andx.setCommand(this.andxCommand);
                this.andx.setErrorCode(getErrorCode());
                this.andx.setFlags(getFlags());
                this.andx.setFlags2(getFlags2());
                this.andx.setTid(getTid());
                this.andx.setPid(getPid());
                this.andx.setUid(getUid());
                this.andx.setMid(getMid());
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Nov 28 10:56:27 UTC 2022
    - 14.3K bytes
    - Viewed (0)
  8. test/rangegen.go

    package main
    
    import (
    	"bytes"
    	"fmt"
    	"log"
    	"math/bits"
    	"os"
    	"os/exec"
    	"strings"
    )
    
    const verbose = false
    
    func main() {
    	long := len(os.Args) > 1 && os.Args[1] == "long"
    	log.SetFlags(0)
    	log.SetPrefix("rangegen: ")
    
    	if !long && bits.UintSize == 32 {
    		// Skip this test on 32-bit platforms, where it seems to
    		// cause timeouts and build problems.
    		skip()
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 23:35:19 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  9. src/cmd/distpack/pack.go

    	modVersionPrefix = "v0.0.1"
    )
    
    var (
    	goroot     string
    	gohostos   string
    	gohostarch string
    	goos       string
    	goarch     string
    )
    
    func main() {
    	log.SetPrefix("distpack: ")
    	log.SetFlags(0)
    	telemetry.Start()
    	flag.Usage = usage
    	flag.Parse()
    	telemetry.Inc("distpack/invocations")
    	telemetry.CountFlags("distpack/flag:", *flag.CommandLine)
    	if flag.NArg() != 0 {
    		usage()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. src/cmd/doc/main.go

    	fmt.Fprintf(os.Stderr, "For more information run\n")
    	fmt.Fprintf(os.Stderr, "\tgo help doc\n\n")
    	fmt.Fprintf(os.Stderr, "Flags:\n")
    	flag.PrintDefaults()
    	os.Exit(2)
    }
    
    func main() {
    	log.SetFlags(0)
    	log.SetPrefix("doc: ")
    	telemetry.Start()
    	dirsInit()
    	err := do(os.Stdout, flag.CommandLine, os.Args[1:])
    	if err != nil {
    		log.Fatal(err)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top