Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for styled (1.38 sec)

  1. src/cmd/compile/internal/ssa/_gen/generic.rules

    // 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.
    
    // Simplifications that apply to all backend architectures. As an example, this
    // Go source code
    //
    // y := 0 * x
    //
    // can be translated into y := 0 without losing any information, which saves a
    // pointless multiplication instruction. Other .rules files in this directory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    // dependencies.
    //
    // The -fuzzcache flag causes clean to remove files stored in the Go build
    // cache for fuzz testing. The fuzzing engine caches files that expand
    // code coverage, so removing them may make fuzzing less effective until
    // new inputs are found that provide the same coverage. These files are
    // distinct from those stored in testdata directory; clean does not remove
    // those files.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/AMD64Ops.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 main
    
    import "strings"
    
    // Notes:
    //  - Integer types live in the low portion of registers. Upper portions are junk.
    //  - Boolean types use the low-order byte of a register. 0=false, 1=true.
    //    Upper bytes are junk.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/pkg.go

    	// Stale and StaleReason remain here *only* for the list command.
    	// They are only initialized in preparation for list execution.
    	// The regular build determines staleness on the fly during action execution.
    	Stale       bool   `json:",omitempty"` // would 'go install' do anything for this package?
    	StaleReason string `json:",omitempty"` // why is Stale true?
    
    	// Source files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    // Copyright 2016 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.
    
    (Add(Ptr|64|32|16|8) ...) => (ADD ...)
    (Add(32|64)F ...) => (FADD(S|D) ...)
    
    (Sub(Ptr|64|32|16|8) ...) => (SUB ...)
    (Sub(32|64)F ...) => (FSUB(S|D) ...)
    
    (Mul64 ...) => (MUL ...)
    (Mul(32|16|8) ...) => (MULW ...)
    (Mul(32|64)F  ...) => (FMUL(S|D) ...)
    
    (Hmul64  ...) => (MULH ...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/callback.go

    // Copyright 2011 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 cgotest
    
    /*
    void callback(void *f);
    void callGoFoo(void);
    void callGoStackCheck(void);
    void callPanic(void);
    int callGoReturnVal(void);
    int returnAfterGrow(void);
    int returnAfterGrowFromGo(void);
    void callGoWithString(void);
    */
    import "C"
    
    import (
    	"path"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 111.5K bytes
    - Viewed (0)
  7. doc/go1.17_spec.html

    type T int
    func (t T) M() { print(t) }
    
    t := new(T)
    s := S{T: t}
    f := t.M                    // receiver *t is evaluated and stored in f
    g := s.M                    // receiver *(s.T) is evaluated and stored in g
    *t = 42                     // does not affect stored receivers in f and g
    </pre>
    
    <p>
    The type <code>T</code> may be an interface or non-interface type.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    // Copyright 2011 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.
    
    // Action graph execution.
    
    package work
    
    import (
    	"bytes"
    	"cmd/internal/cov/covcmd"
    	"context"
    	"crypto/sha256"
    	"encoding/json"
    	"errors"
    	"fmt"
    	"go/token"
    	"internal/lazyregexp"
    	"io"
    	"io/fs"
    	"log"
    	"math/rand"
    	"os"
    	"os/exec"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top