Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for deltaT (0.22 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    // the resulting tensor computed, then the start and delta is used with the
    // dynamic_iota value to compute the final range value.
    //
    // For example, the resulting range op value:
    //   %range = "tf.range"(%start, %limit, %delta)
    //
    // Is converted to the following.
    //   %start + %delta * iota(ceil(abs((%limit - %start) / %delta))
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    	// The delta is the number of bytes to offset ptr by.
    	delta := s.newValue2(mulOp, types.Types[types.TINT], i, stride)
    
    	// If we're slicing to the point where the capacity is zero,
    	// zero out the delta.
    	mask := s.newValue1(ssa.OpSlicemask, types.Types[types.TINT], rcap)
    	delta = s.newValue2(andOp, types.Types[types.TINT], delta, mask)
    
    	// Compute rptr = ptr + delta.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.28.md

    - Fixed computing backoff delay when using Job pod failure policy, by including in the backoff delay calculation pod failures ignored from the backoffLimit counter. ([#119434](https://github.com/kubernetes/kubernetes/pull/119434), [@mimowo](https://github.com/mimowo))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.23.md

    - Failed pods associated with a job with `parallelism = 1` are recreated by the job controller honoring exponential backoff delay again. However, for jobs with `parallelism > 1`, pods might be created without exponential backoff delay. ([#115020](https://github.com/kubernetes/kubernetes/pull/115020), [@nikhita](https://github.com/nikhita)) [SIG Apps]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    // CHECK-SAME: [[START:%.*]]: tensor<f32>, [[DELTA:%.*]]: tensor<f32>
    func.func @range(%arg0: tensor<f32>, %arg1: tensor<f32>) -> tensor<5xf32> {
      %1 = "tf.Const"() {device = "", dtype = "tfdtype$DT_FLOAT", name = "range/limit", value = dense<5.000000e+00> : tensor<f32>} : () -> tensor<f32>
      // CHECK-DAG: [[IOTA:%.*]] = "mhlo.iota"
      // CHECK-DAG: [[MUL:%.*]] = chlo.broadcast_multiply [[IOTA]], [[DELTA]] {broadcast_dimensions = array<i64>}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	//
    	// If the probe is enabled, it is recommended to have delay=0s,period=15s,failureThreshold=4.
    	// This ensures the pod is marked ready immediately after the startup probe passes (which has a 1s poll interval),
    	// and doesn't spam the readiness endpoint too much
    	//
    	// If the probe is disabled, it is recommended to have delay=1s,period=2s,failureThreshold=30.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.6.md

    * CRI: `kubectl logs -f` now stops following when container stops, as it did pre-CRI. ([#44406](https://github.com/kubernetes/kubernetes/pull/44406), [@Random-Liu](https://github.com/Random-Liu))
    * Azure cloudprovider: Reduce the polling delay for all azure clients to 5 seconds. This should speed up some operations at the cost of some additional quota. ([#43699](https://github.com/kubernetes/kubernetes/pull/43699), [@colemickens](https://github.com/colemickens))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  8. src/net/http/h2_bundle.go

    			}
    
    			// Adjust flow control of currently-open
    			// frames by the difference of the old initial
    			// window size and this one.
    			delta := int32(s.Val) - int32(cc.initialWindowSize)
    			for _, cs := range cc.streams {
    				cs.flow.add(delta)
    			}
    			cc.cond.Broadcast()
    
    			cc.initialWindowSize = s.Val
    		case http2SettingHeaderTableSize:
    			cc.henc.SetMaxDynamicTableSize(s.Val)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    void Throwables$State$1(String, int); public Throwables$State processLine(String); } org/junit/internal/InexactComparisonCri.class package org.junit.internal; public synchronized class InexactComparisonCri extends ComparisonCriteria { public Object fDelta; public void InexactComparisonCri(double); public void InexactComparisonCri(float); protected void assertElementsEqual(Object, Object); } org/junit/internal/JUnitSystem.class package org.junit.internal; public abstract interface JUnitSystem { public...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 373.7K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.22.md

    ## Changelog since v1.22.9
    
    ## Changes by Kind
    
    ### Bug or Regression
    
    - Correct event registration for multiple scheduler plugins; this fixes a potential significant delay in re-queueing unschedulable pods. ([#109447](https://github.com/kubernetes/kubernetes/pull/109447), [@ahg-g](https://github.com/ahg-g)) [SIG Scheduling and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
Back to top