- Sort Score
- Result 10 results
- Languages All
Results 251 - 260 of 335 for isSnapshot (0.14 sec)
-
android/guava-tests/test/com/google/common/math/StatsAccumulatorTest.java
accumulator.add(ONE_VALUE); for (int power = 1; power < Long.SIZE - 1; power++) { accumulator.addAll(accumulator.snapshot()); } // Should overflow without throwing. accumulator.addAll(accumulator.snapshot()); assertThat(accumulator.count()).isLessThan(0L); } public void testMean() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 23 16:45:30 UTC 2024 - 36.8K bytes - Viewed (0) -
guava-tests/test/com/google/common/math/StatsTest.java
// For datasets of many double values created from an accumulator snapshot, we test many // combinations of finite and non-finite values: for (ManyValues values : ALL_MANY_VALUES) { StatsAccumulator accumulator = new StatsAccumulator(); accumulator.addAll(values.asIterable()); double min = accumulator.snapshot().min(); if (values.hasAnyNaN()) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 23 16:45:30 UTC 2024 - 33.3K bytes - Viewed (0) -
cni/pkg/nodeagent/server.go
log.Info("CNI ambient server kubeclient started") pods := s.handlers.GetActiveAmbientPodSnapshot() err := s.dataplane.ConstructInitialSnapshot(pods) if err != nil { log.Warnf("failed to construct initial snapshot: %v", err) } log.Info("CNI ambient server marking ready") s.Ready() s.dataplane.Start(s.ctx) s.handlers.Start() } func (s *Server) Stop() { s.cniServerStopFunc() s.dataplane.Stop()
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Sep 25 20:54:34 UTC 2024 - 13.4K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 17.6K bytes - Viewed (0) -
pom.xml
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Sep 26 04:40:32 UTC 2024 - 9.3K bytes - Viewed (0) -
guava/pom.xml
<!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.google.guava</groupId> <artifactId>guava-parent</artifactId> <version>HEAD-jre-SNAPSHOT</version> </parent> <artifactId>guava</artifactId> <packaging>bundle</packaging> <name>Guava: Google Core Libraries for Java</name> <url>https://github.com/google/guava</url> <description>
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jul 24 18:53:31 UTC 2024 - 9.1K bytes - Viewed (0) -
compat/maven-model/pom.xml
<modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache.maven</groupId> <artifactId>maven</artifactId> <version>4.0.0-beta-6-SNAPSHOT</version> <relativePath>../../</relativePath> </parent> <artifactId>maven-model</artifactId> <name>Maven Model</name> <description>Model for Maven POM (Project Object Model)</description>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/systeminfo/AdminSysteminfoAction.java
} } return itemList; } private static boolean isBugReportTarget(final Object key) { if ("snapshot.path".equals(key) || "label.value".equals(key)) { return false; } return true; } protected static Map<String, String> createPropItem(final String key) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 7.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/DefaultArtifactRepository.java
* @param id the unique identifier of the repository * @param url the URL of the repository * @param layout the layout of the repository * @param uniqueVersion whether to assign each snapshot a unique version */ public DefaultArtifactRepository(String id, String url, ArtifactRepositoryLayout layout, boolean uniqueVersion) { super(id, url); this.layout = layout; } /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.3K bytes - Viewed (0) -
README.md
- Java 17+ - Maven 3.6.3 or later - Run Maven, specifying a location into which the completed Maven distro should be installed: ``` mvn -DdistributionTargetDir="$HOME/app/maven/apache-maven-4.0.x-SNAPSHOT" clean package ``` [home]: https://maven.apache.org/ [jira]: https://issues.apache.org/jira/projects/MNG/ [license]: https://www.apache.org/licenses/LICENSE-2.0
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sun Aug 18 23:17:25 UTC 2024 - 4.4K bytes - Viewed (0)