- Sort Score
- Result 10 results
- Languages All
Results 571 - 580 of 4,376 for PRIVATE (0.08 sec)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/plugin/DefaultReportingConverter.java
} } } return null; } private boolean isSitePlugin(Plugin plugin) { return "maven-site-plugin".equals(plugin.getArtifactId()) && "org.apache.maven.plugins".equals(plugin.getGroupId()); } private Xpp3Dom convert(ReportPlugin plugin) { Xpp3Dom dom = new Xpp3Dom("reportPlugin", plugin.getLocation(""));Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 10 07:09:12 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/info/Smb2QueryInfoResponse.java
/** * Protocol overhead size for SMB2 query info response */ public static final int OVERHEAD = Smb2Constants.SMB2_HEADER_LENGTH + 8; private final byte expectInfoType; private final byte expectInfoClass; private Decodable info; /** * Constructs a SMB2 query info response with the specified configuration and expected information types * * @param configRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/KeyMatchPager.java
/** The total number of records. */ private int allRecordCount; /** The total number of pages. */ private int allPageCount; /** True if a previous page exists. */ private boolean existPrePage; /** True if a next page exists. */ private boolean existNextPage; /** The list of page numbers. */ private List<Integer> pageNumberList; /** The size of a page. */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/FutureCallbackTest.java
} private class CountingSameThreadExecutor implements Executor { int runCount = 0; @Override public void execute(Runnable command) { command.run(); runCount++; } } private final class MockCallback implements FutureCallback<String> { @Nullable private String value = null; @Nullable private Throwable failure = null;Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Jul 14 14:44:08 UTC 2025 - 6.7K bytes - Viewed (0) -
compat/maven-artifact/src/test/java/org/apache/maven/artifact/DefaultArtifactTest.java
class DefaultArtifactTest { private DefaultArtifact artifact; private DefaultArtifact snapshotArtifact; private String groupId = "groupid", artifactId = "artifactId", version = "1.0", scope = "artifactScope", type = "type", classifier = "classifier"; private String snapshotSpecVersion = "1.0-SNAPSHOT";Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.4K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelProblem.java
@Deprecated(since = "4.0.0") 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; /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 5.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/converter/ReadingConverterTest.java
} /** * Test implementation of ReadingConverter for testing purposes */ private static class TestReadingConverter implements ReadingConverter { private boolean initialized = false; private int initCount = 0; private boolean japaneseMode = false; public void setJapaneseMode(boolean japaneseMode) { this.japaneseMode = japaneseMode;Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 13.5K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/RobotsTxtTest.java
Directive directive = new Directive("googlebot"); directive.addDisallow("/private/"); robotsTxt.addDirective(directive); // Should match case-insensitively assertFalse(robotsTxt.allows("/private/", "GoogleBot")); assertFalse(robotsTxt.allows("/private/", "GOOGLEBOT")); assertFalse(robotsTxt.allows("/private/", "googlebot")); }
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:29:22 UTC 2025 - 14.4K bytes - Viewed (0) -
internal/config/certs_test.go
t.Cleanup(func() { os.Unsetenv(EnvCertPassword) }) for i, testCase := range loadX509KeyPairTests { privateKey, err := createTempFile(t, "private.key", testCase.privateKey) if err != nil { t.Fatalf("Test %d: failed to create tmp private key file: %v", i, err) } certificate, err := createTempFile(t, "public.crt", testCase.certificate) if err != nil { os.Remove(privateKey)
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Tue Feb 18 16:25:55 UTC 2025 - 21.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/persistent/PersistentHandleManager.java
*/ public class PersistentHandleManager { private static final Logger log = LoggerFactory.getLogger(PersistentHandleManager.class); private final ConcurrentHashMap<String, HandleInfo> handles; private final ConcurrentHashMap<HandleGuid, HandleInfo> guidToHandle; private final Path stateDirectory; private final ScheduledExecutorService scheduler; private final CIFSContext context;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 13K bytes - Viewed (0)