Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for Muto (0.13 sec)

  1. maven-core/src/main/java/org/apache/maven/internal/impl/PathModularization.java

         */
        private static final String MODULE_INFO = "module-info.class";
    
        /**
         * The attribute for automatic module name in {@code META-INF/MANIFEST.MF} files.
         */
        private static final Attributes.Name AUTO_MODULE_NAME = new Attributes.Name("Automatic-Module-Name");
    
        /**
         * Module information for the path specified at construction time.
         * This map is usually either empty if no module was found, or a singleton map.
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  2. guava-tests/benchmark/com/google/common/collect/ConcurrentHashMultisetBenchmark.java

        long blah = 0;
        for (int i = 0; i < reps; i++) {
          Integer key = keys.get(random.nextInt(nKeys));
          // This range is [-5, 4] - slight negative bias so we often hit zero, which brings the
          // auto-removal of zeroes into play.
          int delta = random.nextInt(10) - 5;
          blah += delta;
          if (delta >= 0) {
            multiset.add(key, delta);
          } else {
            multiset.remove(key, -delta);
          }
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed May 09 15:17:25 GMT 2018
    - 16.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/primitives/Floats.java

       * @throws IllegalArgumentException if {@code min > max}
       * @since 21.0
       */
      public static float constrainToRange(float value, float min, float max) {
        // avoid auto-boxing by not using Preconditions.checkArgument(); see Guava issue 3984
        // Reject NaN by testing for the good case (min <= max) instead of the bad (min > max).
        if (min <= max) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 29 15:43:06 GMT 2024
    - 25.2K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/QueryHelperTest.java

    {\"match_phrase\":{\"content\":{\"query\":\"QUERY1\",\"slop\":0,\"zero_terms_query\":\"NONE\",\"boost\":0.5}}},{\"fuzzy\":{\"title\":{\"value\":\"QUERY1\",\"fuzziness\":\"AUTO\",\"prefix_length\":0,\"max_expansions\":10,\"transpositions\":true,\"boost\":0.01}}},{\"fuzzy\":{\"content\":{\"value\":\"QUERY1\",\"fuzziness\":\"AUTO\",\"prefix_length\":0,\"max_expansions\":10,\"transpositions\":true,\"boost\":0.005}}}],\"adjust_pure_negative\":true,\"boost\":1.0}},\"functions\":[{\"filter\":{\"match_a...
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 37.3K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorTest.java

        }
    
        private MavenSession newMavenSession() throws Exception {
            return createMavenSession(null);
        }
    
        @Override
        protected String getProjectsDirectory() {
            // TODO Auto-generated method stub
            return null;
        }
    
        public static class Mojo {
            URI uri;
            Path path;
            String uriString;
            String uriAsciiString;
            String pathString;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 05 08:11:33 GMT 2023
    - 18.6K bytes
    - Viewed (0)
  6. maven-compat/src/test/java/org/apache/maven/repository/TestRepositorySystem.java

        public void publish(
                ArtifactRepository repository, File source, String remotePath, ArtifactTransferListener transferListener)
                throws ArtifactTransferFailedException {
            // TODO Auto-generated method stub
    
        }
    
        public ArtifactResolutionResult resolve(ArtifactResolutionRequest request) {
            ArtifactResolutionResult result = new ArtifactResolutionResult();
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 11.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/Constants.java

        public static final String OK = "ok";
    
        public static final String FAIL = "fail";
    
        public static final String STOP = "stop";
    
        public static final String AUTO = "auto";
    
        public static final String NONE = "none";
    
        public static final String ITEM_LABEL = "label";
    
        public static final String ITEM_VALUE = "value";
    
        public static final String ITEM_NAME = "name";
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionQuery.java

        }
    
        protected MatchQueryBuilder regFuzzyQ(String name, Object value) {
            checkEsInvalidQuery(name, value);
            MatchQueryBuilder fuzzyQuery = QueryBuilders.matchQuery(name, value).fuzziness(Fuzziness.AUTO);
            regQ(fuzzyQuery);
            return fuzzyQuery;
        }
    
        protected PrefixQueryBuilder regPrefixQ(String name, String prefix) {
            checkEsInvalidQuery(name, prefix);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 21.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionQuery.java

        }
    
        protected MatchQueryBuilder regFuzzyQ(String name, Object value) {
            checkEsInvalidQuery(name, value);
            MatchQueryBuilder fuzzyQuery = QueryBuilders.matchQuery(name, value).fuzziness(Fuzziness.AUTO);
            regQ(fuzzyQuery);
            return fuzzyQuery;
        }
    
        protected PrefixQueryBuilder regPrefixQ(String name, String prefix) {
            checkEsInvalidQuery(name, prefix);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 21.1K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java

            assertEquals(mojo.uriAsciiString, path.toUri().toASCIIString());
            assertEquals(mojo.pathString, path.toString());
        }
    
        @Override
        protected String getProjectsDirectory() {
            // TODO Auto-generated method stub
            return null;
        }
    
        public static class Mojo {
            URI uri;
            Path path;
            String uriString;
            String uriAsciiString;
            String pathString;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 19.2K bytes
    - Viewed (0)
Back to top