Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 554 for preset (0.13 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/MapCollectors.java

            @Override
            public MapCollector<K, V> absentIgnoring() {
                // always present
                return this;
            }
    
            @Override
            public Value<Void> collectEntries(ValueConsumer consumer, MapEntryCollector<K, V> collector, Map<K, V> dest) {
                collector.add(key, value, dest);
                return Value.present();
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 12:22:39 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/collection/LruHashSet.java

         *
         * @param o
         *            object to be removed from this set, if present.
         * @return true if the set contained the specified element.
         */
        @Override
        public boolean remove(final Object o) {
            return map.remove(o) == PRESENT;
        }
    
        /**
         * Removes all of the elements from this set.
         */
        @Override
        public void clear() {
            map.clear();
        }
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top