Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for pasta (0.19 sec)

  1. guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

          return label;
        }
      }
    
      /** Convenient subsets of the {@link Timeout} enumeration for specifying scenario outcomes. */
      private enum TimeoutsToUse {
        ANY(Timeout.values()),
        PAST(Timeout.MIN, Timeout.MINUS_SMALL, Timeout.ZERO),
        FUTURE(Timeout.SMALL, Timeout.MAX),
        SMALL(Timeout.SMALL),
        FINITE(Timeout.MIN, Timeout.MINUS_SMALL, Timeout.ZERO, Timeout.SMALL),
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Apr 17 14:48:57 GMT 2023
    - 27.4K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/Strings.java

            "iw - דג סקרן שט בים מאוכזב ולפתע מצא לו חברה איך הקליטה", // x
            "pl - Pchnąć w tę łódź jeża lub ośm skrzyń fig", // x
            "ru - Съешь же ещё этих мягких французских булок да выпей чаю", // x
            "tr - Pijamalı hasta, yağız şoföre çabucak güvendi", //
            "ch - 壾 熥獘 蟷蠉蟼 鍌鍗鍷 螒螝螜 瀷瀹藶 隒雸 腠", //
        };
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2K bytes
    - Viewed (0)
  3. android/guava-testlib/test/com/google/common/collect/testing/features/FeatureEnumTest.java

    import java.lang.annotation.RetentionPolicy;
    import java.lang.reflect.Method;
    import java.util.Locale;
    import junit.framework.TestCase;
    
    /**
     * Since annotations have some reusability issues that force copy and paste all over the place, it's
     * worth having a test to ensure that all our Feature enums have their annotations correctly set up.
     *
     * @author George van den Driessche
     */
    public class FeatureEnumTest extends TestCase {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Dec 04 17:37:03 GMT 2017
    - 4.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/RemovalListener.java

     * @author Charles Fry
     * @since 10.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public interface RemovalListener<K, V> {
      /**
       * Notifies the listener that a removal occurred at some point in the past.
       *
       * <p>This does not always signify that the key is now absent from the cache, as it may have
       * already been re-added.
       */
      // Technically should accept RemovalNotification<? extends K, ? extends V>, but because
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Jun 15 18:00:07 GMT 2021
    - 2K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

          return label;
        }
      }
    
      /** Convenient subsets of the {@link Timeout} enumeration for specifying scenario outcomes. */
      private enum TimeoutsToUse {
        ANY(Timeout.values()),
        PAST(Timeout.MIN, Timeout.MINUS_SMALL, Timeout.ZERO),
        FUTURE(Timeout.SMALL, Timeout.MAX),
        SMALL(Timeout.SMALL),
        FINITE(Timeout.MIN, Timeout.MINUS_SMALL, Timeout.ZERO, Timeout.SMALL),
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 17 14:48:57 GMT 2023
    - 26.1K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/project/DefaultMavenProjectBuilderTest.java

            // update the resource if we stop supporting modelVersion 4.0.0
            File f1 = getTestFile("src/test/resources/projects/past-model-version-pom.xml");
    
            ProjectBuildingException e = assertThrows(
                    ProjectBuildingException.class, () -> getProject(f1), "Expected to fail for past versions");
            assertThat(e.getMessage(), containsString("Building this project requires an older version of Maven"));
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jun 19 15:04:04 GMT 2023
    - 16.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        public static final String CONSTRAINTS_Null_MESSAGE = "{constraints.Null.message}";
    
        /** The key of the message: {item} must be in the past. */
        public static final String CONSTRAINTS_Past_MESSAGE = "{constraints.Past.message}";
    
        /** The key of the message: {item} must match "{regexp}". */
        public static final String CONSTRAINTS_Pattern_MESSAGE = "{constraints.Pattern.message}";
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/job/SuggestJob.java

                    cmdList.add("-D" + Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS + "=" + httpAddress);
                }
            }
    
            final String systemLastaEnv = System.getProperty("lasta.env");
            if (StringUtil.isNotBlank(systemLastaEnv)) {
                if ("web".equals(systemLastaEnv)) {
                    cmdList.add("-Dlasta.env=" + getExecuteType());
                } else {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/MinMaxPriorityQueue.java

            if (lastFromForgetMeNot != null) {
              canRemove = true;
              return lastFromForgetMeNot;
            }
          }
          throw new NoSuchElementException("iterator moved past last element in queue.");
        }
    
        @Override
        public void remove() {
          checkRemove(canRemove);
          checkModCount();
          canRemove = false;
          expectedModCount++;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 34K bytes
    - Viewed (0)
  10. guava-testlib/test/com/google/common/collect/testing/features/FeatureEnumTest.java

    import java.lang.annotation.RetentionPolicy;
    import java.lang.reflect.Method;
    import java.util.Locale;
    import junit.framework.TestCase;
    
    /**
     * Since annotations have some reusability issues that force copy and paste all over the place, it's
     * worth having a test to ensure that all our Feature enums have their annotations correctly set up.
     *
     * @author George van den Driessche
     */
    public class FeatureEnumTest extends TestCase {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Dec 04 17:37:03 GMT 2017
    - 4.4K bytes
    - Viewed (0)
Back to top