Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Abandon (0.09 sec)

  1. src/crypto/tls/boring_test.go

    	test(t, "VersionTLS11", VersionTLS11, "")
    	test(t, "VersionTLS12", VersionTLS12, "")
    	test(t, "VersionTLS13", VersionTLS13, "")
    
    	t.Run("fipstls", func(t *testing.T) {
    		fipstls.Force()
    		defer fipstls.Abandon()
    		test(t, "VersionTLS10", VersionTLS10, "supported versions")
    		test(t, "VersionTLS11", VersionTLS11, "supported versions")
    		test(t, "VersionTLS12", VersionTLS12, "")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. schema/schema.go

    }
    
    // This unrolling is needed to show to the compiler the exact set of methods
    // that can be used on the modelType.
    // Prior to go1.22 any use of MethodByName would cause the linker to
    // abandon dead code elimination for the entire binary.
    // As of go1.22 the compiler supports one special case of a string constant
    // being passed to MethodByName. For enterprise customers or those building
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. cmd/data-usage-cache.go

    	// By default, empty data usage cache
    	*d = dataUsageCache{}
    
    	load := func(name string, timeout time.Duration) (bool, error) {
    		// Abandon if more than time.Minute, so we don't hold up scanner.
    		// drive timeout by default is 2 minutes, we do not need to wait longer.
    		ctx, cancel := context.WithTimeout(ctx, timeout)
    		defer cancel()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 14:49:50 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  4. src/text/tabwriter/tabwriter.go

    	}
    
    	if !flushed {
    		// The previous line is probably a good indicator
    		// of how many cells the current line will have.
    		// If the current line's capacity is smaller than that,
    		// abandon it and make a new one.
    		if n := len(b.lines); n >= 2 {
    			if prev := len(b.lines[n-2]); prev > cap(b.lines[n-1]) {
    				b.lines[n-1] = make([]cell, 0, prev)
    			}
    		}
    	}
    }
    
    // Reset the current state.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  5. src/context/context.go

    // surrounding function has not yet been extended to accept a Context
    // parameter).
    func TODO() Context {
    	return todoCtx{}
    }
    
    // A CancelFunc tells an operation to abandon its work.
    // A CancelFunc does not wait for the work to stop.
    // A CancelFunc may be called by multiple goroutines simultaneously.
    // After the first call, subsequent calls to a CancelFunc do nothing.
    type CancelFunc func()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/cache/CacheBuilder.java

       * uncommon to specify {@code concurrencyLevel(1)} in order to achieve more deterministic eviction
       * behavior.
       *
       * <p>Note that future implementations may abandon segment locking in favor of more advanced
       * concurrency controls.
       *
       * @return this {@code CacheBuilder} instance (for chaining)
       * @throws IllegalArgumentException if {@code concurrencyLevel} is nonpositive
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  7. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    balat.no bale.museum balena-devices.com balestrand.no ballangen.no ballooning.aero balsan-sudtirol.it balsan-suedtirol.it balsan-südtirol.it balsan.it balsfjord.no baltimore.museum bambina.jp bamble.no banamex bananarepublic band bandai.fukushima.jp bando.ibaraki.jp bank bar bar.pro bar0.net bar1.net bar2.net barcelona barcelona.museum barclaycard barclays bardu.no barefoot bargains bari.it barletta-trani-andria.it barlettatraniandria.it barrel-of-knowledge.info barrell-of-knowledge.info barsy.bg barsy.ca...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
Back to top