Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 148 for exclude1 (0.05 sec)

  1. guava/src/com/google/common/net/InetAddresses.java

      }
    
      /**
       * Examines the Inet6Address to determine if it is an IPv6 address of one of the specified address
       * types that contain an embedded IPv4 address.
       *
       * <p>NOTE: ISATAP addresses are explicitly excluded from this method due to their trivial
       * spoofability. With other transition addresses spoofing involves (at least) infection of one's
       * BGP routing table.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 19 21:24:11 UTC 2025
    - 47.4K bytes
    - Viewed (0)
  2. android/guava-tests/benchmark/com/google/common/util/concurrent/ExecutionListBenchmark.java

                    }
                  });
        }
      }
    
      @AfterExperiment
      void tearDown() throws Exception {
        executorService.shutdown();
      }
    
      @Footprint(exclude = {Runnable.class, Executor.class})
      public Object measureSize() {
        list = impl.newExecutionList();
        for (int i = 0; i < numListeners; i++) {
          list.add(listener, directExecutor());
        }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

            return df.format(target) + unit;
        }
    
        /**
         * Generates URL query parameters for pagination, excluding the specified query parameter.
         *
         * @param query the query parameter to exclude from paging
         * @return URL-encoded query string for pagination
         */
        public static String pagingQuery(final String query) {
            return LaRequestUtil.getOptionalRequest().map(req -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.3K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

            systemProperties.setProperty(Constants.IGNORE_FAILURE_TYPE_PROPERTY, ".*ConnectException.*");
    
            List<String> excludedUrls = crawlingConfigHelper.getExcludedUrlList("123");
            // Should exclude ConnectException but include the other 2
            assertEquals(2, excludedUrls.size());
            assertTrue(excludedUrls.contains("http://test.com/1.html"));
            assertTrue(excludedUrls.contains("http://test.com/2.html"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 34.9K bytes
    - Viewed (0)
  5. src/main/resources/fess_label_fr.properties

    labels.available=Statut
    labels.createdBy=Créé par
    labels.createdTime=Date de création
    labels.depth=Profondeur
    labels.excludedPaths=Chemins exclus pour l'exploration
    labels.excludedUrls=URL exclues pour l'exploration
    labels.excludedDocPaths=Chemins exclus pour la recherche
    labels.excludedDocUrls=URL exclues pour la recherche
    labels.hostname=Nom d'hôte
    labels.id=ID
    labels.includedPaths=Chemins inclus pour l'exploration
    labels.includedUrls=URL incluses pour l'exploration
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.6K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/entity/SearchRenderDataTest.java

            searchRenderData.setSearchQuery(complexQuery);
            assertEquals(complexQuery, searchRenderData.getSearchQuery());
    
            // Test with special characters
            String specialQuery = "test + query - exclude \"exact phrase\" *wildcard?";
            searchRenderData.setSearchQuery(specialQuery);
            assertEquals(specialQuery, searchRenderData.getSearchQuery());
        }
    
        public void test_setAndGetRequestedTime() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 23.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/reflect/Invokable.java

       * of a non-static inner class, unlike {@link Constructor#getParameterTypes}, the hidden {@code
       * this} parameter of the enclosing class is excluded from the returned parameters.
       */
      @IgnoreJRERequirement
      public final ImmutableList<Parameter> getParameters() {
        Type[] parameterTypes = getGenericParameterTypes();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 18.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

        protected static final String START_URLS = "start_urls";
    
        /** XML element name for good (included) URLs configuration. */
        protected static final String GOOD_URLS = "good_urls";
    
        /** XML element name for bad (excluded) URLs configuration. */
        protected static final String BAD_URLS = "bad_urls";
    
        /** Array of supported web protocols for URL classification. */
        protected String[] webProtocols = { "http:", "https:" };
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Excluded Paths for Crawling */
        public static final String LABELS_EXCLUDED_PATHS = "{labels.excludedPaths}";
    
        /** The key of the message: Excluded URLs for Crawling */
        public static final String LABELS_EXCLUDED_URLS = "{labels.excludedUrls}";
    
        /** The key of the message: Excluded Paths for Searching */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 146.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/QueryHelper.java

         * This method evaluates all configured query rescorers with the provided parameters.
         *
         * @param params parameters to pass to the rescorers during evaluation
         * @return an array of rescorer builders, filtered to exclude null values
         */
        public RescorerBuilder<?>[] getRescorers(final Map<String, Object> params) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
Back to top