Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for Lease (0.11 sec)

  1. android/guava/src/com/google/common/collect/Iterators.java

       * individual iterator as it is generated.
       *
       * @param iterator the backing iterator. The {@link PeekingIterator} assumes ownership of this
       *     iterator, so users should cease making direct calls to it after calling this method.
       * @return a peeking iterator backed by that iterator. Apart from the additional {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Iterators.java

       * individual iterator as it is generated.
       *
       * @param iterator the backing iterator. The {@link PeekingIterator} assumes ownership of this
       *     iterator, so users should cease making direct calls to it after calling this method.
       * @return a peeking iterator backed by that iterator. Apart from the additional {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  3. src/runtime/mgc.go

    	gcComputeStartingStackSize()
    
    	// Disable assists and background workers. We must do
    	// this before waking blocked assists.
    	atomic.Store(&gcBlackenEnabled, 0)
    
    	// Notify the CPU limiter that GC assists will now cease.
    	gcCPULimiter.startGCTransition(false, now)
    
    	// Wake all blocked assists. These will run when we
    	// start the world again.
    	gcWakeAllAssists()
    
    	// Likewise, release the transition lock. Blocked
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  4. src/internal/trace/order.go

    //
    // It assumes the gen value passed to it is monotonically increasing across calls.
    //
    // If any error is returned, then the trace is broken and trace parsing must cease.
    // If it's not valid to advance with ev, but no error was encountered, the caller
    // should attempt to advance with other candidate events from other threads. If the
    // caller runs out of candidates, the trace is invalid.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

            return this;
        }
    
        public BuildScriptBuilder javaToolchainFor(JavaLanguageVersion languageVersion) {
            return block("Apply a specific Java toolchain to ease working on different environments.", "java", t -> {
                t.block(null, "toolchain", t1 -> {
                    t1.propertyAssignment(null, "languageVersion",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    We recommend upgrading to the latest 4.10.x release to get the most useful warnings and deprecations information before moving to 5.0.
    Avoid upgrading Gradle and migrating to Kotlin DSL at the same time in order to ease troubleshooting in case of potential issues.
     . Try running `gradle help --scan` and view the https://gradle.com/enterprise/releases/2018.4/#identify-usages-of-deprecated-gradle-functionality[deprecations view] of the generated build scan.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  7. src/go/types/api_test.go

    }
    
    func TestLookupFieldOrMethod(t *testing.T) {
    	// Test cases assume a lookup of the form a.f or x.f, where a stands for an
    	// addressable value, and x for a non-addressable value (even though a variable
    	// for ease of test case writing).
    	//
    	// Should be kept in sync with TestMethodSet.
    	var tests = []struct {
    		src      string
    		found    bool
    		index    []int
    		indirect bool
    	}{
    		// field lookups
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/api_test.go

    }
    
    func TestLookupFieldOrMethod(t *testing.T) {
    	// Test cases assume a lookup of the form a.f or x.f, where a stands for an
    	// addressable value, and x for a non-addressable value (even though a variable
    	// for ease of test case writing).
    	var tests = []struct {
    		src      string
    		found    bool
    		index    []int
    		indirect bool
    	}{
    		// field lookups
    		{"var x T; type T struct{}", false, nil, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
Back to top