Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 167 for Night (0.43 sec)

  1. doc/asm.html

    <code>R0&lt;&lt;16</code>
    <br>
    <code>R0@&gt;16</code>:
    For <code>&lt;&lt;</code>, left shift <code>R0</code> by 16 bits.
    The other codes are <code>-&gt;</code> (arithmetic right shift),
    <code>&gt;&gt;</code> (logical right shift), and
    <code>@&gt;</code> (rotate right).
    </li>
    
    <li>
    <code>R0-&gt;R1</code>
    <br>
    <code>R0&gt;&gt;R1</code>
    <br>
    <code>R0&lt;&lt;R1</code>
    <br>
    <code>R0@&gt;R1</code>:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  2. src/cmd/dist/buildruntime.go

    package main
    
    import (
    	"fmt"
    	"strings"
    )
    
    /*
     * Helpers for building runtime.
     */
    
    // mkzversion writes zversion.go:
    //
    //	package sys
    //
    // (Nothing right now!)
    func mkzversion(dir, file string) {
    	var buf strings.Builder
    	writeHeader(&buf)
    	fmt.Fprintf(&buf, "package sys\n")
    	writefile(buf.String(), file, writeSkipSame)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 01:33:19 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/typexpr.go

    		if !check.verifyVersionf(e, go1_18, "predeclared %s", e.Value) {
    			return // avoid follow-on errors
    		}
    	}
    
    	check.recordUse(e, obj)
    
    	// If we want a type but don't have one, stop right here and avoid potential problems
    	// with missing underlying types. This also gives better error messages in some cases
    	// (see go.dev/issue/65344).
    	_, gotType := obj.(*TypeName)
    	if !gotType && wantType {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. src/README.vendor

    set to 'on' or 'auto', and if you use a go.work file, set GOWORK=off.
    
    Requirements may be added, updated, and removed with 'go get'.
    The vendor directory may be updated with 'go mod vendor'.
    A typical sequence might be:
    
        cd src  # or src/cmd
        go get golang.org/x/net@master
        go mod tidy
        go mod vendor
    
    Use caution when passing '-u' to 'go get'. The '-u' flag updates
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modcmd/download.go

    					}
    				}
    			}
    		} else if modload.WorkFilePath() != "" {
    			// TODO(#44435): Think about what the correct query is to download the
    			// right set of modules. Also see code review comment at
    			// https://go-review.googlesource.com/c/go/+/359794/comments/ce946a80_6cf53992.
    			args = []string{"all"}
    		} else {
    			mainModule := modload.MainModules.Versions()[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/test_fuzz_fuzztime.txt

    		if crashFound {
    			name := fmt.Sprintf("minimizecount/%v.%d", pid, n)
    			if err := os.WriteFile(name, nil, 0666); err != nil {
    				t.Fatal(err)
    			}
    			n++
    		}
    		if !bytes.Equal(b, seed) {  // this should happen right away
    			crashFound = true
    			t.Error("minimize this!")
    		}
    	})
    }
    -- check_file_count.go --
    // +build ignore
    
    package main
    
    import (
    	"fmt"
    	"os"
    	"strconv"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 20:09:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/cache/cache.go

    	}
    
    	// Commit cache file entry.
    	if _, err := f.Write(buf); err != nil {
    		f.Truncate(0)
    		return err
    	}
    	if err := f.Close(); err != nil {
    		// Data might not have been written,
    		// but file may look like it is the right size.
    		// To be extra careful, remove cached file.
    		os.Remove(name)
    		return err
    	}
    	os.Chtimes(name, c.now(), c.now()) // mainly for tests
    
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  8. src/cmd/fix/main_test.go

    				}()
    			}
    
    			// Apply fix: should get tt.Out.
    			out, fixed, ok := parseFixPrint(t, tt.Fn, tt.Name, tt.In, true)
    			if !ok {
    				return
    			}
    
    			// reformat to get printing right
    			out, _, ok = parseFixPrint(t, fnop, tt.Name, out, false)
    			if !ok {
    				return
    			}
    
    			if tt.Out == "" {
    				tt.Out = tt.In
    			}
    			if out != tt.Out {
    				t.Errorf("incorrect output.\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 05:31:47 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/unify.go

    	// are valid underlying types and may appear as core types of type constraints.
    	// If we exclude them, inferred defined types for type parameters may not
    	// match against the core types of their constraints (even though they might
    	// correctly match against some of the types in the constraint's type set).
    	// Finally, if unification (incorrectly) succeeds by matching the underlying
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_get_toolchain.txt

    # go get go@1.21 should work if we are the Go 1.21 language version,
    # even though there's no toolchain for it.
    # (Older versions resolve to the latest release in that version, so for example
    # go get go@1.20 might resolve to 1.20.9, but if we're the devel copy of
    # Go 1.21, there's no release yet to resolve to, so we resolve to ourselves.)
    env TESTGO_VERSION=go1.21
    go get go@1.19 toolchain@none
    go get go@1.21
    grep 'go 1.21$' go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 19:33:16 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top