Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for mv (0.15 sec)

  1. src/bootstrap.bash

    	# cross-compile for local system. nothing to copy.
    	# useful if you've bootstrapped yourself but want to
    	# prepare a clean toolchain for others.
    	true
    else
    	rm -f bin/go_${goos}_${goarch}_exec
    	mv bin/*_*/* bin
    	rmdir bin/*_*
    	rm -rf "pkg/${gohostos}_${gohostarch}" "pkg/tool/${gohostos}_${gohostarch}"
    fi
    
    rm -rf pkg/bootstrap pkg/obj .git
    
    echo ----
    Shell Script
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Jan 20 17:52:26 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  2. misc/linkcheck/linkcheck.go

    	seen := map[string]bool{}
    	mv := aRx.FindAllStringSubmatch(body, -1)
    	for _, m := range mv {
    		ref := m[1]
    		if strings.HasPrefix(ref, "/src/") {
    			continue
    		}
    		if !seen[ref] {
    			seen[ref] = true
    			links = append(links, m[1])
    		}
    	}
    	return
    }
    
    var idRx = regexp.MustCompile(`\bid=['"]?([^\s'">]+)`)
    
    func pageIDs(body string) (ids []string) {
    	mv := idRx.FindAllStringSubmatch(body, -1)
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Oct 06 15:53:04 GMT 2021
    - 3.9K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    t.Mv(7)
    T.Mv(t, 7)
    (T).Mv(t, 7)
    f1 := T.Mv; f1(t, 7)
    f2 := (T).Mv; f2(t, 7)
    </pre>
    
    <p>
    Similarly, the expression
    </p>
    
    <pre>
    (*T).Mp
    </pre>
    
    <p>
    yields a function value representing <code>Mp</code> with signature
    </p>
    
    <pre>
    func(tp *T, f float32) float32
    </pre>
    
    <p>
    For a method with a value receiver, one can derive a function
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  4. doc/go_spec.html

    t.Mv(7)
    T.Mv(t, 7)
    (T).Mv(t, 7)
    f1 := T.Mv; f1(t, 7)
    f2 := (T).Mv; f2(t, 7)
    </pre>
    
    <p>
    Similarly, the expression
    </p>
    
    <pre>
    (*T).Mp
    </pre>
    
    <p>
    yields a function value representing <code>Mp</code> with signature
    </p>
    
    <pre>
    func(tp *T, f float32) float32
    </pre>
    
    <p>
    For a method with a value receiver, one can derive a function
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 279.3K bytes
    - Viewed (0)
Back to top