Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 248 for original (0.28 sec)

  1. src/go/types/issues_test.go

    	// (see last comment in this function)
    	sources := [...]string{
    		"package p; type A interface{ A() }",
    		"package p; type B interface{ B() }",
    		"package p; type X interface{ A; B }",
    	}
    
    	// compute original file ASTs
    	var orig [len(sources)]*ast.File
    	for i, src := range sources {
    		orig[i] = mustParse(fset, src)
    	}
    
    	// run the test for all order permutations of the incoming files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/range.go

    		//   hv1t := hv1
    		//   hv2 := rune(ha[hv1])
    		//   if hv2 < utf8.RuneSelf {
    		//      hv1++
    		//   } else {
    		//      hv2, hv1 = decoderune(ha, hv1)
    		//   }
    		//   v1, v2 = hv1t, hv2
    		//   // original body
    		// }
    
    		// order.stmt arranged for a copy of the string variable.
    		ha := a
    
    		hv1 := typecheck.TempAt(base.Pos, ir.CurFunc, types.Types[types.TINT])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:33 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/idna/idna9.0.0.go

    				err = p.fromPuny(p, u)
    			}
    			if err == nil {
    				// This should be called on NonTransitional, according to the
    				// spec, but that currently does not have any effect. Use the
    				// original profile to preserve options.
    				err = p.validateLabel(u)
    			}
    		} else if err == nil {
    			err = p.validateLabel(label)
    		}
    	}
    	if toASCII {
    		for labels.reset(); !labels.done(); labels.next() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  4. src/cmd/cover/cover.go

    	astFile *ast.File
    	blocks  []Block
    	content []byte
    	edit    *edit.Buffer
    	mdb     *encodemeta.CoverageMetaDataBuilder
    	fn      Func
    	pkg     *Package
    }
    
    // findText finds text in the original source, starting at pos.
    // It correctly skips over comments and assumes it need not
    // handle quoted strings.
    // It returns a byte offset within f.src.
    func (f *File) findText(pos token.Pos, text string) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  5. src/net/http/cookiejar/jar_test.go

    //
    // Tests derived from Chromium's cookie_store_unittest.h.
    //
    
    // See http://src.chromium.org/viewvc/chrome/trunk/src/net/cookies/cookie_store_unittest.h?revision=159685&content-type=text/plain
    // Some of the original tests are in a bad condition (e.g.
    // DomainWithTrailingDotTest) or are not RFC 6265 conforming (e.g.
    // TestNonDottedAndTLD #1 and #6) and have not been ported.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  6. src/compress/flate/huffman_bit_writer.go

    	var value int32 = 2
    	if isEof {
    		value = 3
    	}
    	w.writeBits(value, 3)
    }
    
    // writeBlock will write a block of tokens with the smallest encoding.
    // The original input can be supplied, and if the huffman encoded data
    // is larger than the original bytes, the data will be written as a
    // stored block.
    // If the input is nil, the tokens will always be Huffman encoded.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:59:14 UTC 2022
    - 18.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/rangefunc/rewrite.go

    	if r.checkFuncMisuse() {
    		bodyFunc.Body.List = append(bodyFunc.Body.List, r.assertReady(start, loop))
    		bodyFunc.Body.List = append(bodyFunc.Body.List, r.setState(abi.RF_PANIC, start))
    	}
    
    	// Original loop body (already rewritten by editStmt during inspect).
    	bodyFunc.Body.List = append(bodyFunc.Body.List, body...)
    
    	// end of loop body, set state to abi.RF_READY and return true to continue iteration
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  8. doc/asm.html

    it is a distinct program, so there are some differences.
    One is in constant evaluation.
    Constant expressions in the assembler are parsed using Go's operator
    precedence, not the C-like precedence of the original.
    Thus <code>3&amp;1&lt;&lt;2</code> is 4, not 0—it parses as <code>(3&amp;1)&lt;&lt;2</code>
    not <code>3&amp;(1&lt;&lt;2)</code>.
    Also, constants are always evaluated as 64-bit unsigned integers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
  9. src/cmd/link/internal/loadmacho/ldmacho.go

    					// offset can at most be 32 bits long).  To calculate the offset into the section the
    					// relocation is referencing, we subtract the vaddr of the start of the referenced
    					// section found in the original object file.
    					//
    					// [For future reference, see Darwin's /usr/include/mach-o/x86_64/reloc.h]
    					secaddr := c.seg.sect[rel.symnum-1].addr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 12 18:45:57 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tlog.go

    // a given hash.
    func StoredHashIndex(level int, n int64) int64 {
    	// Level L's n'th hash is written right after level L+1's 2n+1'th hash.
    	// Work our way down to the level 0 ordering.
    	// We'll add back the original level count at the end.
    	for l := level; l > 0; l-- {
    		n = 2*n + 1
    	}
    
    	// Level 0's n'th hash is written at n+n/2+n/4+... (eventually n/2ⁱ hits zero).
    	i := int64(0)
    	for ; n > 0; n >>= 1 {
    		i += n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 17.9K bytes
    - Viewed (0)
Back to top