Search Options

Results per page
Sort
Preferred Languages
Advance

Results 281 - 290 of 1,682 for type1 (0.02 sec)

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

     *
     * <p>The generated multimaps are serializable if the key and value types are serializable, unless
     * stated otherwise in one of the configuration methods.
     *
     * @author Louis Wasserman
     * @param <K0> An upper bound on the key type of the generated multimap.
     * @param <V0> An upper bound on the value type of the generated multimap.
     * @since 16.0
     */
    @GwtCompatible
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 18K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/MultimapBuilder.java

     *
     * <p>The generated multimaps are serializable if the key and value types are serializable, unless
     * stated otherwise in one of the configuration methods.
     *
     * @author Louis Wasserman
     * @param <K0> An upper bound on the key type of the generated multimap.
     * @param <V0> An upper bound on the value type of the generated multimap.
     * @since 16.0
     */
    @GwtCompatible
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 18K bytes
    - Viewed (0)
  3. api/maven-api-di/src/main/java/org/apache/maven/di/tool/DiIndexProcessor.java

                    logError("Error updating file", e);
                }
            }
    
            return true;
        }
    
        /**
         * Gets the fully qualified class name for a type element, including handling inner classes.
         *
         * @param typeElement the type element to get the class name for
         * @return the fully qualified class name
         */
        private String getFullClassName(TypeElement typeElement) {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Apr 03 13:33:59 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  4. compat/maven-compat/src/main/java/org/apache/maven/repository/RepositorySystem.java

        Artifact createArtifact(String groupId, String artifactId, String version, String scope, String type);
    
        Artifact createProjectArtifact(String groupId, String artifactId, String version);
    
        Artifact createArtifactWithClassifier(
                String groupId, String artifactId, String version, String type, String classifier);
    
        Artifact createPluginArtifact(Plugin plugin);
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb/SmbPipeHandleInternalTest.java

        }
    
        @Test
        @DisplayName("unwrap returns this for compatible types and throws otherwise")
        void unwrap_success_and_failure() {
            SmbPipeHandleImpl handle = newHandleWithBasicStubs(0, "\\\\pipe\\\\z");
    
            // Happy path: unwrap to interface and concrete type
            SmbPipeHandle unwrapped1 = handle.unwrap(SmbPipeHandle.class);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 16.7K bytes
    - Viewed (0)
  6. src/test/java/jcifs/pac/kerberos/KerberosCredentialsTest.java

                KerberosKey[] keys = credentials.getKeys();
                assertEquals(0, keys.length);
            }
        }
    
        /**
         * Test getKeys method when subject has other credential types.
         *
         * @throws LoginException if login fails.
         */
        @Test
        void testGetKeys_WithOtherCredentialTypes() throws LoginException {
            Set<Object> privateCredentials = new HashSet<>();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/collection/ArrayUtil.java

        /**
         * Converts an array to a list.
         * <p>
         * The source array can be a primitive array. In that case, the resulting list will contain the corresponding wrapper types.
         * </p>
         *
         * @param <T>
         *            the type of the array elements
         * @param array
         *            the array
         * @return the list
         */
        @SuppressWarnings("unchecked")
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 41.5K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/sso/SsoAuthenticatorTest.java

            public void setLoginCredential(LoginCredential credential) {
                this.loginCredential = credential;
            }
    
            public void setResponseForType(SsoResponseType type, ActionResponse response) {
                responseMap.put(type, response);
            }
    
            public void setLogoutUrl(String url) {
                this.logoutUrl = url;
            }
    
            public boolean isResolverCalled() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11K bytes
    - Viewed (0)
  9. src/test/java/jcifs/spnego/SpnegoConstantsTest.java

    import java.util.Map;
    import java.util.regex.Pattern;
    
    import org.junit.jupiter.api.DisplayName;
    import org.junit.jupiter.api.Test;
    
    /**
     * Tests for SpnegoConstants interface.
     * Verifies constant values, modifiers, types, and structural properties.
     */
    class SpnegoConstantsTest {
    
        // Simple OID format: numbers separated by dots (at least one dot)
        private static final Pattern OID_PATTERN = Pattern.compile("\\d+(?:\\.\\d+)+");
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/SID.java

            }
            return sub_authority[sub_authority_count - 1];
        }
    
        /**
         * Returns the type of this SID indicating the state or type of account.
         * <p>
         * SID types are described in the following table.
         * {@code
         * <table>
         * <tr><th>Type</th><th>Name</th></tr>
         * <tr><td>SID_TYPE_USE_NONE</td><td>0</td></tr>
         * <tr><td>SID_TYPE_USER</td><td>User</td></tr>
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 31.5K bytes
    - Viewed (0)
Back to top