Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 147 for Avery (0.06 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            assertValueIs(["1"])
        }
    
        def "queries initial value for every call to get()"() {
            expect:
            def initialValue = toMutable(["abc"])
            property.set(initialValue)
            assertValueIs(["abc"])
            initialValue.add("added")
            assertValueIs(["abc", "added"])
        }
    
        def "queries underlying provider for every call to get()"() {
            def provider = Stub(ProviderInternal)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    			case r.URL.Path == secondRequestPathShouldWork:
    				close(secondHandlerDoneCh)
    
    			}
    		})
    
    		// NOTE: the server will enforce a 1m timeout on every incoming
    		//  request, and the client enforces a timeout of 2m.
    		handler := newHandlerChain(t, requestHandler, controller, userName, time.Minute)
    		server, requestGetter := newHTTP2ServerWithClient(handler, 2*time.Minute)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  3. src/runtime/mgcpacer.go

    	idleMarkWorkers atomic.Uint64
    
    	// assistWorkPerByte is the ratio of scan work to allocated
    	// bytes that should be performed by mutator assists. This is
    	// computed at the beginning of each cycle and updated every
    	// time heapScan is updated.
    	assistWorkPerByte atomic.Float64
    
    	// assistBytesPerWork is 1/assistWorkPerByte.
    	//
    	// Note that because this is read and written independently
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/prove.go

    				}
    				// One might be tempted to create a v >= ft.zero relation for
    				// all OpPhi's composed of only provably-positive values
    				// but that bloats up the facts table for a very negligible gain.
    				// In Go itself, very few functions get improved (< 5) at a cost of 5-7% total increase
    				// of compile time.
    			}
    		}
    	}
    
    	// current node state
    	type walkState int
    	const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    `ignoreFailures` — default: false::
    If this property is `true`, Gradle will continue with the project's build once the tests have completed, even if some of them have failed. Note that, by default, the `Test` task always executes every test that it detects, irrespective of this setting.
    
    `failFast` —  (since Gradle 4.6) default: false::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

                  // this has 2 benefits
                  // 1. for long chains of futures strung together with setFuture we consume less stack
                  // 2. we avoid allocating Cancellation objects at every level of the cancellation
                  //    chain
                  // We can only do this for TrustedFuture, because TrustedFuture.cancel is final and
                  // does nothing but delegate to this method.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  7. guava/src/com/google/common/util/concurrent/AbstractFuture.java

                  // this has 2 benefits
                  // 1. for long chains of futures strung together with setFuture we consume less stack
                  // 2. we avoid allocating Cancellation objects at every level of the cancellation
                  //    chain
                  // We can only do this for TrustedFuture, because TrustedFuture.cancel is final and
                  // does nothing but delegate to this method.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            when:
            property.setFromAnyValue(provider)
    
            then:
            property.get() == ['k1': 'v1']
            property.get() == ['k2': 'v2']
        }
    
        def "queries initial value for every call to get()"() {
            given:
            def initialValue = ['k1': 'v1']
    
            when:
            property.set(initialValue)
            then:
            assertValueIs(['k1': 'v1'])
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    * Open an issue on the link:{gradle-issues}[Gradle issue tracker], including as much detail as you can.
    
    From version 5.1 onwards, the log directory is cleaned up automatically.
    It is checked periodically (at most every 24 hours) and log files are deleted if they haven’t been used for 7 days.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. docs/bucket/notifications/README.md

    The steps below show how to use this notification target in `namespace` format. The other format is very similar and is omitted for brevity.
    
    ### Step 1: Ensure Elasticsearch minimum requirements are met
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top