Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 503 for sysarch (0.23 sec)

  1. src/runtime/cgo/gcc_freebsd.c

    // license that can be found in the LICENSE file.
    
    //go:build freebsd && (386 || arm || arm64 || riscv64)
    
    #include <sys/types.h>
    #include <sys/signalvar.h>
    #include <machine/sysarch.h>
    #include <pthread.h>
    #include <signal.h>
    #include <string.h>
    #include "libcgo.h"
    #include "libcgo_unix.h"
    
    #ifdef ARM_TP_ADDRESS
    // ARM_TP_ADDRESS is (ARM_VECTORS_HIGH + 0x1000) or 0xffff1000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 03:40:00 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. src/sort/search.go

    	return Search(len(a), func(i int) bool { return a[i] >= x })
    }
    
    // Search returns the result of applying [SearchInts] to the receiver and x.
    func (p IntSlice) Search(x int) int { return SearchInts(p, x) }
    
    // Search returns the result of applying [SearchFloat64s] to the receiver and x.
    func (p Float64Slice) Search(x float64) int { return SearchFloat64s(p, x) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. src/internal/platform/zosarch.go

    // maps in cmd/dist/build.go, then run 'go generate internal/platform'.
    
    package platform
    
    // List is the list of all valid GOOS/GOARCH combinations,
    // including known-broken ports.
    var List = []OSArch{
    	{"aix", "ppc64"},
    	{"android", "386"},
    	{"android", "amd64"},
    	{"android", "arm"},
    	{"android", "arm64"},
    	{"darwin", "amd64"},
    	{"darwin", "arm64"},
    	{"dragonfly", "amd64"},
    	{"freebsd", "386"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:19:16 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/orig/view/search.jsp

    							<c:if test="${s.index < 3}">
    								<la:link
    									href="/search?q=${f:u(item)}${fe:facetQuery()}${fe:geoQuery()}">${f:h(item)}</la:link>
    							</c:if>
    							<c:if test="${3 <= s.index}">
    								<la:link styleClass="d-none d-sm-inline"
    									href="/search?q=${f:u(item)}${fe:facetQuery()}${fe:geoQuery()}">${f:h(item)}</la:link>
    							</c:if>
    						</c:forEach>
    					</p>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/search.jsp

    							<c:if test="${s.index < 3}">
    								<la:link
    									href="/search?q=${f:u(item)}${fe:facetQuery()}${fe:geoQuery()}">${f:h(item)}</la:link>
    							</c:if>
    							<c:if test="${3 <= s.index}">
    								<la:link styleClass="d-none d-sm-inline"
    									href="/search?q=${f:u(item)}${fe:facetQuery()}${fe:geoQuery()}">${f:h(item)}</la:link>
    							</c:if>
    						</c:forEach>
    					</p>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/search.go

    // against the standard library (std and cmd) in GOROOT/src.
    func MatchInModule(ctx context.Context, pattern string, m module.Version, tags map[string]bool) *search.Match {
    	match := search.NewMatch(pattern)
    	if m == (module.Version{}) {
    		matchPackages(ctx, match, tags, includeStd, nil)
    	}
    
    	LoadModFile(ctx) // Sets Target, needed by fetch and matchPackages.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:15 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/search.go

    package load
    
    import (
    	"path/filepath"
    	"strings"
    
    	"cmd/go/internal/search"
    	"cmd/internal/pkgpattern"
    )
    
    // MatchPackage(pattern, cwd)(p) reports whether package p matches pattern in the working directory cwd.
    func MatchPackage(pattern, cwd string) func(*Package) bool {
    	switch {
    	case search.IsRelativePath(pattern):
    		// Split pattern into leading pattern-free directory path
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 16:43:40 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  8. src/net/testdata/search-resolv.conf

    # /etc/resolv.conf
    
    domain localdomain
    search test invalid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 78 bytes
    - Viewed (0)
  9. src/strings/search.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package strings
    
    // stringFinder efficiently finds strings in a source text. It's implemented
    // using the Boyer-Moore string search algorithm:
    // https://en.wikipedia.org/wiki/Boyer-Moore_string_search_algorithm
    // https://www.cs.utexas.edu/~moore/publications/fstrpos.pdf (note: this aged
    // document uses 1-based indexing)
    type stringFinder struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 18:49:51 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. src/main/webapp/js/search.js

    Shinsuke Sugaya <******@****.***> 1680155124 +0900
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 7.5K bytes
    - Viewed (0)
Back to top