Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,126 for setC (0.02 sec)

  1. src/main/java/org/codelibs/core/sql/StatementUtil.java

                logger.log(format("ECL0017", e.getMessage()), e);
            }
        }
    
        /**
         * Returns the result set.
         *
         * @param statement
         *            {@link Statement}. Must not be {@literal null}.
         * @return The result set.
         */
        public static ResultSet getResultSet(final Statement statement) {
            assertArgumentNotNull("statement", statement);
    
            try {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

        protected FessConfig fessConfig;
    
        /** The set of field names for content. */
        protected final Set<String> contentFieldNameSet = new HashSet<>();
    
        /** The set of field names for tags. */
        protected final Set<String> tagFieldNameSet = new HashSet<>();
    
        /** The set of field names for roles. */
        protected final Set<String> roleFieldNameSet = new HashSet<>();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.3K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

                awaitUnchecked(barrier);
              }
            };
        Set<Object> finalResults = Collections.synchronizedSet(Sets.newIdentityHashSet());
        Runnable collectResultsRunnable =
            new Runnable() {
              @Override
              public void run() {
                try {
                  String result = Uninterruptibles.getUninterruptibly(currentFuture.get());
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 11 18:52:30 UTC 2025
    - 46.8K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/graph/AbstractNetworkTest.java

        addEdge(N1, N2, E12);
        Set<Integer> n1AdjacentNodes = network.adjacentNodes(N1);
        Set<Integer> n2AdjacentNodes = network.adjacentNodes(N2);
        Set<Integer> n1Predecessors = network.predecessors(N1);
        Set<Integer> n2Predecessors = network.predecessors(N2);
        Set<Integer> n1Successors = network.successors(N1);
        Set<Integer> n2Successors = network.successors(N2);
        Set<String> n1IncidentEdges = network.incidentEdges(N1);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/graph/Network.java

    import java.util.Optional;
    import java.util.Set;
    import org.jspecify.annotations.Nullable;
    
    /**
     * An interface for <a
     * href="https://en.wikipedia.org/wiki/Graph_(discrete_mathematics)">graph</a>-structured data,
     * whose edges are <a
     * href="https://github.com/google/guava/wiki/GraphsExplained#uniqueness">unique</a> objects.
     *
     * <p>A graph is composed of a set of nodes and a set of edges connecting pairs of nodes.
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 22:03:02 UTC 2025
    - 22.5K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/collect/testing/TestsForSetsInJavaUtil.java

                  @Override
                  public SortedSet<String> create(String[] elements) {
                    SortedSet<String> set = new TreeSet<>(arbitraryNullFriendlyComparator());
                    Collections.addAll(set, elements);
                    return set;
                  }
                })
            .named("TreeSet, with comparator")
            .withFeatures(
                SetFeature.GENERAL_PURPOSE,
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 19 21:24:11 UTC 2025
    - 19.8K bytes
    - Viewed (0)
  7. src/packaging/rpm/init.d/fess

    #
    if [ -f /etc/rc.status ]; then
        . /etc/rc.status
        rc_reset
    fi
    
    #
    # Source function library.
    #
    if [ -f /etc/rc.d/init.d/functions ]; then
        . /etc/rc.d/init.d/functions
    fi
    
    # Sets the default values for fess variables used in this script
    PROC_NAME=org.codelibs.fess.FessBoot
    FESS_USER="${packaging.fess.user}"
    FESS_GROUP="${packaging.fess.group}"
    FESS_HOME="${packaging.fess.home.dir}"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

        /**
         * Updates crawling information parameters for the specified session.
         * Sets the name and expiration time based on the provided parameters.
         *
         * @param sessionId the session ID to update
         * @param name the name to set for the crawling session (uses system name if blank)
         * @param dayForCleanup number of days until cleanup (sets expiration if >= 0)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/curl/CurlResponse.java

        }
    
        /**
         * Sets the encoding for the response content.
         *
         * @param encoding the encoding to set.
         */
        public void setEncoding(final String encoding) {
            this.encoding = encoding;
        }
    
        /**
         * Sets the exception that occurred while accessing the content.
         *
         * @param e the exception to set.
         */
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Sat Jul 05 01:38:18 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/query/DefaultQueryBuilder.java

         */
        @Override
        public boolean isFragment() {
            return queryBuilder.isFragment();
        }
    
        /**
         * Sets the query name.
         *
         * @param queryName the query name to set
         * @return the query builder
         */
        @Override
        public QueryBuilder queryName(final String queryName) {
            return queryBuilder.queryName(queryName);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
Back to top