Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,441 for Fast (0.17 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/CachingModuleComponentRepositoryTest.groovy

            false             | MetadataFetchingCost.FAST      | MetadataFetchingCost.FAST
            false             | MetadataFetchingCost.EXPENSIVE | MetadataFetchingCost.FAST
            true              | MetadataFetchingCost.CHEAP     | MetadataFetchingCost.CHEAP
            true              | MetadataFetchingCost.FAST      | MetadataFetchingCost.FAST
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcherTest.groovy

            ["FooTest.test", "FooTest.*fast*"]  | "FooTest"                 | "test"                | true
            ["FooTest.test", "FooTest.*fast*"]  | "FooTest"                 | "fast"                | true
            ["FooTest.test", "FooTest.*fast*"]  | "FooTest"                 | "a fast test"         | true
            ["FooTest.test", "FooTest.*fast*"]  | "FooTest"                 | "xxxx"                | false
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. src/net/sock_cloexec_solaris.go

    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file implements sysSocket for platforms that provide a fast path for
    // setting SetNonblock and CloseOnExec, but don't necessarily support it.
    // Support for SOCK_* flags as part of the type parameter was added to Oracle
    // Solaris in the 11.4 release. Thus, on releases prior to 11.4, we fall back
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:17:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. src/runtime/time_nofake.go

    // Exported via linkname for use by time and internal/poll.
    //
    // Many external packages also linkname nanotime for a fast monotonic time.
    // Such code should be updated to use:
    //
    //	var start = time.Now() // at init time
    //
    // and then replace nanotime() with time.Since(start), which is equally fast.
    //
    // However, all the code linknaming nanotime is never going to go away.
    // Do not remove or change the type signature.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. src/internal/poll/sock_cloexec_solaris.go

    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file implements accept for platforms that provide a fast path for
    // setting SetNonblock and CloseOnExec, but don't necessarily have accept4.
    // The accept4(3c) function was added to Oracle Solaris in the Solaris 11.4.0
    // release. Thus, on releases prior to 11.4, we fall back to the combination
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:17:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. pkg/serviceaccount/claims_test.go

    			sa:   sa,
    			node: node,
    			// really fast
    			exp: 0,
    			// nil audience
    			aud: nil,
    			err: "token bound to Node object requested, but \"ServiceAccountTokenNodeBinding\" feature gate is disabled",
    		},
    		{
    			// node & pod with feature gate disabled
    			sa:   sa,
    			node: node,
    			pod:  pod,
    			// really fast
    			exp: 0,
    			// nil audience
    			aud: nil,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  7. src/runtime/rand.go

    	// Note: We avoid acquirem here so that in the fast path
    	// there is just a getg, an inlined c.Next, and a return.
    	// The performance difference on a 16-core AMD is
    	// 3.7ns/call this way versus 4.3ns/call with acquirem (+16%).
    	mp := getg().m
    	c := &mp.chacha8
    	for {
    		// Note: c.Next is marked nosplit,
    		// so we don't need to use mp.locks
    		// on the fast path, which is that the
    		// first attempt succeeds.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 14:32:47 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    		llvmSymbolizer, addr2line, nm, objdump, r.fast)
    }
    
    // SetFastSymbolization sets a toggle that makes binutils use fast
    // symbolization (using nm), which is much faster than addr2line but
    // provides only symbol name information (no file/line).
    func (bu *Binutils) SetFastSymbolization(fast bool) {
    	bu.update(func(r *binrep) { r.fast = fast })
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/str/str.go

    // duplicates without making a quadratic number of calls
    // to EqualFold. Note that strings.ToUpper and strings.ToLower
    // do not have the desired property in some corner cases.
    func ToFold(s string) string {
    	// Fast path: all ASCII, no upper case.
    	// Most paths look like this already.
    	for i := 0; i < len(s); i++ {
    		c := s[i]
    		if c >= utf8.RuneSelf || 'A' <= c && c <= 'Z' {
    			goto Slow
    		}
    	}
    	return s
    
    Slow:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 20:08:07 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/symbolizer/symbolizer.go

    	remote, local, fast, force, demanglerMode := true, true, false, false, ""
    	for _, o := range strings.Split(strings.ToLower(mode), ":") {
    		switch o {
    		case "":
    			continue
    		case "none", "no":
    			return nil
    		case "local":
    			remote, local = false, true
    		case "fastlocal":
    			remote, local, fast = false, true, true
    		case "remote":
    			remote, local = true, false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top