Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for newUnixPermission (0.14 sec)

  1. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DefaultConfigurableFilePermissionsTest.java

                        int mode = u * 64 + g * 8 + o;
                        assertEquals(mode, newUnixPermission(numericNotation).toUnixNumeric());
                    }
                }
            }
        }
    
        @Test
        public void unixPermissionInNumericNotation_whitespaceIsTrimmed() {
            assertEquals(0754, newUnixPermission("  754   ").toUnixNumeric());
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.8K bytes
    - Viewed (0)
Back to top