Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for _tos (0.16 sec)

  1. src/debug/gosym/symtab.go

    			tos = tos.prev
    
    		default:
    			// Push
    			tos = &stackEnt{s.Name, val, 0, tos}
    		}
    	}
    
    	if tos == noPath {
    		return "", 0
    	}
    	return tos.path, aline - tos.start - tos.offset + 1
    }
    
    func (o *Obj) alineFromLine(path string, line int) (int, error) {
    	if line < 1 {
    		return 0, &UnknownLineError{path, line}
    	}
    
    	for i, s := range o.Paths {
    		// Find this path
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  2. src/runtime/gc_test.go

    		var stack [depth]*node
    		tos := -1
    
    		// There are two write barriers per iteration, so i+=2.
    		for i := 0; i < b.N; i += 2 {
    			if tos == -1 {
    				stack[0] = root
    				tos = 0
    			}
    
    			// Perform one step of reversing the tree.
    			n := stack[tos]
    			if n.l == nil {
    				tos--
    			} else {
    				n.l, n.r = n.r, n.l
    				stack[tos] = n.l
    				stack[tos+1] = n.r
    				tos++
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/main/resources/header.html

                            <a target="_top" class="site-header__navigation-link" href="https://dpeuniversity.gradle.com/" itemprop="url">DPE University</a>
                        </li>
                        <li class="site-header__navigation-item" itemprop="name">
                            <a target="_top" class="site-header__navigation-link" href="https://gradle.org/training/" itemprop="url">Events</a>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  4. pkg/wasm/cache_test.go

    	reg := registry.New()
    	// Set up a fake registry for OCI images.
    	tos := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		atomic.AddInt32(&tsNumRequest, 1)
    		reg.ServeHTTP(w, r)
    	}))
    	defer tos.Close()
    	ou, err := url.Parse(tos.URL)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	dockerImageDigest, invalidOCIImageDigest := setupOCIRegistry(t, ou.Host)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    	PUSHAD:    "pusha",
    	PUSHF:     "pushfw",
    	PUSHFD:    "pushf",
    	SCASB:     "scas",
    	SCASD:     "scas",
    	SCASQ:     "scas",
    	SCASW:     "scas",
    	STOSB:     "stos",
    	STOSD:     "stos",
    	STOSQ:     "stos",
    	STOSW:     "stos",
    	XLATB:     "xlat",
    }
    
    var cmppsOps = []string{
    	"cmpeq",
    	"cmplt",
    	"cmple",
    	"cmpunord",
    	"cmpneq",
    	"cmpnlt",
    	"cmpnle",
    	"cmpord",
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  6. src/runtime/asm_wasm.s

    //
    // gcWriteBarrier does NOT follow the Go ABI. It accepts the
    // number of bytes of buffer needed as a wasm argument
    // (put on the TOS by the caller, lives in local R0 in this body)
    // and returns a pointer to the buffer space as a wasm result
    // (left on the TOS in this body, appears on the wasm stack
    // in the caller).
    TEXT gcWriteBarrier<>(SB), NOSPLIT, $0
    	Loop
    		// R3 = g.m
    		MOVD g_m(g), R3
    		// R4 = p
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:26:51 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. cmd/import-boss/main.go

    	type edge struct {
    		from string
    		to   string
    	}
    
    	adj := make(map[edge]bool)
    	imports := make(map[string]struct{})
    	for from, tos := range in {
    		for _, to := range tos {
    			adj[edge{from, to}] = true
    			imports[to] = struct{}{}
    		}
    	}
    
    	// Warshal's algorithm
    	for k := range in {
    		for i := range in {
    			if !adj[edge{i, k}] {
    				continue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  8. hack/golangci.yaml

        # https://github.com/kubernetes/kubernetes/issues/117288#issuecomment-1514201592
        - linters:
            - stylecheck
            - revive
          text: "(ST1003: should not use underscores in Go names; func (Convert_.*_To_.*|SetDefaults_)|exported: exported function (Convert|SetDefaults)_.* should be of the form)"
    
        # This check currently has some false positives (https://github.com/nunnatsa/ginkgolinter/issues/91).
        - linters:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. src/syscall/ztypes_linux_ppc64le.go

    type IfAddrmsg struct {
    	Family    uint8
    	Prefixlen uint8
    	Flags     uint8
    	Scope     uint8
    	Index     uint32
    }
    
    type RtMsg struct {
    	Family   uint8
    	Dst_len  uint8
    	Src_len  uint8
    	Tos      uint8
    	Table    uint8
    	Protocol uint8
    	Scope    uint8
    	Type     uint8
    	Flags    uint32
    }
    
    type RtNexthop struct {
    	Len     uint16
    	Flags   uint8
    	Hops    uint8
    	Ifindex int32
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  10. src/syscall/ztypes_linux_arm64.go

    type IfAddrmsg struct {
    	Family    uint8
    	Prefixlen uint8
    	Flags     uint8
    	Scope     uint8
    	Index     uint32
    }
    
    type RtMsg struct {
    	Family   uint8
    	Dst_len  uint8
    	Src_len  uint8
    	Tos      uint8
    	Table    uint8
    	Protocol uint8
    	Scope    uint8
    	Type     uint8
    	Flags    uint32
    }
    
    type RtNexthop struct {
    	Len     uint16
    	Flags   uint8
    	Hops    uint8
    	Ifindex int32
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.2K bytes
    - Viewed (0)
Back to top