- Sort Score
- Result 10 results
- Languages All
Results 781 - 790 of 3,753 for private (0.06 sec)
-
android/guava-tests/benchmark/com/google/common/math/LongMathBenchmark.java
*/ public class LongMathBenchmark { private static final int[] exponents = new int[ARRAY_SIZE]; private static final int[] factorialArguments = new int[ARRAY_SIZE]; private static final int[][] binomialArguments = new int[ARRAY_SIZE][2]; private static final long[] positive = new long[ARRAY_SIZE]; private static final long[] nonnegative = new long[ARRAY_SIZE]; private static final long[] longs = new long[ARRAY_SIZE];
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 3.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/TransferListenerAdapter.java
/** * TransferListenerAdapter */ @Deprecated public class TransferListenerAdapter implements TransferListener { private final ArtifactTransferListener listener; private final Map<Resource, ArtifactTransferResource> artifacts; private final Map<Resource, Long> transfers; public static TransferListener newAdapter(ArtifactTransferListener listener) { if (listener == null) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/RobotsTxt.java
return sitemapList.toArray(new String[sitemapList.size()]); } public static class Directive { private final String userAgent; private int crawlDelay; private final List<String> allowedPaths = new ArrayList<>(); private final List<String> disallowedPaths = new ArrayList<>(); public Directive(final String userAgent) {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 4.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/eventbus/SubscriberTest.java
/** * Tests for {@link Subscriber}. * * @author Cliff Biffle * @author Colin Decker */ public class SubscriberTest extends TestCase { private static final Object FIXTURE_ARGUMENT = new Object(); private EventBus bus; private boolean methodCalled; private @Nullable Object methodArgument; @Override protected void setUp() throws Exception { bus = new EventBus(); methodCalled = false;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Sep 06 17:04:31 UTC 2023 - 4.8K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java
/** * Deeply opinionated file filter that adds elements to the release notes HTML page. */ public class ReleaseNotesTransformer extends FilterReader { private File baseCss; private File releaseNotesCss; private File releaseNotesJavascript; private Set<File> jqueryFiles; public ReleaseNotesTransformer(Reader original) { super(original); this.in = new Reader() {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Oct 03 05:02:20 UTC 2024 - 9.9K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/VersionNotFoundException.java
/** * Thrown if a dependency has an invalid version. * */ @Deprecated public class VersionNotFoundException extends Exception { private Dependency dependency; private String projectId; private File pomFile; private InvalidVersionSpecificationException cause; public VersionNotFoundException(
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultArtifactResolver.java
} } private class ResolveTask implements Runnable { private final ClassLoader classLoader; private final CountDownLatch latch; private final Artifact artifact; private final RepositorySystemSession session; private final List<ArtifactRepository> remoteRepositories; private final ArtifactResolutionResult result;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 24.8K bytes - Viewed (0) -
src/main/java/jcifs/pac/kerberos/KerberosApRequest.java
@SuppressWarnings ( "javadoc" ) public class KerberosApRequest { private byte apOptions; private KerberosTicket ticket; public KerberosApRequest ( byte[] token, KerberosKey[] keys ) throws PACDecodingException { this(parseSequence(token), keys); } private static ASN1Sequence parseSequence(byte[] token) throws PACDecodingException { if ( token.length <= 0 )
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Oct 02 12:02:06 UTC 2023 - 3.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmAuthenticator.java
* and NtlmAuthenticator</a> for complete details. */ public abstract class NtlmAuthenticator { private static NtlmAuthenticator auth; private String url; private SmbAuthException sae; /** * Set the default <tt>NtlmAuthenticator</tt>. Once the default authenticator is set it cannot be changed. Calling
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtTransaction.java
// relative to headerStart private static final int NTT_PRIMARY_SETUP_OFFSET = 71; private static final int NTT_SECONDARY_PARAMETER_OFFSET = 51; /** * */ public static final int NT_TRANSACT_QUERY_SECURITY_DESC = 0x6; /** * */ public static final int NT_TRANSACT_NOTIFY_CHANGE = 0x4; private final int function;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun May 17 13:43:42 UTC 2020 - 3.9K bytes - Viewed (0)