Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 672 for fopacity (0.11 sec)

  1. src/slices/iter.go

    	SortStableFunc(s, cmp)
    	return s
    }
    
    // Chunk returns an iterator over consecutive sub-slices of up to n elements of s.
    // All but the last sub-slice will have size n.
    // All sub-slices are clipped to have no capacity beyond the length.
    // If s is empty, the sequence is empty: there is no empty slice in the sequence.
    // Chunk panics if n is less than 1.
    func Chunk[Slice ~[]E, E any](s Slice, n int) iter.Seq[Slice] {
    	if n < 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:40:32 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. pkg/kubelet/winstats/winstats.go

    			Memory: cadvisorapiv2.MemorySpec{
    				Limit: nodeInfo.memoryPhysicalCapacityBytes,
    			},
    		},
    		Stats: stats,
    	}
    
    	return &rootInfo, nil
    }
    
    // GetDirFsInfo returns filesystem capacity and usage information.
    func (c *StatsClient) GetDirFsInfo(path string) (cadvisorapiv2.FsInfo, error) {
    	var freeBytesAvailable, totalNumberOfBytes, totalNumberOfFreeBytes int64
    	var err error
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 5.2K bytes
    - Viewed (0)
  3. pkg/scheduler/testing/wrappers.go

    	p.PersistentVolume.Spec.AccessModes = accessModes
    	return p
    }
    
    // Capacity sets `capacity` as the resource list of the inner PersistentVolume.
    func (p *PersistentVolumeWrapper) Capacity(capacity v1.ResourceList) *PersistentVolumeWrapper {
    	p.PersistentVolume.Spec.Capacity = capacity
    	return p
    }
    
    // HostPathVolumeSource sets `src` as the host path volume source of the inner
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  4. pkg/volume/util/fs/fs_unsupported.go

    limitations under the License.
    */
    
    package fs
    
    import (
    	"fmt"
    )
    
    type UsageInfo struct {
    	Bytes  int64
    	Inodes int64
    }
    
    // Info unsupported returns 0 values for available and capacity and an error.
    func Info(path string) (int64, int64, int64, int64, int64, int64, error) {
    	return 0, 0, 0, 0, 0, 0, fmt.Errorf("fsinfo not supported for this build")
    }
    
    // DiskUsage gets disk usage of specified path.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    		Spec: v1.PersistentVolumeClaimSpec{
    			VolumeName: "volume-name",
    			VolumeMode: &mode,
    		},
    		Status: v1.PersistentVolumeClaimStatus{
    			Phase:    v1.ClaimBound,
    			Capacity: gcepv.Spec.Capacity,
    		},
    	}
    
    	// Arrange
    	volumePluginMgr, fakePlugin := volumetesting.GetTestKubeletVolumePluginMgr(t)
    	seLinuxTranslator := util.NewFakeSELinuxLabelTranslator()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/AllocInfo.java

    
    import jcifs.internal.fscc.FileSystemInformation;
    
    
    /**
     * 
     * @author mbechler
     *
     */
    public interface AllocInfo extends FileSystemInformation {
    
        /**
         * 
         * @return total capacity
         */
        long getCapacity ();
    
    
        /**
         * 
         * @return free space
         */
        long getFree ();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  7. pkg/volume/metrics_du_test.go

    	}
    
    	// TODO(pwittroc): Figure out a way to test these values for correctness, maybe by formatting and mounting a file
    	// as a filesystem
    	if a := actual.Capacity.Value(); a <= 0 {
    		t.Errorf("Expected Capacity %d to be greater than 0.", a)
    	}
    	if a := actual.Available.Value(); a <= 0 {
    		t.Errorf("Expected Available %d to be greater than 0.", a)
    	}
    
    	// Write a file and expect Used to increase
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelProblemCollectorExt.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.model.building;
    
    import java.util.List;
    
    /**
     * Extends the ModelProblemCollector by the capacity of returning the collected problems.
     */
    public interface ModelProblemCollectorExt extends ModelProblemCollector {
    
        /**
         * The collected problems.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/test/testdata/slice_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This test makes sure that t.s = t.s[0:x] doesn't write
    // either the slice pointer or the capacity.
    // See issue #14855.
    
    package main
    
    import "testing"
    
    const N = 1000000
    
    type X struct {
    	s []int
    }
    
    func TestSlice(t *testing.T) {
    	done := make(chan struct{})
    	a := make([]int, N+10)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 850 bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.PersistentVolumeClaim.json

        },
        "volumeAttributesClassName": "volumeAttributesClassNameValue"
      },
      "status": {
        "phase": "phaseValue",
        "accessModes": [
          "accessModesValue"
        ],
        "capacity": {
          "capacityKey": "0"
        },
        "conditions": [
          {
            "type": "typeValue",
            "status": "statusValue",
            "lastProbeTime": "2003-01-01T01:01:01Z",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top