Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 76 for sensible (0.15 sec)

  1. android/guava/src/com/google/common/collect/ForwardingMultiset.java

      /**
       * A sensible definition of {@link #remove(Object)} in terms of {@link #remove(Object, int)}. If
       * you override {@link #remove(Object, int)}, you may wish to override {@link #remove(Object)} to
       * forward to this implementation.
       *
       * @since 7.0
       */
      @Override
      protected boolean standardRemove(@CheckForNull Object element) {
        return remove(element, 1) > 0;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ForwardingMap.java

        return null;
      }
    
      /**
       * A sensible definition of {@link #clear} in terms of the {@code iterator} method of {@link
       * #entrySet}. In many cases, you may wish to override {@link #clear} to forward to this
       * implementation.
       *
       * @since 7.0
       */
      protected void standardClear() {
        Iterators.clear(entrySet().iterator());
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ForwardingMultiset.java

      /**
       * A sensible definition of {@link #remove(Object)} in terms of {@link #remove(Object, int)}. If
       * you override {@link #remove(Object, int)}, you may wish to override {@link #remove(Object)} to
       * forward to this implementation.
       *
       * @since 7.0
       */
      @Override
      protected boolean standardRemove(@CheckForNull Object element) {
        return remove(element, 1) > 0;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ForwardingNavigableMap.java

      protected abstract NavigableMap<K, V> delegate();
    
      @Override
      @CheckForNull
      public Entry<K, V> lowerEntry(@ParametricNullness K key) {
        return delegate().lowerEntry(key);
      }
    
      /**
       * A sensible definition of {@link #lowerEntry} in terms of the {@code lastEntry()} of {@link
       * #headMap(Object, boolean)}. If you override {@code headMap}, you may wish to override {@code
       * lowerEntry} to forward to this implementation.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 15 18:11:44 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ForwardingNavigableMap.java

      protected abstract NavigableMap<K, V> delegate();
    
      @Override
      @CheckForNull
      public Entry<K, V> lowerEntry(@ParametricNullness K key) {
        return delegate().lowerEntry(key);
      }
    
      /**
       * A sensible definition of {@link #lowerEntry} in terms of the {@code lastEntry()} of {@link
       * #headMap(Object, boolean)}. If you override {@code headMap}, you may wish to override {@code
       * lowerEntry} to forward to this implementation.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 15 18:11:44 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ForwardingMap.java

        return null;
      }
    
      /**
       * A sensible definition of {@link #clear} in terms of the {@code iterator} method of {@link
       * #entrySet}. In many cases, you may wish to override {@link #clear} to forward to this
       * implementation.
       *
       * @since 7.0
       */
      protected void standardClear() {
        Iterators.clear(entrySet().iterator());
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  7. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorErrorHandlingIntegrationTest.groovy

                    }
                """
                action = """
                    throw new UnserializableMemberException("Unserializable exception during execution");
                """
            }
        }
    
        def "produces a sensible error when there is a failure in the worker runnable in #isolationMode"() {
            def failureExecution = fixture.workActionThatFails.writeToBuildFile()
            fixture.withWorkActionClassInBuildSrc()
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesErrorHandlingIntegTest.groovy

    class ComponentSelectionRulesErrorHandlingIntegTest extends AbstractComponentSelectionRulesIntegrationTest {
    
        @Requires(UnitTestPreconditions.IsGroovy3)
        def "produces sensible error when bad code is supplied in component selection rule with Groovy 3"() {
            def lines = buildFile.readLines().size()
            buildFile << """
                dependencies {
                    conf "org.utils:api:1.2"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeDeclarationIntegrationTest.groovy

            when:
            run(":printTestSoftwareTypeExtensionConfiguration")
    
            then:
            assertThatDeclaredValuesAreSetProperly()
        }
    
        def 'sensible error when model types do not match in software type declaration'() {
            given:
            withSoftwareTypePluginWithMismatchedModelTypes().prepareToExecute()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 19 16:59:01 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskExecutionIntegrationTest.groovy

                executer.withTasks("b", "a").withArguments("-x", ":a").run().assertTasksExecuted(":b", ":sub:a")
            }
        }
    
        def "sensible error message for circular task dependency"() {
            buildFile << """
                task a(dependsOn: 'b')
                task b(dependsOn: 'a')
            """
            expect:
            2.times {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 25.7K bytes
    - Viewed (0)
Back to top