Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 153 for fileSystem (0.14 sec)

  1. pkg/kubelet/eviction/eviction_manager.go

    	// signalEphemeralContainerFsLimit is amount of storage available on filesystem requested by the container
    	signalEphemeralContainerFsLimit string = "ephemeralcontainerfs.limit"
    	// signalEphemeralPodFsLimit is amount of storage available on filesystem requested by the pod
    	signalEphemeralPodFsLimit string = "ephemeralpodfs.limit"
    	// signalEmptyDirFsLimit is amount of storage available on filesystem requested by an emptyDir
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 18:55:56 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  2. testing/architecture-test/src/changes/archunit-store/injected-services-should-have-service-scope-applied.txt

    Class <org.gradle.internal.logging.text.StyledTextOutputFactory> is not annotated with @ServiceScope in (StyledTextOutputFactory.java:0)
    Class <org.gradle.internal.nativeintegration.filesystem.FileSystem> is not annotated with @ServiceScope in (FileSystem.java:0)
    Class <org.gradle.internal.nativeintegration.network.HostnameLookup> is not annotated with @ServiceScope in (HostnameLookup.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/publicsuffix/PublicSuffixDatabaseTest.kt

    import assertk.assertions.isNull
    import assertk.assertions.isTrue
    import kotlin.test.assertEquals
    import kotlin.test.assertFailsWith
    import okhttp3.internal.toCanonicalHost
    import okio.Buffer
    import okio.FileSystem
    import okio.GzipSource
    import okio.Path.Companion.toPath
    import okio.buffer
    import okio.use
    import org.junit.jupiter.api.Test
    
    class PublicSuffixDatabaseTest {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. pkg/volume/flexvolume/probe_test.go

    package flexvolume
    
    import (
    	"fmt"
    	"path/filepath"
    	goruntime "runtime"
    	"strings"
    	"testing"
    
    	"github.com/fsnotify/fsnotify"
    	"github.com/stretchr/testify/assert"
    	utilfs "k8s.io/kubernetes/pkg/util/filesystem"
    	"k8s.io/kubernetes/pkg/volume"
    	"k8s.io/utils/exec"
    )
    
    const (
    	pluginDir       = "/flexvolume"
    	driverName      = "fake-driver"
    	errorDriverName = "error-driver"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 28 11:14:00 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultInheritanceAssembler.java

         * <li>The name of the child's base directory matches the artifact id of the child.</li>
         * </ul>
         * Note that for the sake of independence from the user
         * environment, the filesystem is intentionally not used for the calculation.</p>
         *
         * @param child The child model, must not be <code>null</code>.
         * @param parent The parent model, may be <code>null</code>.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. pkg/kubelet/server/stats/summary_test.go

    	assert.Equal(summary.Node.Swap, cgroupStatsMap["/"].cs.Swap)
    	assert.Equal(summary.Node.Network, cgroupStatsMap["/"].ns)
    	assert.Equal(summary.Node.Fs, rootFsStats)
    	// Since we are a split filesystem we want root filesystem to be container fs and image to be image filesystem
    	assert.Equal(summary.Node.Runtime, &statsapi.RuntimeStats{ContainerFs: rootFsStats, ImageFs: imageFsStats})
    
    	assert.Equal(len(summary.Node.SystemContainers), 4)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. pkg/volume/util/resize_util.go

    		}
    		return pvc
    	}
    	allocatedResourcesMap[v1.ResourceStorage] = size
    	pvc.Status.AllocatedResources = allocatedResourcesMap
    	return pvc
    }
    
    // GenericResizeFS : call generic filesystem resizer for plugins that don't have any special filesystem resize requirements
    func GenericResizeFS(host volume.VolumeHost, pluginName, devicePath, deviceMountPath string) (bool, error) {
    	resizer := mount.NewResizeFs(host.GetExec(pluginName))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:30:35 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  8. pkg/volume/local/local.go

    	fs := v1.PersistentVolumeFilesystem
    	// The main purpose of reconstructed volume is to clean unused mount points
    	// and directories.
    	// For filesystem volume with directory source, no global mount path is
    	// needed to clean. Empty path is ok.
    	// For filesystem volume with block source, we should resolve to its device
    	// path if global mount path exists.
    	var path string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  9. pkg/kubelet/stats/provider_test.go

    		imageFsStats     *statsapi.FsStats
    		containerFsStats *statsapi.FsStats
    	}{
    		"dedicated device for image filesystem": {
    			rootfsDevice:  "root/device",
    			imagefsDevice: "image/device",
    			dedicated:     true,
    			imageFsStats:  imageStatsExpected,
    		},
    		"shared device for image filesystem": {
    			rootfsDevice:     "share/device",
    			imagefsDevice:    "share/device",
    			dedicated:        false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  10. pkg/kubelet/stats/helper.go

    			WorkingSetBytes: uint64Ptr(0),
    		}
    	}
    	return cpuStats, memoryStats
    }
    
    // cadvisorInfoToContainerStats returns the statsapi.ContainerStats converted
    // from the container and filesystem info.
    func cadvisorInfoToContainerStats(name string, info *cadvisorapiv2.ContainerInfo, rootFs, imageFs *cadvisorapiv2.FsInfo) *statsapi.ContainerStats {
    	result := &statsapi.ContainerStats{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 23:40:02 UTC 2023
    - 14.8K bytes
    - Viewed (0)
Back to top