Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of about 10,000 for Of (0.28 sec)

  1. android/guava-tests/test/com/google/common/math/StatsAccumulatorTest.java

            .of(LONG_MANY_VALUES_MEAN);
      }
    
      public void testSum() {
        assertThat(emptyAccumulator.sum()).isWithin(0.0).of(0.0);
        assertThat(emptyAccumulatorByAddAllEmptyIterable.sum()).isWithin(0.0).of(0.0);
        assertThat(emptyAccumulatorByAddAllEmptyStats.sum()).isWithin(0.0).of(0.0);
        assertThat(oneValueAccumulator.sum()).isWithin(ALLOWED_ERROR).of(ONE_VALUE);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 34K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/apps/v1beta1/generated.proto

    }
    
    // ScaleSpec describes the attributes of a scale subresource
    message ScaleSpec {
      // replicas is the number of observed instances of the scaled object.
      // +optional
      optional int32 replicas = 1;
    }
    
    // ScaleStatus represents the current status of a scale subresource.
    message ScaleStatus {
      // replias is the actual number of observed instances of the scaled object.
      optional int32 replicas = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildSrcProblemReportingIntegrationTest.groovy

                withProblem("Task `:broken` of type `org.gradle.api.DefaultTask`: cannot deserialize object of type 'org.gradle.api.Project' as these are not supported with the configuration cache.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/math/PairedStatsAccumulatorTest.java

        assertThat(horizontalValuesAccumulatorByAddAllPartitionedPairedStats.populationCovariance())
            .isWithin(ALLOWED_ERROR)
            .of(0.0);
        assertThat(verticalValuesAccumulator.populationCovariance()).isWithin(ALLOWED_ERROR).of(0.0);
        assertThat(verticalValuesAccumulatorByAddAllPartitionedPairedStats.populationCovariance())
            .isWithin(ALLOWED_ERROR)
            .of(0.0);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ForwardingMap.java

       * A sensible definition of {@link #hashCode} in terms of the {@code iterator} method of {@link
       * #entrySet}. If you override {@link #entrySet}, you may wish to override {@link #hashCode} to
       * forward to this implementation.
       *
       * @since 7.0
       */
      protected int standardHashCode() {
        return Sets.hashCodeImpl(entrySet());
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  6. src/runtime/mstats.go

    	// During program execution we only count number of frees and amount of freed memory.
    	// Current number of alive objects in the heap and amount of alive heap memory
    	// are calculated by scanning all spans.
    	// Total number of mallocs is calculated as number of frees plus number of alive objects.
    	// Similarly, total amount of allocated memory is calculated as amount of freed memory
    	// plus amount of alive heap memory.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  7. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalModificationService.kt

    public abstract class KotlinGlobalModificationService : KotlinPlatformComponent {
        /**
         * Publishes an event of global modification of the module state of all [KtModule]s.
         */
        @TestOnly
        public abstract fun publishGlobalModuleStateModification()
    
        /**
         * Publishes an event of global modification of the module state of all source [KtModule]s.
         */
        @TestOnly
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. docs/minio-limits.md

    | Maximum number of servers per cluster                           | no-limit      |
    | Minimum number of servers                                       | 02            |
    | Minimum number of drives per server when server count is 1      | 02            |
    | Minimum number of drives per server when server count is 2 or 3 | 01            |
    | Minimum number of drives per server when server count is 4      | 01            |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apidiscovery/v2/types.go

    	// The command line tool kubectl, for example, allows use of the singular resource name in place of plurals.
    	// The singular form of a resource should always be an optional element - when in doubt use the canonical resource name.
    	SingularResource string `json:"singularResource" protobuf:"bytes,4,opt,name=singularResource"`
    	// verbs is a list of supported API operation types (this includes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. pkg/scheduler/apis/config/types.go

    	// Reserve is a list of plugins invoked when reserving/unreserving resources
    	// after a node is assigned to run the pod.
    	Reserve PluginSet
    
    	// Permit is a list of plugins that control binding of a Pod. These plugins can prevent or delay binding of a Pod.
    	Permit PluginSet
    
    	// PreBind is a list of plugins that should be invoked before a pod is bound.
    	PreBind PluginSet
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top