Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for symstrings (0.35 sec)

  1. src/cmd/cgo/internal/testshared/shared_test.go

    	}
    	return notes, nil
    }
    
    func dynStrings(t *testing.T, path string, flag elf.DynTag) []string {
    	t.Helper()
    	f, err := elf.Open(path)
    	if err != nil {
    		t.Fatalf("elf.Open(%q) failed: %v", path, err)
    	}
    	defer f.Close()
    	dynstrings, err := f.DynString(flag)
    	if err != nil {
    		t.Fatalf("DynString(%s) failed on %s: %v", flag, path, err)
    	}
    	return dynstrings
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/library/cost.go

    				// If the replacement does not make the result longer, use the original string length.
    				replaceCount.Max = 0
    				retainedSz.Max = sz.Max
    			} else {
    				// Replace the smallest possible substrings with the largest possible replacement
    				// as many times as possible.
    				replaceCount.Max = uint64(math.Ceil(float64(sz.Max) / float64(toReplaceSz.Min)))
    			}
    
    			// find the shortest replacement:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/text/unicode/bidi/bidi.go

    // separator (bidi class B).
    //
    // The function p.Order() needs these values to be set, so this preparation could be postponed.
    // But since the SetBytes and SetStrings functions return the length of the input up to the paragraph
    // separator, the whole input needs to be processed anyway and should not be done twice.
    //
    // The function has the same return values as SetBytes() / SetString()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 10.3K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/graph/AbstractGraphTest.java

      static final Integer N4 = 4;
      static final Integer N5 = 5;
      static final Integer NODE_NOT_IN_GRAPH = 1000;
    
      // TODO(user): Consider separating Strings that we've defined here to capture
      // identifiable substrings of expected error messages, from Strings that we've defined
      // here to provide error messages.
      // TODO(user): Some Strings used in the subclasses can be added as static Strings
      // here too.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modindex/build.go

    // white space characters while taking into account quotes and escaping, and
    // returns an array of substrings of s or an empty list if s contains only white space.
    // Single quotes and double quotes are recognized to prevent splitting within the
    // quoted region, and are removed from the resulting substrings. If a quote in s
    // isn't closed err will be set and r will have the unclosed argument as the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  6. src/math/bits/bits.go

    	// to the power of k. Multiplying by a power of two is equivalent to
    	// left shifting, in this case by k bits. The de Bruijn (64 bit) constant
    	// is such that all six bit, consecutive substrings are distinct.
    	// Therefore, if we have a left shifted version of this constant we can
    	// find by how many bits it was shifted by looking at which six bit
    	// substring ended up at the top of the word.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  7. src/debug/gosym/pclntab.go

    	nfunctab    uint32
    	filetab     []byte
    	pctab       []byte // points to the pctables.
    	nfiletab    uint32
    	funcNames   map[uint32]string // cache the function names
    	strings     map[uint32]string // interned substrings of Data, keyed by offset
    	// fileMap varies depending on the version of the object file.
    	// For ver12, it maps the name to the index in the file table.
    	// For ver116, it maps the name to the offset in filetab.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/buildid.go

    		fields := strings.Fields(line)
    		for i, field := range fields {
    			if strings.HasSuffix(field, ":") {
    				// Avoid parsing fields of lines like "Configured with: …", which may
    				// contain arbitrary substrings.
    				break
    			}
    			if field == "version" && i < len(fields)-1 {
    				// Check that the next field is plausibly a version number.
    				// We require only that it begins with an ASCII digit,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/mod/module/module.go

    // but additional checking functions, most notably [Check], verify that
    // a particular path, version pair is valid.
    //
    // # Escaped Paths
    //
    // Module paths appear as substrings of file system paths
    // (in the download cache) and of web server URLs in the proxy protocol.
    // In general we cannot rely on file systems to be case-sensitive,
    // nor can we rely on web servers, since they read from file systems.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  10. src/net/netip/netip.go

    func (p AddrPort) Port() uint16 { return p.port }
    
    // splitAddrPort splits s into an IP address string and a port
    // string. It splits strings shaped like "foo:bar" or "[foo]:bar",
    // without further validating the substrings. v6 indicates whether the
    // ip string should parse as an IPv6 address or an IPv4 address, in
    // order for s to be a valid ip:port string.
    func splitAddrPort(s string) (ip, port string, v6 bool, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
Back to top