- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 877 for Beta (0.02 sec)
-
android/guava/src/com/google/common/graph/GraphsBridgeMethods.java
package com.google.common.graph; import com.google.common.annotations.Beta; import java.util.Set; /** * Supertype for {@link Graphs}, containing the old signatures of methods whose signatures we've * changed. This provides binary compatibility for users who compiled against the old signatures. */ @Beta @ElementTypesAreNonnullByDefault abstract class GraphsBridgeMethods { @SuppressWarnings("PreferredInterfaceType")
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Feb 14 19:31:40 UTC 2024 - 707 bytes - Viewed (0) -
guava/src/com/google/common/graph/AbstractGraph.java
package com.google.common.graph; import com.google.common.annotations.Beta; import javax.annotation.CheckForNull; /** * This class provides a skeletal implementation of {@link Graph}. It is recommended to extend this * class rather than implement {@link Graph} directly. * * @author James Sexton * @param <N> Node parameter type * @since 20.0 */ @Beta @ElementTypesAreNonnullByDefault
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Apr 26 17:43:39 UTC 2021 - 1.8K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.18.md
- [Changelog since v1.17.0](#changelog-since-v1170) - [What’s New (Major Themes)](#whats-new-major-themes) - [Kubernetes Topology Manager Moves to Beta - Align Up!](#kubernetes-topology-manager-moves-to-beta---align-up) - [Serverside Apply - Beta 2](#serverside-apply---beta-2) - [Extending Ingress with and replacing a deprecated annotation with IngressClass](#extending-ingress-with-and-replacing-a-deprecated-annotation-with-ingressclass)
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Wed Jun 16 17:18:28 UTC 2021 - 373.2K bytes - Viewed (0) -
api/maven-api-xml/pom.xml
<artifactId>maven-api</artifactId> <version>4.0.0-beta-6-SNAPSHOT</version> </parent> <artifactId>maven-api-xml</artifactId> <name>Maven 4 API :: XML</name> <description>Maven 4 API - Immutable XML.</description> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-api-meta</artifactId> </dependency> </dependencies>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Oct 19 18:11:20 UTC 2024 - 1.5K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.3.md
- [v1.3.0-beta.3](#v130-beta3) - [Downloads](#downloads-10) - [Changelog since v1.3.0-beta.2](#changelog-since-v130-beta2) - [Action Required](#action-required) - [Other notable changes](#other-notable-changes-10) - [v1.3.0-beta.2](#v130-beta2) - [Downloads](#downloads-11) - [Changes since v1.3.0-beta.1](#changes-since-v130-beta1)
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu Dec 24 02:28:26 UTC 2020 - 84K bytes - Viewed (0) -
android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixType.java
import com.google.common.annotations.Beta; import com.google.common.annotations.GwtCompatible; /** * <b>Do not use this class directly. For access to public-suffix information, use {@link * com.google.common.net.InternetDomainName}.</b> * * <p>Specifies the type of a top-level domain definition. * * @since 23.3 */ @Beta @GwtCompatible public enum PublicSuffixType {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Dec 16 19:54:45 UTC 2020 - 2K bytes - Viewed (0) -
api/maven-api-spi/pom.xml
<artifactId>maven-api</artifactId> <version>4.0.0-beta-6-SNAPSHOT</version> </parent> <artifactId>maven-api-spi</artifactId> <name>Maven 4 API :: SPI</name> <description>Maven 4 API - Maven SPI.</description> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-api-meta</artifactId> </dependency> <dependency>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Oct 19 18:11:20 UTC 2024 - 1.8K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/Funnel.java
* or implied. See the License for the specific language governing permissions and limitations under * the License. */ package com.google.common.hash; import com.google.common.annotations.Beta; import com.google.errorprone.annotations.DoNotMock; import java.io.Serializable; import org.checkerframework.checker.nullness.qual.Nullable; /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Apr 20 18:43:59 UTC 2021 - 2.2K bytes - Viewed (0) -
compat/maven-compat/src/test/resources/pom.xml
<dependency> <groupId>commons-cli</groupId> <artifactId>commons-cli</artifactId> <version>1.0-beta-2</version> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>plexus</groupId> <artifactId>plexus-i18n</artifactId> <version>1.0-beta-2-SNAPSHOT</version> <type>jar</type> <scope>compile</scope> </dependency> <dependency>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.9K bytes - Viewed (0) -
cmd/bucket-replication-metrics.go
} increment := float64(bytesSinceLastWindow) / duration.Seconds() m.expMovingAvg = exponentialMovingAverage(beta, m.expMovingAvg, increment) } // exponentialMovingAverage calculates the exponential moving average func exponentialMovingAverage(beta, previousAvg, incrementAvg float64) float64 { return (1-beta)*incrementAvg + beta*previousAvg }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 15 12:04:40 UTC 2024 - 14.2K bytes - Viewed (0)