Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 390 for greeting (0.22 sec)

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

    import java.util.Iterator;
    import java.util.NavigableSet;
    import java.util.NoSuchElementException;
    import java.util.SortedSet;
    import org.jspecify.annotations.Nullable;
    
    /**
     * Provides static utility methods for creating and working with {@link SortedMultiset} instances.
     *
     * @author Louis Wasserman
     */
    @GwtCompatible
    final class SortedMultisets {
      private SortedMultisets() {}
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/rdma/RdmaProviderFactory.java

    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import jcifs.Configuration;
    import jcifs.internal.smb2.rdma.disni.DisniRdmaProvider;
    import jcifs.internal.smb2.rdma.tcp.TcpRdmaProvider;
    
    /**
     * Factory for creating RDMA provider instances.
     *
     * This factory attempts to select the best available RDMA provider
     * based on system capabilities and configuration preferences.
     */
    public class RdmaProviderFactory {
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/project/ProjectUtils.java

    import org.eclipse.aether.RepositorySystemSession;
    
    // This class needs to stick around because it was exposed the remote resources plugin started using it instead of
    // getting the repositories from the project.
    
    /**
     * ProjectUtils
     */
    @Deprecated
    public final class ProjectUtils {
    
        private ProjectUtils() {}
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/exception/SsoLoginExceptionTest.java

            assertSame(cause, retrievedCause);
            assertEquals("Invalid SSO token", retrievedCause.getMessage());
        }
    
        public void test_multipleInstances() {
            // Test creating multiple instances
            SsoLoginException exception1 = new SsoLoginException("Error 1");
            SsoLoginException exception2 = new SsoLoginException("Error 2");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/failureurl/EditForm.java

         */
        public String getCurrentPageNumber() {
            return pageNumber;
        }
    
        /**
         * Initializes the form with default null values.
         * This method resets all fields to their default state for creating a new entry.
         */
        public void initialize() {
            id = null;
            url = null;
            threadName = null;
            errorName = null;
            errorLog = null;
            errorCount = null;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  6. apache-maven/src/assembly/maven/conf/toolchains.xml

     |
     |                 -it /path/to/installation/toolchains.xml
     |
     | The sections in this sample file are intended to give you a running start at
     | getting the most out of your Maven installation.
     |-->
    <toolchains xmlns="http://maven.apache.org/TOOLCHAINS/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Aug 22 14:47:43 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java

                // MNG-5368: Log a message instead of returning 'null' silently.
                this.logger.error(
                        String.format(
                                "Invalid version specification '%s' creating dependency artifact '%s'.", d.getVersion(), d),
                        e);
                return null;
            }
    
            Artifact artifact = artifactFactory.createDependencyArtifact(
                    d.getGroupId(),
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 31.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java

        /**
         * Builder class for constructing SearchResult instances using the builder pattern.
         *
         * This builder provides a fluent interface for setting the various properties
         * of a SearchResult before creating the final immutable instance.
         */
        static class SearchResultBuilder {
    
            /** The total number of records that match the search criteria. */
            private long allRecordCount;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/Sources.java

    import org.apache.maven.api.cache.CacheMetadata;
    import org.apache.maven.api.cache.CacheRetention;
    
    import static java.util.Objects.requireNonNull;
    
    /**
     * Factory methods for creating different types of sources.
     * <p>
     * This class provides specialized source implementations for different use cases:
     * <ul>
     *   <li>Path sources - simple access to file content</li>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Feb 07 00:45:02 UTC 2025
    - 8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/sso/SsoManager.java

        /** List of registered SSO authenticators. */
        protected final List<SsoAuthenticator> authenticatorList = new ArrayList<>();
    
        /**
         * Default constructor for creating a new SsoManager instance.
         */
        public SsoManager() {
            // Default constructor
        }
    
        /**
         * Checks whether SSO authentication is available and configured.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.1K bytes
    - Viewed (0)
Back to top