Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for deltaT (0.11 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 (1)
  4. 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)
  5. 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)
  6. pkg/proxy/iptables/proxier_test.go

    	}
    	assert.NotContains(t, fp.iptablesData.String(), "-X ", "iptables data unexpectedly contains chain deletions")
    
    	// But resyncing after a long-enough delay will delete the stale chains
    	fp.lastIPTablesCleanup = time.Now().Add(-fp.syncPeriod).Add(-1)
    	fp.syncProxyRules()
    
    	svc4Endpoint, numEndpoints, _ = countEndpointsAndComments(fp.iptablesData.String(), "10.4.0.1")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (1)
Back to top