Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for EmptyChmod (0.11 sec)

  1. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/services/EmptyChmod.java

     */
    
    package org.gradle.internal.nativeintegration.filesystem.services;
    
    import org.gradle.internal.file.FileModeMutator;
    
    import java.io.File;
    import java.io.FileNotFoundException;
    
    class EmptyChmod implements FileModeMutator {
        @Override
        public void chmod(File f, int mode) throws FileNotFoundException {
            if (!f.exists()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:56 UTC 2024
    - 1K bytes
    - Viewed (0)
  2. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/services/UnsupportedFilePermissions.java

        private final AtomicBoolean warned = new AtomicBoolean();
        private final FallbackStat stat = new FallbackStat();
        private final EmptyChmod chmod = new EmptyChmod();
    
        @Override
        public int getUnixMode(File f) throws IOException {
            maybeWarn();
            return stat.getUnixMode(f);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:56 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/services/FileSystemServices.java

            TemporaryFileProvider temporaryFileProvider
        ) {
            if (operatingSystem.isWindows()) {
                final Symlink symlink = createWindowsJdkSymlink();
                return genericFileSystemFactory.create(new EmptyChmod(), new FallbackStat(), symlink);
            }
    
            if (posixFiles instanceof UnavailablePosixFiles) {
                LOGGER.debug("Native-platform file system integration is not available. Continuing with fallback.");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.internal.nativeintegration.filesystem.services.EmptyChmod> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (EmptyChmod.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)
Back to top