Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 75 for Jade (0.14 sec)

  1. src/cmd/cgo/internal/testcshared/testdata/libgo/libgo.go

    	initCh <- 42
    }
    
    func main() {
    	ranMain = true
    }
    
    //export DidInitRun
    func DidInitRun() bool {
    	select {
    	case x := <-initCh:
    		if x != 42 {
    			// Just in case initCh was not correctly made.
    			println("want init value of 42, got: ", x)
    			syscall.Exit(2)
    		}
    		return true
    	default:
    		return false
    	}
    }
    
    //export DidMainRun
    func DidMainRun() bool {
    	return ranMain
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 767 bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/build/PATENTS

    Google as part of the Go project.
    
    Google hereby grants to You a perpetual, worldwide, non-exclusive,
    no-charge, royalty-free, irrevocable (except as stated in this section)
    patent license to make, have made, use, offer to sell, sell, import,
    transfer and otherwise run, modify and propagate the contents of this
    implementation of Go, where such license applies only to those patent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/PATENTS

    Google as part of the Go project.
    
    Google hereby grants to You a perpetual, worldwide, non-exclusive,
    no-charge, royalty-free, irrevocable (except as stated in this section)
    patent license to make, have made, use, offer to sell, sell, import,
    transfer and otherwise run, modify and propagate the contents of this
    implementation of Go, where such license applies only to those patent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    The printf checker is modular: when it discovers that a function such as
    log.Fatalf delegates to fmt.Printf, it records this fact, and checks
    calls to that function too, including calls made from another package.
    
    By implementing a common interface, checkers from a variety of sources
    can be easily selected, incorporated, and reused in a wide range of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/profile/merge.go

    //
    // Note: this is currently non-generic since github pprof runs golint,
    // which does not support generics. When that issue is fixed, it can
    // be merged with sortedKeys2 and made into a generic function.
    func sortedKeys1(m map[string][]string) []string {
    	if len(m) == 0 {
    		return nil
    	}
    	keys := make([]string, 0, len(m))
    	for k := range m {
    		keys = append(keys, k)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testcarchive/testdata/libgo/libgo.go

    	initCh <- 42
    }
    
    func main() { ranMain = true }
    
    //export DidInitRun
    func DidInitRun() bool {
    	select {
    	case x := <-initCh:
    		if x != 42 {
    			// Just in case initCh was not correctly made.
    			println("want init value of 42, got: ", x)
    			syscall.Exit(2)
    		}
    		return true
    	default:
    		return false
    	}
    }
    
    //export DidMainRun
    func DidMainRun() bool { return ranMain }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 977 bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    	AddrOffset             // [R, X] - use address R + X
    	AddrPostReg            // [Rn], Rm - - use address Rn, set Rn = Rn + Rm
    )
    
    // A MemImmediate is a memory reference made up of a base R and immediate X.
    // The effective memory address is R or R+X depending on AddrMode.
    type MemImmediate struct {
    	Base RegSP
    	Mode AddrMode
    	imm  int32
    }
    
    func (MemImmediate) isArg() {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/help/helpdoc.go

    are ignored by the go command.
    
    As a special case, if the package list is a list of .go files from a
    single directory, the command is applied to a single synthesized
    package made up of exactly those files, ignoring any build constraints
    in those files and ignoring any other files in the directory.
    
    Directory and file names that begin with "." or "_" are ignored
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/base/path.go

    func ShortPath(path string) string {
    	if rel, err := filepath.Rel(Cwd(), path); err == nil && len(rel) < len(path) {
    		return rel
    	}
    	return path
    }
    
    // RelPaths returns a copy of paths with absolute paths
    // made relative to the current directory if they would be shorter.
    func RelPaths(paths []string) []string {
    	var out []string
    	for _, p := range paths {
    		rel, err := filepath.Rel(Cwd(), p)
    		if err == nil && len(rel) < len(p) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 20 19:17:27 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/unify.go

    	// they may match inexactly at the top, but element types must match
    	// exactly.
    	assign unifyMode = 1 << iota
    
    	// If exact is set, types unify if they are identical (or can be
    	// made identical with suitable arguments for type parameters).
    	// Otherwise, a named type and a type literal unify if their
    	// underlying types unify, channel directions are ignored, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top