Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 462 for original (0.21 sec)

  1. test/typeparam/graph.go

    	m1, ok := zork[e.from]
    	if !ok {
    		panic("bad edge")
    	}
    	m2, ok := zork[e.to]
    	if !ok {
    		panic("bad edge")
    	}
    	return m1, m2
    }
    
    // The first maze in Zork. Room indexes based on original Fortran data file.
    // You are in a maze of twisty little passages, all alike.
    var zork = map[int]mazeRoom{
    	11: {exits: [10]int{north: 11, south: 12, east: 14}}, // west to Troll Room
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. src/net/dnsclient_unix.go

    			// stop immediately instead of trying more names.
    			break
    		}
    	}
    	if err == nil {
    		return p, server, nil
    	}
    	if err, ok := err.(*DNSError); ok {
    		// Show original name passed to lookup, not suffixed one.
    		// In general we might have tried many suffixes; showing
    		// just one is misleading. See also golang.org/issue/6324.
    		err.Name = name
    	}
    	return dnsmessage.Parser{}, "", err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/alias.go

    //
    // [underlying type]: https://go.dev/ref/spec#Underlying_types.
    func (a *Alias) Underlying() Type { return unalias(a).Underlying() }
    
    // Origin returns the generic Alias type of which a is an instance.
    // If a is not an instance of a generic alias, Origin returns a.
    func (a *Alias) Origin() *Alias { return a.orig }
    
    // TypeParams returns the type parameters of the alias type a, or nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/dom.go

    }
    
    // dfsOrig performs a depth first search over the blocks starting at entry block
    // (in arbitrary order).  This is a de-recursed version of dfs from the
    // original Tarjan-Lengauer TOPLAS article.  It's important to return the
    // same values for parent as the original algorithm.
    func (f *Func) dfsOrig(entry *Block, succFn linkedBlocks, semi, vertex, label, parent []ID) ID {
    	n := ID(0)
    	s := make([]*Block, 0, 256)
    	s = append(s, entry)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 03 17:08:51 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/vendor.go

    		} else {
    			fmt.Fprintf(vendErrors, "\n\t%s@%s: %s", mod.Path, mod.Version, detail)
    		}
    	}
    
    	// Iterate over the Require directives in their original (not indexed) order
    	// so that the errors match the original file.
    	for _, modFile := range modFiles {
    		for _, r := range modFile.Require {
    			if !vendorMeta[r.Mod].Explicit {
    				if pre114 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 18:09:22 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_vendor_replace.txt

    ! go mod vendor
    stderr 'replacement path ./vendor/not-rsc.io/quote/v3 inside vendor directory'
    
    cp go.mod1 go.mod
    rm -r vendor
    
    # Before vendoring, we expect to see the original directory.
    go list -f '{{with .Module}}{{.Version}}{{end}} {{.Dir}}' rsc.io/quote/v3
    stdout 'v3.0.0'
    stdout '.*[/\\]not-rsc.io[/\\]quote[/\\]v3'
    
    # Since all dependencies are replaced, 'go mod vendor' should not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 19:40:02 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  7. src/crypto/sha512/sha512block_arm64.s

    	MOVD	p_len+16(FP), R2
    	MOVD	ยท_K+0(SB), R3
    
    	// long enough to prefetch
    	PRFM	(R3), PLDL3KEEP
    	// load digest
    	VLD1	(R0), [V8.D2, V9.D2, V10.D2, V11.D2]
    loop:
    	// load digest in V0-V3 keeping original in V8-V11
    	VMOV	V8.B16, V0.B16
    	VMOV	V9.B16, V1.B16
    	VMOV	V10.B16, V2.B16
    	VMOV	V11.B16, V3.B16
    
    	// load message data in V12-V19
    	VLD1.P	64(R1), [V12.D2, V13.D2, V14.D2, V15.D2]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/named.go

    // instantiated types, this is same as the type name of the origin type.
    func (t *Named) Obj() *TypeName {
    	if t.inst == nil {
    		return t.obj
    	}
    	return t.inst.orig.obj
    }
    
    // Origin returns the generic type from which the named type t is
    // instantiated. If t is not an instantiated type, the result is t.
    func (t *Named) Origin() *Named {
    	if t.inst == nil {
    		return t
    	}
    	return t.inst.orig
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. src/index/suffixarray/sais.go

    // a subproblem at most half as big, invokes itself recursively,
    // and then runs a sequence of linear passes to turn the answer
    // for the subproblem into the answer for the original problem.
    // This gives T(N) = O(N) + T(N/2) = O(N) + O(N/2) + O(N/4) + ... = O(N).
    //
    // The outline of the code, with the forward and backward scans
    // through O(N)-sized arrays called out, is:
    //
    // sais_I_N
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  10. src/runtime/race_arm64.s

    	// An attempt to synchronize on the address would cause crash.
    	MOVD	R9, R21	// remember the original function
    	MOVD	$__tsan_go_ignore_sync_begin(SB), R9
    	load_g
    	MOVD	g_racectx(g), R0	// goroutine context
    	BL	racecall<>(SB)
    	MOVD	R21, R9	// restore the original function
    	// Call the atomic function.
    	// racecall will call LLVM race code which might clobber R28 (g)
    	load_g
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top