Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 521 for resolves (0.64 sec)

  1. src/main/java/org/codelibs/fess/sso/SsoAuthenticator.java

         * @return The login credential.
         */
        LoginCredential getLoginCredential();
    
        /**
         * Resolves credential using the provided resolver.
         * @param resolver The login credential resolver.
         */
        void resolveCredential(LoginCredentialResolver resolver);
    
        /**
         * Gets the action response for the specified SSO response type.
         * @param responseType The type of SSO response required.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Dns.kt

     * limitations under the License.
     */
    package okhttp3
    
    import java.net.InetAddress
    import java.net.UnknownHostException
    import okhttp3.Dns.Companion.SYSTEM
    
    /**
     * A domain name service that resolves IP addresses for host names. Most applications will use the
     * [system DNS service][SYSTEM], which is the default. Some applications may provide their own
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/Source.java

         */
        @Nonnull
        String getLocation();
    
        /**
         * Resolves a new source relative to this one.
         * <p>
         * The resolution strategy depends on the source type:
         * <ul>
         *   <li>File sources resolve against their parent directory</li>
         *   <li>URL sources resolve against their base URL</li>
         *   <li>Other sources may not support resolution and return null</li>
         * </ul>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jan 29 09:46:53 UTC 2025
    - 4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

            }
    
        }
    
        /**
         * Resolves the SPNEGO credential to a user entity.
         *
         * This method handles the resolution of SPNEGO credentials by checking
         * if the user is an admin user or needs to be authenticated through LDAP.
         *
         * @param resolver The credential resolver to use for user lookup
         */
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SID.java

            }
        }
    
        /**
         * Resolves an array of SIDs to obtain their account and domain names.
         *
         * @param authorityServerName the server to use for SID resolution
         * @param auth the authentication credentials to use
         * @param sids the array of SIDs to resolve
         * @param offset the starting offset in the array
         * @param length the number of SIDs to resolve
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 31.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/util/ResourceUtil.java

                return new File[0];
            }
            return libDir.listFiles(filter);
        }
    
        /**
         * Resolves system properties in a given string.
         * @param value The string to resolve.
         * @return The resolved string.
         */
        public static String resolve(final String value) {
            if (value == null) {
                return null;
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java

         *
         * @see #getSourceRoots(Project)
         */
        void addSourceRoot(@Nonnull Project project, @Nonnull SourceRoot source);
    
        /**
         * Resolves and adds the given directory as a source with the given scope and language.
         * First, this method resolves the given root against the project base directory, then normalizes the path.
         * If no source already exists for the same scope, language and normalized directory,
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Jan 30 23:29:13 UTC 2025
    - 12K bytes
    - Viewed (0)
  8. src/test/java/jcifs/smb/RequestParamTest.java

                    values, "values() order should match declaration order");
        }
    
        // Happy path: valueOf resolves each constant name; toString equals name; ordinal is stable
        @ParameterizedTest
        @ValueSource(strings = { "NONE", "NO_TIMEOUT", "NO_RETRY", "RETAIN_PAYLOAD" })
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/Dfs.java

                }
            }
            return null;
        }
    
        /**
         * Resolves a DFS path to obtain referral information
         * @param domain the domain name
         * @param root the DFS root
         * @param path the path to resolve
         * @param auth the authentication credentials
         * @return a DFS referral for the resolved path
         * @throws SmbAuthException if authentication fails
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  10. src/test/java/jcifs/smb/SIDCacheImplTest.java

        @Test
        @DisplayName("resolveSids(CIFSContext,server,sids,offset,length) resolves missing, caches, and reuses cache")
        void resolveSids_withOffsetAndCache_behavesCorrectly() throws Exception {
            CIFSContext ctx = mock(CIFSContext.class);
            SIDCacheImpl cache = Mockito.spy(new SIDCacheImpl(ctx));
    
            // Prepare SIDs, two need resolution, one already resolved
            SID s1 = sid("S-1-5-21-10-11-12-1001");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14K bytes
    - Viewed (0)
Back to top