Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 160 for fileSystem (0.23 sec)

  1. src/syscall/zerrors_aix_ppc64.go

    	46:  "device not ready",
    	47:  "write-protected media",
    	48:  "unformatted or incompatible media",
    	49:  "no locks available",
    	50:  "cannot Establish Connection",
    	52:  "missing file or filesystem",
    	53:  "requests blocked by Administrator",
    	55:  "operation now in progress",
    	56:  "operation already in progress",
    	57:  "socket operation on non-socket",
    	58:  "destination address required",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 16:18:12 UTC 2019
    - 47.2K bytes
    - Viewed (0)
  2. src/archive/tar/writer.go

    	}
    	tw.curr = &regFileWriter{tw.w, size}
    	tw.pad = blockPadding(size)
    	return nil
    }
    
    // AddFS adds the files from fs.FS to the archive.
    // It walks the directory tree starting at the root of the filesystem
    // adding each file to the tar archive while maintaining the directory structure.
    func (tw *Writer) AddFS(fsys fs.FS) error {
    	return fs.WalkDir(fsys, ".", func(name string, d fs.DirEntry, err error) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. src/syscall/syscall_linux_test.go

    		}
    		// formatted so the values are aligned for easier comparison
    		t.Errorf("expected %s,\ngot      %s", want, got)
    	}
    }
    
    // filesystemIsNoSUID reports whether the filesystem for the given
    // path is mounted nosuid.
    func filesystemIsNoSUID(path string) bool {
    	var st syscall.Statfs_t
    	if syscall.Statfs(path, &st) != nil {
    		return false
    	}
    	return st.Flags&syscall.MS_NOSUID != 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/storage/v1beta1/generated.proto

      // mounted only with a single SELinux context.
      //
      // When "false", Kubernetes won't pass any special SELinux mount options to the driver.
      // This is typical for volumes that represent subdirectories of a bigger shared filesystem.
      //
      // Default is "false".
      //
      // +featureGate=SELinuxMountReadWriteOncePod
      // +optional
      optional bool seLinuxMount = 8;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/storage/v1/generated.proto

      // mounted only with a single SELinux context.
      //
      // When "false", Kubernetes won't pass any special SELinux mount options to the driver.
      // This is typical for volumes that represent subdirectories of a bigger shared filesystem.
      //
      // Default is "false".
      //
      // +featureGate=SELinuxMountReadWriteOncePod
      // +optional
      optional bool seLinuxMount = 8;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultSnapshotHierarchyTest.groovy

                return new MissingFileSnapshot(file.absolutePath, file.name, AccessType.DIRECT)
            }
            return new RegularFileSnapshot(file.absolutePath, file.name, TestFiles.fileHasher().hash(file), TestFiles.fileSystem().stat(file))
        }
    
        static HashCode hashFile(File file) {
            TestFiles.fileHasher().hash(file)
        }
    
        private static void assertFileSnapshot(SnapshotHierarchy set, File location) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  7. CHANGELOG.md

     *  Fix: Don't crash when canceling an event source created by `EventSources.processResponse()`.
     *  New: `Cache` now has a public constructor that takes an [okio.FileSystem]. This should make it
        possible to implement decorators for cache encryption or compression.
     *  New: `Cookie.newBuilder()` to build upon an existing cookie.
     *  New: Use TLSv1.3 when running on JDK 8u261 or newer.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:31:39 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/SmbResource.java

    
        /**
         * Create a new file but fail if it already exists. The check for
         * existence of the file and it's creation are an atomic operation with
         * respect to other filesystem activities.
         * 
         * @throws CIFSException
         */
        void createNewFile () throws CIFSException;
    
    
        /**
         * Creates a directory with the path specified by this <tt>SmbResource</tt>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Dec 20 14:09:34 UTC 2020
    - 26K bytes
    - Viewed (0)
  9. src/cmd/doc/doc_test.go

    		}
    	}
    	{
    		var flagSet flag.FlagSet
    		err := do(&b, &flagSet, []string{"nosuchpackage", "Foo"})
    		if err == nil {
    			// actually present in the user's filesystem
    		} else if !strings.Contains(err.Error(), "no such package") {
    			t.Errorf("unexpected error %q from nosuchpackage Foo", err)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:16:55 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/build.gradle

                sourceDirectory = precompiledScriptPluginUtils.sourceDirectory
                target = "buildSrc"
            }
            problemsApiUsage
        }
    
        // TODO: Do this lazily so we don't need to walk the filesystem during configuration
        // iterate through each snippets and record their names and locations
        FileFilter directoriesOnly = { it.directory }
        def topLevelDirs = file('src/snippets').listFiles(directoriesOnly)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
Back to top