Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,884 for preset (0.22 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ExecutionFailure.java

        ExecutionFailure assertHasFileName(String filename);
    
        /**
         * Asserts that the given number of failures are present.
         */
        ExecutionFailure assertHasFailures(int count);
    
        /**
         * Assert that there is a failure present with the given description and invokes the given action on the failure.
         *
         * <p>Error messages are normalized to use new-line char as line separator.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:21:25 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceGraph.js

            plots[chartId] = chart;
            function zoomFunction(plot, reset) {
                reset = reset || false;
                return function (event, ranges) {
                    $.each(plot.getXAxes(), function(_, axis) {
                        const opts = axis.options;
                        opts.min = reset ? null : ranges.xaxis.from;
                        opts.max = reset ? null : ranges.xaxis.to;
                    });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    	// result: (MOVDconst [int64(val)])
    	for {
    		val := auxIntToInt16(v.AuxInt)
    		v.reset(OpRISCV64MOVDconst)
    		v.AuxInt = int64ToAuxInt(int64(val))
    		return true
    	}
    }
    func rewriteValueRISCV64_OpConst32(v *Value) bool {
    	// match: (Const32 [val])
    	// result: (MOVDconst [int64(val)])
    	for {
    		val := auxIntToInt32(v.AuxInt)
    		v.reset(OpRISCV64MOVDconst)
    		v.AuxInt = int64ToAuxInt(int64(val))
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/testers/MapPutTester.java

      }
    
      @MapFeature.Require(absent = SUPPORTS_PUT)
      @CollectionSize.Require(absent = ZERO)
      public void testPut_unsupportedPresentExistingValue() {
        try {
          assertEquals("put(present, existingValue) should return present or throw", v0(), put(e0()));
        } catch (UnsupportedOperationException tolerated) {
        }
        expectUnchanged();
      }
    
      @MapFeature.Require(absent = SUPPORTS_PUT)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueSupplier.java

         * <p>
         * If value is present, it can optionally carry a {@link #getSideEffect() side effect}.
         * A {@link #isMissing() missing} value never carries a side effect.
         */
        interface Value<T> {
            Value<Object> MISSING = new Missing<>();
            Value<Void> SUCCESS = new Present<>(null);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 20:31:29 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top