Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 726 for Rolling (0.11 sec)

  1. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/CircularEvaluationSpec.groovy

         * @param <T> the provider value type
         */
        static abstract class CircularFunctionEvaluationSpec<T> extends CircularEvaluationSpec<T> {
            abstract ProviderInternal<T> providerWithSelfReference()
    
            def "calling #consumer throws exception if user code causes circular evaluation"(
                Consumer<ProviderInternal<?>> consumer
            ) {
                given:
                def provider = providerWithSelfReference()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:32 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. platforms/jvm/language-jvm/src/main/java/org/gradle/api/plugins/FeatureSpec.java

         * @param sourceSet the source set
         */
        void usingSourceSet(SourceSet sourceSet);
    
        /**
         * Declares a capability of this feature.
         * <p>
         * Calling this method multiple times will declare <i>additional</i>
         * capabilities. Note that calling this method will drop the default
         * capability that is added by
         * {@link JavaPluginExtension#registerFeature(String, org.gradle.api.Action)}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/TransformBackedProviderTest.groovy

        }
    
        def "does not fail when calling get() after producer task has completed"() {
            given:
            def property = propertyWithCompletedProducer()
            def provider = property.map { Integer.parseInt(it) }
    
            when:
            provider.get()
    
            then:
            0 * progressEventEmitter._
        }
    
        def "fails when calling getOrNull() before producer task has completed"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 15:06:10 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/wait/doc.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package wait provides tools for polling or listening for changes
    // to a condition.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 14:09:48 UTC 2017
    - 717 bytes
    - Viewed (0)
  5. tensorflow/cc/experimental/libtf/tests/perf_test.cc

      return TaggedValue(args.tuple()[0].i64() + args.tuple()[1].i64());
    }
    
    int64_t AddRaw(int64_t a, int64_t b) { return a + b; }
    
    }  // namespace
    
    // Add numbers in a loop by calling a callable.
    void CallFunctions(::testing::benchmark::State& state) {
      Integer sum(0);
      Callable callable((impl::TaggedValue(impl::Func(AddTagged))));
      *callable.Call<Integer>(sum, Integer(30));
      size_t i = 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 15 16:58:38 UTC 2021
    - 3K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/CapabilityResolutionDetails.java

         */
        List<ComponentVariantIdentifier> getCandidates();
    
        /**
         * Selects a particular candidate to solve the conflict. It is recommended to
         * provide a human-readable explanation to the choice by calling the {@link #because(String)} method
         *
         * @param candidate the selected candidate
         * @return this details instance
         *
         * @since 6.0
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/FilteringProviderTest.groovy

        }
    
        def "does not fail when calling get() after producer task has completed"() {
            given:
            def property = propertyWithCompletedProducer()
            def provider = property.filter { it.contains("1") }
    
            when:
            provider.get()
    
            then:
            noExceptionThrown()
        }
    
        def "fails when calling getOrNull() before producer task has completed"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:32 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. test/fixedbugs/issue19137.go

    // Issue 19137: folding address into load/store causes
    // odd offset on ARM64.
    
    package p
    
    type T struct {
    	p *int
    	a [2]byte
    	b [6]byte // not 4-byte aligned
    }
    
    func f(b [6]byte) T {
    	var x [1000]int // a large stack frame
    	_ = x
    	return T{b: b}
    }
    
    // Arg symbol's base address may be not at an aligned offset to
    // SP. Folding arg's address into load/store may cause odd offset.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 22:28:17 UTC 2017
    - 1.1K bytes
    - Viewed (0)
  9. pkg/volume/metrics_block_linux_test.go

    	if !volumetest.MetricsEqualIgnoreTimestamp(actual, expected) {
    		t.Errorf("Expected empty Metrics from uninitialized MetricsBlock, actual %v", *actual)
    	}
    	if err == nil {
    		t.Errorf("Expected error when calling GetMetrics on uninitialized MetricsBlock, actual nil")
    	}
    
    	metrics = NewMetricsBlock("/nonexistent/device/node")
    	actual, err = metrics.GetMetrics()
    	if !volumetest.MetricsEqualIgnoreTimestamp(actual, expected) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 18 09:43:07 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/functional/src/main/java/org/gradle/internal/lazy/Lazy.java

     * are possible and creating a lazy provider can be done by calling
     * one of the factory methods:
     * <ul>
     *     <li>{@link #unsafe()} would create a lazy wrapper which performs no synchronization at all when calling the supplier: it may be called several times concurrently by different threads. Not thread safe!</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top