Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for quantize (0.21 sec)

  1. src/runtime/mprof.go

    	if rate <= 0 || (rate > cycles && cheaprand64()%rate > cycles) {
    		return false
    	}
    	return true
    }
    
    // saveblockevent records a profile event of the type specified by which.
    // cycles is the quantity associated with this event and rate is the sampling rate,
    // used to adjust the cycles value in the manner determined by the profile type.
    // skip is the number of frames to omit from the traceback associated with the event.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// CauseTypeTooMany is used to report "too many". This is used to
    	// report that a given list has too many items. This is similar to FieldValueTooLong,
    	// but the error indicates quantity instead of length.
    	CauseTypeTooMany CauseType = "FieldValueTooMany"
    	// CauseTypeInternal is used to report other errors that are not related
    	// to user input.  See InternalError().
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/pv_controller.go

    					preQty = volume.Spec.Capacity[v1.ResourceStorage]
    				}
    				if claimClone.Status.Capacity == nil {
    					claimClone.Status.Capacity = make(map[v1.ResourceName]resource.Quantity)
    				}
    				claimClone.Status.Capacity[v1.ResourceStorage] = preQty
    				dirty = true
    			} else if !ok || volumeCap.Cmp(claimCap) != 0 {
    				claimClone.Status.Capacity = volume.Spec.Capacity
    				dirty = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
Back to top