Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for 9pfs (0.15 sec)

  1. src/net/port_test.go

    	{"123456789", 123456789, false},
    	{"1073741822", 1<<30 - 2, false},
    	{"1073741823", 1<<30 - 1, false},
    	{"1073741824", 1<<30 - 1, false},
    	{"1073741825", 1<<30 - 1, false},
    
    	// Others
    	{"abc", 0, true},
    	{"9pfs", 0, true},
    	{"123badport", 0, true},
    	{"bad123port", 0, true},
    	{"badport123", 0, true},
    	{"123456789badport", 0, true},
    	{"-2147483649badport", 0, true},
    	{"2147483649badport", 0, true},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 15 23:11:47 UTC 2016
    - 1.3K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/impl/DefaultWatchableFileSystemDetector.java

        // !IMPORTANT! If changed, make sure to update the documentation in gradle_daemon.adoc
        private static final ImmutableSet<String> SUPPORTED_FILE_SYSTEM_TYPES = ImmutableSet.of(
            // APFS on macOS
            "apfs",
            // HFS and HFS+ on macOS
            "hfs",
            "ext3",
            "ext4",
            "btrfs",
            "xfs",
            // NTFS on macOS
            "ntfs",
            // NTFS on Windows
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/zip_sum_test/testdata/zip_sums.csv

    github.com/ipfs/go-ipfs-flags,v0.0.1,h1:OH5cEkJYL0QgA+bvD55TNG9ud8HA2Nqaav47b2c/UJk=,61ac13bc74f89286ac30db2ce79b26adfba63a0676cbc430ad750df2d516565a
    github.com/ipfs/go-ipfs-posinfo,v0.0.1,h1:Esoxj+1JgSjX0+ylc0hUmJCOv6V2vFoZiETLR6OtpRs=,149f52f33d8ffd4f82056b4ea1dae2f25024a2e8df0ff555789c549468d998e7
    github.com/ipfs/go-ipfs-pq,v0.0.1,h1:zgUotX8dcAB/w/HidJh1zzc1yFq6Vm8J7T2F4itj/RU=,4eda59f4f898933265b82d381cc1ea5a3d3c75752618f46496a2d150c09aeb2d
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 18 17:29:01 UTC 2020
    - 334.9K bytes
    - Viewed (0)
  4. pkg/util/procfs/procfs_unsupported.go

    import (
    	"fmt"
    	"syscall"
    )
    
    type ProcFS struct{}
    
    func NewProcFS() ProcFSInterface {
    	return &ProcFS{}
    }
    
    // GetFullContainerName gets the container name given the root process id of the container.
    func (pfs *ProcFS) GetFullContainerName(pid int) (string, error) {
    	return "", fmt.Errorf("GetFullContainerName is unsupported in this build")
    }
    
    // Find process(es) using a regular expression and send a specified
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/file_system_watching.adoc

    ** Amazon Linux 2 or later
    * macOS 10.14 (Mojave) or later on Intel and ARM architectures
    
    == Supported File Systems
    
    File system watching supports the following file system types:
    
    * APFS
    * btrfs
    * ext3
    * ext4
    * XFS
    * HFS+
    * NTFS
    
    Gradle also supports VirtualBox's shared folders.
    
    Network file systems like Samba and NFS are not supported.
    
    .Symlinks
    --
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 26 16:37:56 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. pkg/util/procfs/procfs_linux.go

    // E.g. if the devices cgroup for the container is stored in /sys/fs/cgroup/devices/docker/nginx,
    // return docker/nginx. Assumes that the process is part of exactly one cgroup hierarchy.
    func (pfs *ProcFS) GetFullContainerName(pid int) (string, error) {
    	filePath := path.Join("/proc", strconv.Itoa(pid), "cgroup")
    	content, err := os.ReadFile(filePath)
    	if err != nil {
    		if os.IsNotExist(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 16 09:22:35 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. src/encoding/ascii85/ascii85_test.go

    		"vehemence of any carnal pleasure.",
    	"9jqo^BlbD-BleB1DJ+*+F(f,q/0JhKF<GL>Cj@.4Gp$d7F!,L7@<6@)/0JDEF<G%<+EV:2F!,\n" +
    		"O<DJ+*.@<*K0@<6L(Df-\\0Ec5e;DffZ(EZee.Bl.9pF\"AGXBPCsi+DGm>@3BB/F*&OCAfu2/AKY\n" +
    		"i(DIb:@FD,*)+C]U=@3BN#EcYf8ATD3s@q?d$AftVqCh[NqF<G:8+EV:.+Cf>-FD5W8ARlolDIa\n" +
    		"l(DId<j@<?3r@:F%a+D58'ATD4$Bl@l3De:,-DJs`8ARoFb/0JMK@qB4^F!,R<AKZ&-DfTqBG%G\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:46:20 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	{1008, "EDC8008I", "Already a conflicting call outstanding on socket."},
    	{1009, "EDC8009I", "Request cancelled using a SOCKcallCANCEL request."},
    	{1011, "EDC8011I", "A name of a PFS was specified that either is not configured or is not a Sockets PFS."},
    	{1100, "EDC8100I", "Block device required."},
    	{1101, "EDC8101I", "Text file busy."},
    	{1102, "EDC8102I", "Operation would block."},
    	{1103, "EDC8103I", "Operation now in progress."},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  9. src/cmd/trace/tasks.go

    				last = ev.Time()
    			}
    			taskSpan := taskInterval(t, summary)
    			taskStart := taskSpan.start.Sub(t.startTime())
    
    			// Produce the task summary.
    			tasks = append(tasks, task{
    				WhenString: fmt.Sprintf("%2.9fs", taskStart.Seconds()),
    				Duration:   taskSpan.duration(),
    				ID:         summary.ID,
    				Complete:   summary.Complete(),
    				Events:     events,
    				Start:      taskStart,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset.go

    			releaseSeatsLocked()
    			if !klogV.Enabled() {
    			} else if r.queue != nil {
    				klogV.Infof("QS(%s) at t=%s R=%v: request %#+v %#+v finished all use of %d seats, adjusted queue %d start R to %v due to service time %.9fs, queue will have %d requests with %#v waiting & %d requests occupying %d seats",
    					qs.qCfg.Name, now.Format(nsTimeFmt), qs.currentR, r.descr1, r.descr2, r.workEstimate.MaxSeats(), r.queue.index,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 16:59:21 UTC 2024
    - 42.4K bytes
    - Viewed (0)
Back to top