Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 8,625 for tims (0.11 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/Result.java

        }
    
        /**
         * The elapsed wall clock time of executing the actual work, i.e. the time it took to execute the
         * {@link UnitOfWork#execute(UnitOfWork.ExecutionRequest)} method.
         *
         * The execution time refers to when and where the work was executed: if a previous result was reused,
         * then this method will return the time it took to produce the previous result.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/core/v1/persistentvolumeclaimtemplate.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the CreationTimestamp field is set to the value of the last call.
    func (b *PersistentVolumeClaimTemplateApplyConfiguration) WithCreationTimestamp(value metav1.Time) *PersistentVolumeClaimTemplateApplyConfiguration {
    	b.ensureObjectMetaApplyConfigurationExists()
    	b.CreationTimestamp = &value
    	return b
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  3. src/log/slog/value.go

    	return math.Float64frombits(v.num)
    }
    
    // Time returns v's value as a [time.Time]. It panics
    // if v is not a time.Time.
    func (v Value) Time() time.Time {
    	if g, w := v.Kind(), KindTime; g != w {
    		panic(fmt.Sprintf("Value kind is %s, not %s", g, w))
    	}
    	return v.time()
    }
    
    // See TimeValue to understand how times are represented.
    func (v Value) time() time.Time {
    	switch a := v.any.(type) {
    	case timeLocation:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. cmd/dynamic-timeouts.go

    type dynamicTimeout struct {
    	timeout       int64
    	minimum       int64
    	entries       int64
    	log           [dynamicTimeoutLogSize]time.Duration
    	mutex         sync.Mutex
    	retryInterval time.Duration
    }
    
    type dynamicTimeoutOpts struct {
    	timeout       time.Duration
    	minimum       time.Duration
    	retryInterval time.Duration
    }
    
    func newDynamicTimeoutWithOpts(opts dynamicTimeoutOpts) *dynamicTimeout {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Aug 19 23:21:05 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  5. pkg/util/goroutinemap/exponentialbackoff/exponential_backoff.go

    	// durationBeforeRetry will grow to due to exponential backoff.
    	// Value is slightly offset from 2 minutes to make timeouts due to this
    	// constant recognizable.
    	maxDurationBeforeRetry = 2*time.Minute + 2*time.Second
    )
    
    // ExponentialBackoff contains the last occurrence of an error and the duration
    // that retries are not permitted.
    type ExponentialBackoff struct {
    	lastError           error
    	lastErrorTime       time.Time
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 19 03:30:46 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  6. pkg/kube/krt/README.md

    The `BenchmarkControllers` puts this to the test, comparing an *ideal* hand-written controller to one written in `krt`.
    While the numbers are likely to change over time, at the time of writing the overhead for `krt` is roughly 10%:
    
    ```text
    name                  time/op
    Controllers/krt-8     13.4ms ±23%
    Controllers/legacy-8  11.4ms ± 6%
    
    name                  alloc/op
    Controllers/krt-8     15.2MB ± 0%
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 17:21:50 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/core/v1/podtemplatespec.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the CreationTimestamp field is set to the value of the last call.
    func (b *PodTemplateSpecApplyConfiguration) WithCreationTimestamp(value metav1.Time) *PodTemplateSpecApplyConfiguration {
    	b.ensureObjectMetaApplyConfigurationExists()
    	b.CreationTimestamp = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/device_compilation_profiler.h

      ~DeviceCompilationProfiler() override;
    
      struct ClusterCompileStats {
        // Number of times the cluster has been (re-)compiled.
        int64_t compile_count = 0;
    
        // The number of times this cluster has been executed.
        int64_t execution_count = 0;
    
        // Cumulative time spent compiling the cluster.
        int64_t cumulative_compile_time_us = 0;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. internal/s3select/sql/timestampfuncs.go

    		duration = time.Duration(qty) * time.Minute
    	case timePartSecond:
    		duration = time.Duration(qty) * time.Second
    	default:
    		return nil, errNotImplemented
    	}
    	return FromTimestamp(t.Add(duration)), nil
    }
    
    // dateDiff computes the difference between two times in terms of the
    // `timePart` which can be years, months, days, hours, minutes or
    // seconds. For difference in years, months or days, the time part,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/batch/v1beta1/jobtemplatespec.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the CreationTimestamp field is set to the value of the last call.
    func (b *JobTemplateSpecApplyConfiguration) WithCreationTimestamp(value metav1.Time) *JobTemplateSpecApplyConfiguration {
    	b.ensureObjectMetaApplyConfigurationExists()
    	b.CreationTimestamp = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 8.9K bytes
    - Viewed (0)
Back to top