Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,346 for What (0.24 sec)

  1. src/cmd/compile/internal/types/fmt.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package types
    
    import (
    	"bytes"
    	"encoding/binary"
    	"fmt"
    	"strconv"
    	"sync"
    
    	"cmd/compile/internal/base"
    	"cmd/internal/notsha256"
    )
    
    // BuiltinPkg is a fake package that declares the universe block.
    var BuiltinPkg *Pkg
    
    // LocalPkg is the package being compiled.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 15:41:17 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/mvs/mvs.go

    	// pseudo-versions and retracted versions — that may be selected as transitive
    	// requirements of other modules.
    	//
    	// If one of those requirements pulls the version back up above the version
    	// identified by reqs.Previous, then the transitive dependencies of that that
    	// initially-downgraded version should no longer matter — in particular, we
    	// should not add new dependencies on module paths that nothing else in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:58:12 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/exec_windows.go

    // or any program that uses CommandLineToArgv.
    func ComposeCommandLine(args []string) string {
    	if len(args) == 0 {
    		return ""
    	}
    
    	// Per https://learn.microsoft.com/en-us/windows/win32/api/shellapi/nf-shellapi-commandlinetoargvw:
    	// “This function accepts command lines that contain a program name; the
    	// program name can be enclosed in quotation marks or not.”
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    // change sets that provoke the failure.
    //
    // The target must cooperate with bisect by accepting a change pattern
    // and then enabling and reporting the changes that match that pattern.
    // The change pattern is passed to the target by substituting it anywhere
    // the string PATTERN appears in the environment values or the command
    // arguments. For each change that matches the pattern, the target must
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  5. src/compress/flate/example_test.go

    // The downside to using a dictionary is that the compressor and decompressor
    // must agree in advance what dictionary to use.
    func Example_dictionary() {
    	// The dictionary is a string of bytes. When compressing some input data,
    	// the compressor will attempt to substitute substrings with matches found
    	// in the dictionary. As such, the dictionary should only contain substrings
    	// that are expected to be found in the actual data stream.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 12 18:42:35 UTC 2016
    - 6.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/flagalloc.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ssa
    
    // flagalloc allocates the flag register among all the flag-generating
    // instructions. Flag values are recomputed if they need to be
    // spilled/restored.
    func flagalloc(f *Func) {
    	// Compute the in-register flag value we want at the end of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  7. src/cmd/cover/func.go

    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file implements the visitor that computes the (line, column)-(line-column) range for each function.
    
    package main
    
    import (
    	"bufio"
    	"bytes"
    	"encoding/json"
    	"errors"
    	"fmt"
    	"go/ast"
    	"go/parser"
    	"go/token"
    	"io"
    	"os"
    	"os/exec"
    	"path"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/modfile.go

    		// version that we fetched lacks an explicit go.mod file: if the go.mod file
    		// is explicit, then it should match exactly (to ensure that imports of other
    		// packages within the module are interpreted correctly). Unfortunately, we
    		// can't determine that information from the module proxy protocol: we'll have
    		// to leave that validation for when we load actual packages from within the
    		// module.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 17:53:40 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/base/goflags.go

    func SetFromGOFLAGS(flags *flag.FlagSet) {
    	InitGOFLAGS()
    
    	// This loop is similar to flag.Parse except that it ignores
    	// unknown flags found in goflags, so that setting, say, GOFLAGS=-ldflags=-w
    	// does not break commands that don't have a -ldflags.
    	// It also adjusts the output to be clear that the reported problem is from $GOFLAGS.
    	where := "$GOFLAGS"
    	if runtime.GOOS == "windows" {
    		where = "%GOFLAGS%"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 14:42:39 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/internal/crashmonitor/monitor.go

    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package crashmonitor
    
    // This file defines a monitor that reports arbitrary Go runtime
    // crashes to telemetry.
    
    import (
    	"bytes"
    	"fmt"
    	"io"
    	"log"
    	"os"
    	"reflect"
    	"runtime/debug"
    	"strconv"
    	"strings"
    
    	"golang.org/x/telemetry/internal/counter"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top