Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 100 for fileSystem (0.28 sec)

  1. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.internal.nativeintegration.filesystem.FileSystem> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (FileSystem.java:0)
    Class <org.gradle.internal.nativeintegration.filesystem.Symlink> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (Symlink.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
  2. RELEASE.md

        *   Update Getting Started docs and API intro.
    *   Google Cloud Storage (GCS):
        *   Add userspace DNS caching for the GCS client.
        *   Customize request timeouts for the GCS filesystem.
        *   Improve GCS filesystem caching.
    *   Bug Fixes:
        *   Fix bug where partitioned integer variables got their wrong shapes.
            Before
        *   Fix correctness bug in CPU and GPU implementations of Adadelta.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  3. pkg/volume/testing/testing.go

    	// nil is success, else error
    	return "/dev/loop1", nil
    }
    
    // FindEmptyDirectoryUsageOnTmpfs finds the expected usage of an empty directory existing on
    // a tmpfs filesystem on this system.
    func FindEmptyDirectoryUsageOnTmpfs() (*resource.Quantity, error) {
    	// The command below does not exist on Windows. Additionally, empty folders have size 0 on Windows.
    	if goruntime.GOOS == "windows" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. cmd/kubelet/app/server.go

    	"k8s.io/kubernetes/pkg/kubelet/stats/pidlimit"
    	kubelettypes "k8s.io/kubernetes/pkg/kubelet/types"
    	kubeletutil "k8s.io/kubernetes/pkg/kubelet/util"
    	utilfs "k8s.io/kubernetes/pkg/util/filesystem"
    	"k8s.io/kubernetes/pkg/util/flock"
    	"k8s.io/kubernetes/pkg/util/oom"
    	"k8s.io/kubernetes/pkg/util/rlimit"
    	"k8s.io/kubernetes/pkg/volume/util/hostutil"
    	"k8s.io/kubernetes/pkg/volume/util/subpath"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	}
    
    	return containers, nil
    }
    
    // makeUID returns a randomly generated string.
    func makeUID() string {
    	return fmt.Sprintf("%08x", rand.Uint32())
    }
    
    // getTerminationMessage looks on the filesystem for the provided termination message path, returning a limited
    // amount of those bytes, or returns true if the logs should be checked.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.29.md

    - Added container filesystem to the `ImageFsInfoResponse`. ([#120914](https://github.com/kubernetes/kubernetes/pull/120914), [@kannon92](https://github.com/kannon92))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/init.go

    	// fields are empty strings.
    	// versions is clipped (len=cap).
    	versions []module.Version
    
    	// modRoot maps each module in versions to its absolute filesystem path.
    	modRoot map[module.Version]string
    
    	// pathPrefix is the path prefix for packages in the module, without a trailing
    	// slash. For most modules, pathPrefix is just version.Path, but the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// The directory path within the cluster node's filesystem where the CNI binaries are to be installed. Typically /var/lib/cni/bin.
    	CniBinDir string `protobuf:"bytes,6,opt,name=cniBinDir,proto3" json:"cniBinDir,omitempty"`
    	// The directory path within the cluster node's filesystem where the CNI configuration files are to be installed. Typically /etc/cni/net.d.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  9. src/net/http/server.go

    	ConnState func(net.Conn, ConnState)
    
    	// ErrorLog specifies an optional logger for errors accepting
    	// connections, unexpected behavior from handlers, and
    	// underlying FileSystem errors.
    	// If nil, logging is done via the log package's standard logger.
    	ErrorLog *log.Logger
    
    	// BaseContext optionally specifies a function that returns
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. cluster/gce/gci/configure-helper.sh

          if [[ "${i}" -lt "${scsiblocknum}" ]]; then
            mount-ext "${ssd}" "${devicenum}" "scsi" "block"
          else
            # GKE does not set NODE_LOCAL_SSDS so all non-block devices
            # are assumed to be filesystem devices
            mount-ext "${ssd}" "${devicenum}" "scsi" "fs"
          fi
          i=$((i+1))
        else
          echo "No local SCSI SSD disks found."
        fi
      done
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top