Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 51 for vol7 (0.04 sec)

  1. android/guava/src/com/google/common/math/StatsAccumulator.java

          max = value;
          if (!isFinite(value)) {
            sumOfSquaresOfDeltas = NaN;
          }
        } else {
          count++;
          if (isFinite(value) && isFinite(mean)) {
            // Art of Computer Programming vol. 2, Knuth, 4.2.2, (15) and (16)
            double delta = value - mean;
            mean += delta / count;
            sumOfSquaresOfDeltas += delta * (value - mean);
          } else {
            mean = calculateNewMeanNonFinite(mean, value);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  2. pkg/api/pod/util.go

    	}
    
    	return false
    }
    
    func hasUsedDownwardAPIFieldPathWithPodSpec(podSpec *api.PodSpec, fieldPath string) bool {
    	if podSpec == nil {
    		return false
    	}
    	for _, vol := range podSpec.Volumes {
    		if hasUsedDownwardAPIFieldPathWithVolume(&vol, fieldPath) {
    			return true
    		}
    	}
    	for _, c := range podSpec.InitContainers {
    		if hasUsedDownwardAPIFieldPathWithContainer(&c, fieldPath) {
    			return true
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  3. cmd/xl-storage-disk-id-check.go

    	}
    	defer done(0, &err)
    
    	return p.storage.ListVols(ctx)
    }
    
    func (p *xlStorageDiskIDCheck) StatVol(ctx context.Context, volume string) (vol VolInfo, err error) {
    	ctx, done, err := p.TrackDiskHealth(ctx, storageMetricStatVol, volume)
    	if err != nil {
    		return vol, err
    	}
    	defer done(0, &err)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/math/StatsAccumulator.java

          max = value;
          if (!isFinite(value)) {
            sumOfSquaresOfDeltas = NaN;
          }
        } else {
          count++;
          if (isFinite(value) && isFinite(mean)) {
            // Art of Computer Programming vol. 2, Knuth, 4.2.2, (15) and (16)
            double delta = value - mean;
            mean += delta / count;
            sumOfSquaresOfDeltas += delta * (value - mean);
          } else {
            mean = calculateNewMeanNonFinite(mean, value);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  5. pkg/volume/plugins.go

    			Namespace:    metav1.NamespaceDefault,
    		},
    		Spec: v1.PodSpec{
    			ActiveDeadlineSeconds: &timeout,
    			RestartPolicy:         v1.RestartPolicyNever,
    			Volumes: []v1.Volume{
    				{
    					Name: "vol",
    					// IMPORTANT!  All plugins using this template MUST
    					// override pod.Spec.Volumes[0].VolumeSource Recycler
    					// implementations without a valid VolumeSource will fail.
    					VolumeSource: v1.VolumeSource{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_mounter.go

    			//   2. Since mount is successful, we must record volume as mounted in uncertain state, so it can be
    			//      cleaned up.
    			return volumetypes.NewUncertainProgressError(fmt.Sprintf("applyFSGroup failed for vol %s: %v", c.volumeID, err))
    		}
    		klog.V(4).Info(log("mounter.SetupAt fsGroup [%d] applied successfully to %s", *mounterArgs.FsGroup, c.volumeID))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 30 10:47:59 UTC 2024
    - 21K bytes
    - Viewed (1)
  7. src/os/os_windows_test.go

    	cmd := testenv.Command(t, "cmd", "/c", "mountvol", filepath.VolumeName(path), "/L")
    	out, err := cmd.CombinedOutput()
    	if err != nil {
    		t.Fatalf("%v: %v\n%s", cmd, err, out)
    	}
    	vol := strings.Trim(string(out), " \n\r")
    	return filepath.Join(vol, path[len(filepath.VolumeName(path)):])
    }
    
    func TestReadlink(t *testing.T) {
    	tests := []struct {
    		junction bool
    		dir      bool
    		drive    bool
    		relative bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    		$2 ~ /^STATX_/ ||
    		$2 ~ /^RENAME/ ||
    		$2 ~ /^UBI_IOC[A-Z]/ ||
    		$2 ~ /^UTIME_/ ||
    		$2 ~ /^XATTR_(CREATE|REPLACE|NO(DEFAULT|FOLLOW|SECURITY)|SHOWCOMPRESSION)/ ||
    		$2 ~ /^ATTR_(BIT_MAP_COUNT|(CMN|VOL|FILE)_)/ ||
    		$2 ~ /^FSOPT_/ ||
    		$2 ~ /^WDIO[CFS]_/ ||
    		$2 ~ /^NFN/ ||
    		$2 !~ /^NFT_META_IIFTYPE/ &&
    		$2 ~ /^NFT_/ ||
    		$2 ~ /^NF_NAT_/ ||
    		$2 ~ /^XDP_/ ||
    		$2 ~ /^RWF_/ ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  9. src/encoding/gob/type.go

    	ut.base = rt
    	ut.user = rt
    	// A type that is just a cycle of pointers (such as type T *T) cannot
    	// be represented in gobs, which need some concrete data. We use a
    	// cycle detection algorithm from Knuth, Vol 2, Section 3.1, Ex 6,
    	// pp 539-540.  As we step through indirections, run another type at
    	// half speed. If they meet up, there's a cycle.
    	slowpoke := ut.base // walks half as fast as ut.base
    	for {
    		pt := ut.base
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  10. src/math/big/int.go

    // lehmerGCD sets z to the greatest common divisor of a and b,
    // which both must be != 0, and returns z.
    // If x or y are not nil, their values are set such that z = a*x + b*y.
    // See Knuth, The Art of Computer Programming, Vol. 2, Section 4.5.2, Algorithm L.
    // This implementation uses the improved condition by Collins requiring only one
    // quotient and avoiding the possibility of single Word overflow.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 33.1K bytes
    - Viewed (0)
Back to top