Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 140 for ss_flags (0.15 sec)

  1. src/cmd/go/internal/modfetch/codehost/shell.go

    	"cmd/go/internal/modfetch/codehost"
    )
    
    func usage() {
    	fmt.Fprintf(os.Stderr, "usage: go run shell.go vcs remote\n")
    	os.Exit(2)
    }
    
    func main() {
    	cfg.GOMODCACHE = "/tmp/vcswork"
    	log.SetFlags(0)
    	log.SetPrefix("shell: ")
    	flag.Usage = usage
    	flag.Parse()
    	if flag.NArg() != 2 {
    		usage()
    	}
    
    	repo, err := codehost.NewRepo(flag.Arg(0), flag.Arg(1))
    	if err != nil {
    		log.Fatal(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  2. src/encoding/gob/encgen.go

    		"Uint64",
    		"0",
    		`state.encodeUint(x)`,
    	},
    	{
    		"uintptr",
    		"Uintptr",
    		"0",
    		`state.encodeUint(uint64(x))`,
    	},
    	// uint8 Handled separately.
    }
    
    func main() {
    	log.SetFlags(0)
    	log.SetPrefix("encgen: ")
    	flag.Parse()
    	if flag.NArg() != 0 {
    		log.Fatal("usage: encgen [--output filename]")
    	}
    	var b bytes.Buffer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:39:09 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/addmod.go

    	log.Fatalf(format, args...)
    }
    
    const goCmd = "go"
    
    func main() {
    	flag.Usage = usage
    	flag.Parse()
    	if flag.NArg() == 0 {
    		usage()
    	}
    
    	log.SetPrefix("addmod: ")
    	log.SetFlags(0)
    
    	var err error
    	tmpdir, err = os.MkdirTemp("", "addmod-")
    	if err != nil {
    		log.Fatal(err)
    	}
    
    	run := func(command string, args ...string) string {
    		cmd := exec.Command(command, args...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 30 19:41:54 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. src/internal/trace/testdata/mktests.go

    package main
    
    import (
    	"bytes"
    	"fmt"
    	"internal/trace/raw"
    	"internal/trace/version"
    	"internal/txtar"
    	"io"
    	"log"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"regexp"
    )
    
    func main() {
    	log.SetFlags(0)
    	ctx, err := newContext()
    	if err != nil {
    		log.Fatal(err)
    	}
    	if err := ctx.runGenerators(); err != nil {
    		log.Fatal(err)
    	}
    	if err := ctx.runTestProg("./testprog/annotations.go"); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/test.go

    					ImportPos:  p.Internal.Build.XTestImportPos,
    					Directives: p.Internal.Build.XTestDirectives,
    				},
    				Imports:    ximports,
    				RawImports: rawXTestImports,
    
    				Asmflags:       p.Internal.Asmflags,
    				Gcflags:        p.Internal.Gcflags,
    				Ldflags:        p.Internal.Ldflags,
    				Gccgoflags:     p.Internal.Gccgoflags,
    				Embed:          xtestEmbed,
    				OrigImportPath: p.Internal.OrigImportPath,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  6. src/syscall/fs_wasip1.go

    //go:wasmimport wasi_snapshot_preview1 path_filestat_set_times
    //go:noescape
    func path_filestat_set_times(fd int32, flags lookupflags, path unsafe.Pointer, pathLen size, atim timestamp, mtim timestamp, fstflags fstflags) Errno
    
    //go:wasmimport wasi_snapshot_preview1 path_link
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  7. src/runtime/os_linux.go

    	}
    	sa.sa_handler = fn
    	sigaction(i, &sa, nil)
    }
    
    //go:nosplit
    //go:nowritebarrierrec
    func setsigstack(i uint32) {
    	var sa sigactiont
    	sigaction(i, nil, &sa)
    	if sa.sa_flags&_SA_ONSTACK != 0 {
    		return
    	}
    	sa.sa_flags |= _SA_ONSTACK
    	sigaction(i, &sa, nil)
    }
    
    //go:nosplit
    //go:nowritebarrierrec
    func getsig(i uint32) uintptr {
    	var sa sigactiont
    	sigaction(i, nil, &sa)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  8. pkg/kube/inject/webhook_test.go

    // This allows us to fully simulate what will actually happen at run time.
    func writeInjectionSettings(t testing.TB, fname string, setFlags []string, inFilePath string) {
    	// add --set installPackagePath=<path to charts snapshot>
    	setFlags = append(setFlags, "installPackagePath="+defaultInstallPackageDir(), "profile=empty", "components.pilot.enabled=true")
    	var inFilenames []string
    	if inFilePath != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 39K bytes
    - Viewed (1)
  9. operator/cmd/mesh/install.go

    			warnMarker, operatorVer.OperatorCodeBaseVersion)
    	}
    
    	setFlags := applyFlagAliases(iArgs.Set, iArgs.ManifestsPath, iArgs.Revision)
    
    	_, iop, err := manifest.GenerateConfig(iArgs.InFilenames, setFlags, iArgs.Force, kubeClient, l)
    	if err != nil {
    		return fmt.Errorf("generate config: %v", err)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go

    	Useraudit    uint32
    	Blksize      int32
    	Creatim31    [4]byte
    	AuditID      [16]byte
    	_            [4]byte // rsrvd1
    	File_tag     struct {
    		Ccsid   uint16
    		Txtflag uint16 // aggregating Txflag:1 deferred:1 rsvflags:14
    	}
    	CharsetID [8]byte
    	Blocks    int64
    	Genvalue  uint32
    	Reftim31  [4]byte
    	Fid       [8]byte
    	Filefmt   byte
    	Fspflag2  byte
    	_         [2]byte // rsrvd2
    	Ctimemsec int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top