Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for oldSize (0.21 sec)

  1. pkg/volume/plugins.go

    	// it would be location where volume was mounted for the pod
    	DeviceMountPath string
    
    	// DeviceStagingPath stores location where the volume is staged
    	DeviceStagePath string
    
    	NewSize resource.Quantity
    	OldSize resource.Quantity
    }
    
    type DynamicPluginProber interface {
    	Init() error
    
    	// aggregates events for successful drivers and errors for failed drivers
    	Probe() (events []ProbeEvent, err error)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        ```mlir
          %old_val = "tf.ReadVariableOp"(%buffer)
          %old_size = "tf.ReadVariableOp"(%size)
          %offsets = "tf.ConcatV2"(%old_size, %other_dims_0s, %const0)
          %new_val = "tf.XlaDynamicUpdateSlice"(%old_val, %push_val, %offsets)
          "tf.AssignVariableOp"(%buffer, %new_val)
          %new_size = "tf.AddV2"(%old_size, %const1)
          "tf.AssignVariableOp"(%size, %new_size)
        ```
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  3. src/net/http/transport.go

    		return false
    	}
    
    	// If IdleConnTimeout is set, calculate the oldest
    	// persistConn.idleAt time we're willing to use a cached idle
    	// conn.
    	var oldTime time.Time
    	if t.IdleConnTimeout > 0 {
    		oldTime = time.Now().Add(-t.IdleConnTimeout)
    	}
    
    	// Look for most recently-used idle connection.
    	if list, ok := t.idleConn[w.key]; ok {
    		stop := false
    		delivered := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top