- Sort Score
- Result 10 results
- Languages All
Results 491 - 500 of 1,747 for synced (0.05 sec)
-
guava/src/com/google/common/math/Stats.java
* * <p>If you have a {@code Stream<Double>} rather than a {@code DoubleStream}, you should collect * the values using {@link #toStats()} instead. * * @param values a series of values * @since 28.2 (but only since 33.4.0 in the Android flavor) */ public static Stats of(DoubleStream values) { return values .collect(StatsAccumulator::new, StatsAccumulator::add, StatsAccumulator::addAll)
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 23 16:45:30 UTC 2024 - 24.9K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/crypto/DefaultSettingsDecryptionRequest.java
import org.apache.maven.settings.Server; import org.apache.maven.settings.Settings; /** * Collects parameters that control the decryption of settings. * * @deprecated since 4.0.0 */ @Deprecated(since = "4.0.0") public class DefaultSettingsDecryptionRequest implements SettingsDecryptionRequest { private List<Server> servers; private List<Proxy> proxies; /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.9K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/io/DefaultSettingsWriter.java
import org.apache.maven.settings.v4.SettingsStaxWriter; /** * Handles serialization of settings into the default textual format. * * @deprecated since 4.0.0, use {@link SettingsStaxWriter} instead */ @Named @Singleton @Deprecated(since = "4.0.0") public class DefaultSettingsWriter implements SettingsWriter { @Override
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingObject.java
* * <p>The {@code toString} method is forwarded to the delegate. Although this class does not * implement {@link Serializable}, a serializable subclass may be created since this class has a * parameter-less constructor. * * @author Mike Bostock * @since 2.0 */ @GwtCompatible @ElementTypesAreNonnullByDefault public abstract class ForwardingObject { /** Constructor for use by subclasses. */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 29 19:42:21 UTC 2021 - 3K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/VersionsMetadataGenerator.java
import org.eclipse.aether.util.ConfigUtils; /** * Maven GA level metadata generator. * * Version metadata contains list of existing baseVersions within this GA. * * @deprecated since 4.0.0, use {@code maven-api-impl} jar instead */ @Deprecated(since = "4.0.0") class VersionsMetadataGenerator implements MetadataGenerator { private final Map<Object, VersionsMetadata> versions;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/io/SettingsParseException.java
import java.io.IOException; /** * Signals a failure to parse the settings due to invalid syntax (e.g. non well formed XML or unknown elements). * * @deprecated since 4.0.0, use {@link org.apache.maven.api.services.xml.SettingsXmlFactory} instead */ @Deprecated(since = "4.0.0") public class SettingsParseException extends IOException { /** * The one-based index of the line containing the error. */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.1K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/io/SettingsWriter.java
import java.util.Map; import org.apache.maven.settings.Settings; /** * Handles serialization of settings into some kind of textual format like XML. * * @deprecated since 4.0.0, use {@link org.apache.maven.api.services.xml.SettingsXmlFactory} instead */ @Deprecated(since = "4.0.0") public interface SettingsWriter { /** * Writes the supplied settings to the specified file. Any non-existing parent directories of the output file will
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3K bytes - Viewed (0) -
guava/src/com/google/common/collect/Lists.java
* "https://github.com/google/guava/wiki/CollectionUtilitiesExplained#lists">{@code Lists}</a>. * * @author Kevin Bourrillion * @author Mike Bostock * @author Louis Wasserman * @since 2.0 */ @GwtCompatible(emulated = true) @ElementTypesAreNonnullByDefault public final class Lists { private Lists() {} // ArrayList /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 43.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Multimaps.java
* * <p>To collect to an {@link ImmutableMultimap}, use either {@link * ImmutableSetMultimap#toImmutableSetMultimap} or {@link * ImmutableListMultimap#toImmutableListMultimap}. * * @since 33.2.0 (available since 21.0 in guava-jre) */ @SuppressWarnings("Java7ApiChecker") @IgnoreJRERequirement // Users will use this only if they're already using streams. public static < T extends @Nullable Object,
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 16 21:21:17 UTC 2024 - 86.3K bytes - Viewed (0) -
cmd/iam.go
refreshStart := time.Now() if err := sys.Load(ctx, false); err != nil { iamLogIf(ctx, fmt.Errorf("Failure in periodic refresh for IAM (duration: %s): %v", time.Since(refreshStart), err), logger.WarningKind) } else { took := time.Since(refreshStart).Seconds() if took > maxDurationSecondsForLog { // Log if we took a lot of time to load. logger.Info("IAM refresh took (duration: %.2fs)", took) }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 29 16:01:48 UTC 2024 - 74.6K bytes - Viewed (0)