Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 803 for dilation (0.21 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/measure/Duration.java

    import java.math.BigDecimal;
    
    public class Duration {
        public static final Units<Duration> MILLI_SECONDS = Units.base(Duration.class, "ms");
        public static final Units<Duration> SECONDS = MILLI_SECONDS.times(1000, "s");
        public static final Units<Duration> MINUTES = SECONDS.times(60, "m");
        public static final Units<Duration> HOURS = MINUTES.times(60, "h");
    
        public static Amount<Duration> millis(long millis) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/duration/duration.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package duration
    
    import (
    	"fmt"
    	"time"
    )
    
    // ShortHumanDuration returns a succinct representation of the provided duration
    // with limited precision for consumption by humans.
    func ShortHumanDuration(d time.Duration) string {
    	// Allow deviation no more than 2 seconds(excluded) to tolerate machine time
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 29 09:44:02 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. CITATION.cff

    # This CITATION.cff file was generated with cffinit.
    # Visit https://bit.ly/cffinit to generate yours today!
    
    cff-version: 1.2.0
    title: FastAPI
    message: >-
      If you use this software, please cite it using the
      metadata from this file.
    type: software
    authors:
      - given-names: Sebastián
        family-names: Ramírez
        email: ******@****.***
    identifiers:
    repository-code: 'https://github.com/tiangolo/fastapi'
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Oct 22 10:03:38 UTC 2023
    - 615 bytes
    - Viewed (0)
  4. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/concurrent/Duration.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.test.fixtures.concurrent
    
    class Duration {
        private final long nanos
    
        Duration(long nanos) {
            this.nanos = nanos
        }
    
        long getMillis() {
            return nanos / 1000000
        }
    
        @Override
        String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 909 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/examples/mnist/ops_defs.py

              grad,
              strides=strides,
              padding=padding,
              dilations=dilations,
              data_format='NHWC'),
          tf.compat.v1.nn.conv2d_backprop_filter(
              op.inputs[0],
              shape_1,
              grad,
              strides=strides,
              padding=padding,
              dilations=dilations,
              data_format='NHWC'), bias_grad
      ]
    
    
    @Composite(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 31 20:23:51 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  6. api/api-rules/codegen_violation_exceptions.list

    API rule violation: names_match,k8s.io/apimachinery/pkg/apis/meta/v1,APIResourceList,APIResources
    API rule violation: names_match,k8s.io/apimachinery/pkg/apis/meta/v1,Duration,Duration
    API rule violation: names_match,k8s.io/apimachinery/pkg/apis/meta/v1,InternalEvent,Object
    API rule violation: names_match,k8s.io/apimachinery/pkg/apis/meta/v1,InternalEvent,Type
    API rule violation: names_match,k8s.io/apimachinery/pkg/apis/meta/v1,MicroTime,Time
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inject/format-duration.yaml.injected

    John Howard <******@****.***> 1709052916 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. api/api-rules/apiextensions_violation_exceptions.list

    API rule violation: names_match,k8s.io/apimachinery/pkg/apis/meta/v1,InternalEvent,Object
    API rule violation: names_match,k8s.io/apimachinery/pkg/apis/meta/v1,InternalEvent,Type
    API rule violation: names_match,k8s.io/apimachinery/pkg/apis/meta/v1,MicroTime,Time
    API rule violation: names_match,k8s.io/apimachinery/pkg/apis/meta/v1,StatusCause,Type
    API rule violation: names_match,k8s.io/apimachinery/pkg/apis/meta/v1,Time,Time
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. pkg/controller/namespace/namespace_controller.go

    	"k8s.io/kubernetes/pkg/controller"
    	"k8s.io/kubernetes/pkg/controller/namespace/deletion"
    
    	"k8s.io/klog/v2"
    )
    
    const (
    	// namespaceDeletionGracePeriod is the time period to wait before processing a received namespace event.
    	// This allows time for the following to occur:
    	// * lifecycle admission plugins on HA apiservers to also observe a namespace
    	//   deletion and prevent new objects from being created in the terminating namespace
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/integrator.go

    }
    
    // AvgAndStdDev returns the average and standard devation
    func (igr Moments) AvgAndStdDev() (float64, float64) {
    	if igr.ElapsedSeconds <= 0 {
    		return math.NaN(), math.NaN()
    	}
    	avg := igr.IntegralX / igr.ElapsedSeconds
    	// standard deviation is sqrt( average( (x - xbar)^2 ) )
    	// = sqrt( Integral( x^2 + xbar^2 -2*x*xbar dt ) / Duration )
    	// = sqrt( ( Integral( x^2 dt ) + Duration * xbar^2 - 2*xbar*Integral(x dt) ) / Duration)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 17:37:20 UTC 2022
    - 5K bytes
    - Viewed (0)
Back to top