- Sort Score
- Result 10 results
- Languages All
Results 391 - 400 of 1,584 for complements (0.07 sec)
-
src/main/java/jcifs/util/ByteEncodable.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.util; import jcifs.Encodable; /** * @author mbechler * */ public class ByteEncodable implements Encodable { private byte[] bytes; private int off; private int len; /** * @param b * @param off * @param len */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.6K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableEntry.java
* common.collect} as a superclass. */ @GwtCompatible(serializable = true) @ElementTypesAreNonnullByDefault class ImmutableEntry<K extends @Nullable Object, V extends @Nullable Object> extends AbstractMapEntry<K, V> implements Serializable { @ParametricNullness final K key; @ParametricNullness final V value; ImmutableEntry(@ParametricNullness K key, @ParametricNullness V value) { this.key = key; this.value = value; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Jan 19 21:29:44 UTC 2023 - 1.7K bytes - Viewed (0) -
guava/src/com/google/common/collect/TransformedIterator.java
* * @author Louis Wasserman */ @GwtCompatible @ElementTypesAreNonnullByDefault abstract class TransformedIterator<F extends @Nullable Object, T extends @Nullable Object> implements Iterator<T> { final Iterator<? extends F> backingIterator; TransformedIterator(Iterator<? extends F> backingIterator) { this.backingIterator = checkNotNull(backingIterator); } @ParametricNullness
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Jul 09 17:31:04 UTC 2021 - 1.7K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/FileSettingsSource.java
/** * Wraps an ordinary {@link File} as a settings source. * * * @deprecated instead use {@link FileSource} */ @Deprecated public class FileSettingsSource extends FileSource implements SettingsSource { /** * Creates a new settings source backed by the specified file. * * @param settingsFile The settings file, must not be {@code null}. */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/UrlSettingsSource.java
/** * Wraps an ordinary {@link URL} as a settings source. * * * @deprecated instead use {@link UrlSource} */ @Deprecated public class UrlSettingsSource extends UrlSource implements SettingsSource { /** * Creates a new model source backed by the specified URL. * * @param settingsUrl The settings URL, must not be {@code null}. */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
compat/maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/building/DefaultToolchainsBuildingRequest.java
* * @since 3.3.0 * @deprecated since 4.0.0, use {@link org.apache.maven.api.services.ToolchainsBuilder} instead */ @Deprecated(since = "4.0.0") public class DefaultToolchainsBuildingRequest implements ToolchainsBuildingRequest { private Source globalToolchainsSource; private Source userToolchainsSource; @Override public Source getGlobalToolchainsSource() { return globalToolchainsSource;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java
import org.apache.maven.model.v4.MavenModelVersion; import org.apache.maven.project.MavenProject; import org.eclipse.aether.RepositorySystemSession; @Named class DefaultConsumerPomBuilder implements ConsumerPomBuilder { private static final String BOM_PACKAGING = "bom"; public static final String POM_PACKAGING = "pom"; private final LifecycleBindingsInjector lifecycleBindingsInjector; @Inject
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 11K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AbstractScheduledService.java
* * @author Luke Sandberg * @since 11.0 */ @GwtIncompatible @J2ktIncompatible @ElementTypesAreNonnullByDefault public abstract class AbstractScheduledService implements Service { private static final LazyLogger logger = new LazyLogger(AbstractScheduledService.class); /** * A scheduler defines the policy for how the {@link AbstractScheduledService} should run its * task.
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 16:22:21 UTC 2024 - 27.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/CloserTest.java
} // TODO(cpovirk): Just use addSuppressed+getSuppressed now that we can rely on it. /** Suppressor that records suppressions. */ private static class TestSuppressor implements Closer.Suppressor { private final List<Suppression> suppressions = Lists.newArrayList(); @Override public void suppress(Closeable closeable, Throwable thrown, Throwable suppressed) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue May 07 15:26:58 UTC 2024 - 11.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/SequentialExecutorTest.java
import junit.framework.TestCase; /** * Tests {@link SequentialExecutor}. * * @author JJ Furman */ public class SequentialExecutorTest extends TestCase { private static class FakeExecutor implements Executor { Queue<Runnable> tasks = Queues.newArrayDeque(); @Override public void execute(Runnable command) { tasks.add(command); } boolean hasNext() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 22:10:29 UTC 2024 - 11.4K bytes - Viewed (0)