Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 105 for vol7 (0.05 sec)

  1. guava/src/com/google/common/math/Stats.java

        while (values.hasNext()) {
          double value = values.next().doubleValue();
          count++;
          if (isFinite(value) && isFinite(mean)) {
            // Art of Computer Programming vol. 2, Knuth, 4.2.2, (15)
            mean += (value - mean) / count;
          } else {
            mean = calculateNewMeanNonFinite(mean, value);
          }
        }
        return mean;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/math/DoubleMath.java

        long count = 1;
        double mean = checkFinite(values[0]);
        for (int index = 1; index < values.length; ++index) {
          checkFinite(values[index]);
          count++;
          // Art of Computer Programming vol. 2, Knuth, 4.2.2, (15)
          mean += (values[index] - mean) / count;
        }
        return mean;
      }
    
      /**
       * Returns the <a href="http://en.wikipedia.org/wiki/Arithmetic_mean">arithmetic mean</a> of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/math/DoubleMath.java

        long count = 1;
        double mean = checkFinite(values[0]);
        for (int index = 1; index < values.length; ++index) {
          checkFinite(values[index]);
          count++;
          // Art of Computer Programming vol. 2, Knuth, 4.2.2, (15)
          mean += (values[index] - mean) / count;
        }
        return mean;
      }
    
      /**
       * Returns the <a href="http://en.wikipedia.org/wiki/Arithmetic_mean">arithmetic mean</a> of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/reconciler/reconstruct_test.go

    			}
    
    			volumesFailedReconstruction := sets.New[string]()
    			for _, vol := range rcInstance.volumesFailedReconstruction {
    				volumesFailedReconstruction.Insert(vol.volumeSpecName)
    			}
    			if !reflect.DeepEqual(sets.List(volumesFailedReconstruction), tc.expectedVolumesFailedReconstruction) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				// which is how integer literals are parsed from JSON for custom resources.
    				"double(self.val1) < self.val7",
    				"double(self.val2) == self.val7",
    				"double(self.val3) > self.val7",
    
    				"self.val1 < int(self.val7)",
    				"self.val2 == int(self.val7)",
    				"self.val3 > int(self.val7)",
    
    				"double(self.val1) < self.val8",
    				"double(self.val2) == self.val8",
    				"double(self.val3) > self.val8",
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  6. pkg/volume/csimigration/plugin_manager.go

    // PluginNameMapper contains utility methods to retrieve names of plugins
    // that support a spec, map intree <=> migrated CSI plugin names, etc
    type PluginNameMapper interface {
    	GetInTreePluginNameFromSpec(pv *v1.PersistentVolume, vol *v1.Volume) (string, error)
    	GetCSINameFromInTreeName(pluginName string) (string, error)
    }
    
    // PluginManager keeps track of migrated state of in-tree plugins
    type PluginManager struct {
    	PluginNameMapper
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/staticpod/utils.go

    	}
    }
    
    // VolumeMapToSlice returns a slice of volumes from a map's values
    func VolumeMapToSlice(volumes map[string]v1.Volume) []v1.Volume {
    	v := make([]v1.Volume, 0, len(volumes))
    
    	for _, vol := range volumes {
    		v = append(v, vol)
    	}
    
    	sort.Slice(v, func(i, j int) bool {
    		return strings.Compare(v[i].Name, v[j].Name) == -1
    	})
    
    	return v
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    	for _, vol := range attachedVolumes {
    		if vol.VolumeName == volumeName1 {
    			// devicePath + attachability must have been updated from node.status
    			assert.True(t, vol.PluginIsAttachable)
    			assert.Equal(t, vol.DevicePath, "fake/path")
    		}
    		if vol.VolumeName == volumeName2 {
    			// only attachability was updated from node.status
    			assert.False(t, vol.PluginIsAttachable)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  9. pkg/controller/volume/persistentvolume/pv_controller.go

    // either the deleter plugin or nil when an external deleter is requested.
    func (ctrl *PersistentVolumeController) findDeletablePlugin(volume *v1.PersistentVolume) (vol.DeletableVolumePlugin, error) {
    	// Find a plugin. Try to find the same plugin that provisioned the volume
    	var plugin vol.DeletableVolumePlugin
    	if metav1.HasAnnotation(volume.ObjectMeta, storagehelpers.AnnDynamicallyProvisioned) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  10. src/image/jpeg/idct.go

    // stages.
    //
    // For more on the actual algorithm, see Z. Wang, "Fast algorithms for the
    // discrete W transform and for the discrete Fourier transform", IEEE Trans. on
    // ASSP, Vol. ASSP- 32, pp. 803-816, Aug. 1984.
    func idct(src *block) {
    	// Horizontal 1-D IDCT.
    	for y := 0; y < 8; y++ {
    		y8 := y * 8
    		s := src[y8 : y8+8 : y8+8] // Small cap improves performance, see https://golang.org/issue/27857
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 23:18:37 UTC 2019
    - 5K bytes
    - Viewed (0)
Back to top