- Sort Score
- Result 10 results
- Languages All
Results 1921 - 1930 of 2,289 for projectId (0.09 sec)
-
android/guava-tests/test/com/google/common/reflect/InvokableTest.java
} @Retention(RetentionPolicy.RUNTIME) private @interface Tested {} private abstract static class A { @Tested private boolean privateField; @Tested int packagePrivateField; @Tested protected int protectedField; @Tested public String publicField; @Tested private static Iterable<String> staticField; @Tested private final Object finalField; private volatile char volatileField;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 13:00:28 UTC 2024 - 30.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/MoreFilesTest.java
private static Path root() { return FS.getRootDirectories().iterator().next(); } private Path tempDir; @Override protected void setUp() throws Exception { tempDir = Files.createTempDirectory("MoreFilesTest"); } @Override protected void tearDown() throws Exception { if (tempDir != null) { // delete tempDir and its contents Files.walkFileTree( tempDir,
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 02:42:09 UTC 2024 - 27.4K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableRangeSet.java
return new AbstractIterator<C>() { final Iterator<Range<C>> rangeItr = ranges.iterator(); Iterator<C> elemItr = emptyIterator(); @Override @CheckForNull protected C computeNext() { while (!elemItr.hasNext()) { if (rangeItr.hasNext()) { elemItr = ContiguousSet.create(rangeItr.next(), domain).iterator(); } else {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 27K bytes - Viewed (0) -
guava-tests/test/com/google/common/reflect/InvokableTest.java
} @Retention(RetentionPolicy.RUNTIME) private @interface Tested {} private abstract static class A { @Tested private boolean privateField; @Tested int packagePrivateField; @Tested protected int protectedField; @Tested public String publicField; @Tested private static Iterable<String> staticField; @Tested private final Object finalField; private volatile char volatileField;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 13:00:28 UTC 2024 - 30.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/cbean/cq/bs/BsRoleCQ.java
import org.opensearch.index.query.functionscore.FunctionScoreQueryBuilder.FilterFunctionBuilder; /** * @author ESFlute (using FreeGen) */ public abstract class BsRoleCQ extends EsAbstractConditionQuery { protected static final Class<?> suppressUnusedImportLocalDateTime = LocalDateTime.class; // ===================================================================================
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 13.9K bytes - Viewed (0) -
guava/src/com/google/common/collect/TreeTraverser.java
PostOrderIterator(T root) { this.stack = new ArrayDeque<>(); stack.addLast(expand(root)); } @Override @CheckForNull protected T computeNext() { while (!stack.isEmpty()) { PostOrderNode<T> top = stack.getLast(); if (top.childIterator.hasNext()) { T child = top.childIterator.next();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 8.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/SourceSinkFactories.java
private final ThreadLocal<File> fileThreadLocal = new ThreadLocal<>(); protected File createFile() throws IOException { File file = File.createTempFile("SinkSourceFile", "txt"); fileThreadLocal.set(file); return file; } protected File getFile() { return fileThreadLocal.get(); } public final void tearDown() throws IOException {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 12.6K bytes - Viewed (0) -
src/test/java/jcifs/tests/SessionTest.java
checkConnection(f); } catch ( SmbAuthException e ) { ignoreAuthFailure(e); } } protected void ignoreAuthFailure ( SmbAuthException e ) throws SmbAuthException { if ( e.getCause() != null && e.getCause() instanceof SmbException
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 15.8K bytes - Viewed (0) -
src/main/java/jcifs/context/CIFSContextWrapper.java
return new SmbNamedPipe(url, pipeType, this); } catch ( MalformedURLException e ) { throw new CIFSException("Invalid URL " + url, e); } } protected CIFSContext wrap ( CIFSContext newContext ) { return newContext; } @Override public Configuration getConfig () { return this.delegate.getConfig(); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.4K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/VersionsMetadata.java
versioning.setLatest(artifact.getBaseVersion()); } metadata.setVersioning(versioning); return metadata; } @Override protected void merge(Metadata recessive) { Versioning versioning = metadata.getVersioning(); versioning.setLastUpdatedTimestamp(timestamp); if (recessive.getVersioning() != null) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.2K bytes - Viewed (0)