Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,746 for preset (0.3 sec)

  1. platforms/core-execution/execution/src/integTest/groovy/org/gradle/internal/execution/IncrementalExecutionIntegrationTest.groovy

            !result.reusedOutputOriginMetadata.present
    
            when:
            buildId = UniqueId.generate()
            result = outOfDate(builder.build(), "Task has failed previously.")
    
            then:
            result.execution.get().outcome == EXECUTED_NON_INCREMENTALLY
            !result.reusedOutputOriginMetadata.present
        }
    
        def "out of date when no history"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/Collectors.java

            @Override
            public Collector<T> absentIgnoring() {
                // always present
                return this;
            }
    
            @Override
            public Value<Void> collectEntries(ValueConsumer consumer, ValueCollector<T> collector, ImmutableCollection.Builder<T> collection) {
                collector.add(element, collection);
                return Value.present();
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:15:09 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/core/ops/variable_ops.cc

      }
      output->reset(
          reinterpret_cast<ImmediateExecutionTensorHandle*>(owned_value.release()));
      return Status();
    }
    
    Status DestroyResource(ImmediateExecutionContext* ctx,
                           ImmediateExecutionTensorHandle* handle) {
      ImmediateOpPtr destroy_op(ctx->CreateOperation());
      TF_RETURN_IF_ERROR(destroy_op->Reset("DestroyResourceOp", nullptr));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 11:28:19 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/scopes/KtScope.kt

         *
         * This implementation is more optimal than the one with `nameFilter` and  should be used when the candidate name set is known.
         */
        public fun getCallableSymbols(names: Collection<Name>): Sequence<KaCallableSymbol>
    
        /**
         * Return a sequence of [KaCallableSymbol] which current scope contain, if declaration name present in [names]
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/metrics/metrics_test.go

    		namespace + "_" + subsystem + "_automatic_reload_failures_total",
    		namespace + "_" + subsystem + "_automatic_reloads_total",
    	}
    
    	deprecatedEncryptionConfigAutomaticReloadFailureTotal.Reset()
    	encryptionConfigAutomaticReloadsTotal.Reset()
    	RegisterMetrics()
    
    	RecordEncryptionConfigAutomaticReloadFailure(testAPIServerID)
    	if err := testutil.GatherAndCompare(registry, strings.NewReader(expectedValue), metricNames...); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 05:47:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionRemoveTester.java

      @CollectionSize.Require(absent = ZERO)
      public void testRemove_present() {
        int initialSize = collection.size();
        assertTrue("remove(present) should return true", collection.remove(e0()));
        assertEquals(
            "remove(present) should decrease a collection's size by one.",
            initialSize - 1,
            collection.size());
        expectMissing(e0());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/redirector/JULRedirector.java

     * Some hackery to get JUL output redirected to test output
     */
    public class JULRedirector extends DefaultStandardOutputRedirector {
        private boolean reset;
    
        @Override
        public void start() {
            super.start();
            if (!reset) {
                LogManager.getLogManager().reset();
                try {
                    LogManager.getLogManager().readConfiguration();
                } catch (IOException error) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewritegeneric.go

    				continue
    			}
    			y := v_1.Args[0]
    			v.reset(OpSub16)
    			v.AddArg2(x, y)
    			return true
    		}
    		break
    	}
    	// match: (Add16 (Com16 x) x)
    	// result: (Const16 [-1])
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			if v_0.Op != OpCom16 {
    				continue
    			}
    			x := v_0.Args[0]
    			if x != v_1 {
    				continue
    			}
    			v.reset(OpConst16)
    			v.AuxInt = int16ToAuxInt(-1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/internal/ArtifactRepositoriesPluginResolver.java

                // The resolution will fail if there is no user-provided required version, however it avoids us failing here
                // if the weak version is not present but never selected.
                return PluginResolutionResult.found(new ExternalPluginResolution(getDependencyFactory(), pluginRequest, autoApplied));
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:20:28 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/TypeAnnotationMetadata.java

    import java.lang.annotation.Annotation;
    import java.util.Optional;
    
    public interface TypeAnnotationMetadata {
        /**
         * The annotations present on the type itself.
         */
        ImmutableSet<Annotation> getAnnotations();
    
        /**
         * Whether an annotation of the given type is present on the type itself.
         */
        boolean isAnnotationPresent(Class<? extends Annotation> annotationType);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:21 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top