- Sort Score
- Num 10 results
- Language All
Results 1191 - 1200 of 4,430 for final (0.07 seconds)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelProblem.java
public class DefaultModelProblem implements ModelProblem { private final String source; private final int lineNumber; private final int columnNumber; private final String modelId; private final String message; private final Exception exception; private final Severity severity; private final Version version; /**Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 5.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/MarkdownRenderer.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Jan 12 10:32:40 GMT 2026 - 5.3K bytes - Click Count (0) -
src/main/java/jcifs/smb/NtlmAuthenticator.java
* @param sae the authentication exception that was thrown * @return credentials returned by prompt */ public static NtlmPasswordAuthenticator requestNtlmPasswordAuthentication(final NtlmAuthenticator a, final String url, final SmbAuthException sae) { if (a == null) { return null; } synchronized (a) { a.url = url; a.sae = sae;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 4.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/search/ScrollSearchApiTests.java
public class ScrollSearchApiTests extends CrawlTestBase { private static final Logger logger = LogManager.getLogger(ScrollSearchApiTests.class); private static final String NAME_PREFIX = "scrollSearchApiTest_"; private static final String DEFAULT_TESTDATA_PATH = "/tmp/fess-testdata"; private static final String CRAWL_LABEL = NAME_PREFIX + "_label"; private static String fileConfigId;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 03:03:44 GMT 2025 - 7.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/AccessTokenHelper.java
* @param request The request. * @return The access token. */ public String getAccessTokenFromRequest(final HttpServletRequest request) { final String token = request.getHeader("Authorization"); if (token != null) { final String[] values = token.trim().split(" "); if (values.length == 2 && BEARER.equals(values[0])) { return values[1]; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.6K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java
*/ public abstract class AndXServerMessageBlock extends ServerMessageBlock { private static final Logger log = LoggerFactory.getLogger(AndXServerMessageBlock.class); private static final int ANDX_COMMAND_OFFSET = 1; private static final int ANDX_RESERVED_OFFSET = 2; private static final int ANDX_OFFSET_OFFSET = 3; private byte andxCommand = (byte) 0xFF; private int andxOffset = 0;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 15.8K bytes - Click Count (0) -
src/main/java/jcifs/internal/dtyp/SecurityDescriptor.java
*/ public SecurityDescriptor(final byte[] buffer, final int bufferIndex, final int len) throws IOException { this.decode(buffer, bufferIndex, len); } /** * Gets the type flags of this security descriptor. * * @return the type flags indicating security descriptor control flags */ public final int getType() { return this.type; } /**Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 5.4K bytes - Click Count (0) -
android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixTrie.java
* </ul> */ @GwtCompatible public final class PublicSuffixTrie { /** Each node in the trie takes up 3 characters. */ static final int NODE_SIZE = 3; static final int CHILDREN_MASK = 0x7FF; static final int EXCLUSION_MASK = 0x1; static final int TYPE_MASK = 0x3; static final int EXCLUSION_SHIFT = 11; static final int WILDCARD_SHIFT = 12; static final int EXACT_SHIFT = 14; final CharSequence trieData;Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 03 21:21:59 GMT 2026 - 9.1K bytes - Click Count (0) -
src/main/java/jcifs/smb1/util/transport/Transport.java
* @param len the number of bytes to read * @return the number of bytes actually read * @throws IOException if an I/O error occurs */ public static int readn(final InputStream in, final byte[] b, final int off, final int len) throws IOException { int i = 0, n = -5; while (i < len) { n = in.read(b, off + i, len - i); if (n <= 0) { break;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 11.3K bytes - Click Count (0) -
android/guava/src/com/google/common/hash/Funnels.java
} private static final class SerializedForm implements Serializable { private final String charsetCanonicalName; SerializedForm(Charset charset) { this.charsetCanonicalName = charset.name(); } private Object readResolve() { return stringFunnel(Charset.forName(charsetCanonicalName)); } private static final long serialVersionUID = 0; } }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jul 17 15:26:41 GMT 2025 - 7.2K bytes - Click Count (0)