Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 298 for Night (0.18 sec)

  1. src/cmd/compile/internal/ssa/sparsetree.go

    //         entry=5 Child exit=8
    //
    // three node tree, Root->(Left, Right), call with n=1
    //         entry=2 Root exit=17; returns 19
    // entry=5 Left exit=8;  entry=11 Right exit=14
    //
    // This is the in-order sequence of assigned and reserved numbers
    // for the last example:
    //   root     left     left      right       right       root
    //  1 2e 3 | 4 5e 6 | 7 8x 9 | 10 11e 12 | 13 14x 15 | 16 17x 18
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/parse.go

    			}
    			return value << shift
    		case lex.RSH:
    			p.next()
    			shift := p.term()
    			if int64(shift) < 0 {
    				p.errorf("negative right shift count")
    			}
    			if int64(value) < 0 {
    				p.errorf("right shift of value with high bit set")
    			}
    			value >>= shift
    		case '&':
    			p.next()
    			value &= p.factor()
    		default:
    			return value
    		}
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/writebarrier.go

    	base *Value
    	mask uint64
    }
    
    // mightBeHeapPointer reports whether v might point to the heap.
    // v must have pointer type.
    func mightBeHeapPointer(v *Value) bool {
    	if IsGlobalAddr(v) {
    		return false
    	}
    	return true
    }
    
    // mightContainHeapPointer reports whether the data currently at addresses
    // [ptr,ptr+size) might contain heap pointers. "currently" means at memory state mem.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/cmd/go/testdata/script/cover_coverpkg_with_init.txt

    # Testcase inspired by issue #58770, intended to verify that we're
    # doing the right thing when running "go test -coverpkg=./... ./..."
    # on a collection of packages where some have init functions and some
    # do not, some have tests and some do not.
    
    [short] skip
    [!GOEXPERIMENT:coverageredesign] skip
    
    # Verify correct statements percentages. We have a total of 10
    # statements in the packages matched by "./..."; package "a" (for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 30 12:33:44 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testerrors/testdata/issue28069.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that the error message for an unrepresentable typedef in a
    // union appears on the right line. This test is only run if the size
    // of long double is larger than 64.
    
    package main
    
    /*
    typedef long double             Float128;
    
    typedef struct SV {
        union {
            Float128         float128;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 555 bytes
    - Viewed (0)
  8. src/cmd/trace/tasks.go

    }
    table#req-status td.family {
      padding-right: 2em;
    }
    table#req-status td.active {
      padding-right: 1em;
    }
    table#req-status td.empty {
      color: #aaa;
    }
    table#reqs {
      margin-top: 1em;
      border-collapse: collapse;
    }
    table#reqs tr.first {
      font-weight: bold;
    }
    table#reqs td {
      font-family: monospace;
    }
    table#reqs td.when {
      text-align: right;
      white-space: nowrap;
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/abi.go

    	// definition ABI to C. That also means that we don't want to
    	// create ABI wrappers even if there's a linkname.
    	//
    	// TODO(austin): Maybe we want to create the ABI wrappers, but
    	// ensure the linker exports the right ABI definition under
    	// the unmangled name?
    	cgoExports := make(map[string][]*[]string)
    	for i, prag := range typecheck.Target.CgoPragmas {
    		switch prag[0] {
    		case "cgo_export_static", "cgo_export_dynamic":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	if left == nil {
    		left = b.Left
    	}
    	if right == nil {
    		right = b.Right
    	}
    	b = &Binary{Op: op, Left: left, Right: right}
    	if r := fn(b); r != nil {
    		return r
    	}
    	return b
    }
    
    func (b *Binary) GoString() string {
    	return b.goString(0, "")
    }
    
    func (b *Binary) goString(indent int, field string) string {
    	return fmt.Sprintf("%*s%sBinary:\n%s\n%s\n%s", indent, "", field,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
Back to top