Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,230 for unreadable (0.18 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/UnreadableCopyDestinationFixture.groovy

    trait UnreadableCopyDestinationFixture {
        private static final String COPY_UNREADABLE_DESTINATION_FAILURE = "Cannot access a file in the destination directory. " +
            "Copying to a directory which contains unreadable content is not supported. " +
            "Declare the task as untracked by using Task.doNotTrackState(). " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 23 08:05:53 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. src/runtime/os_linux_arm.go

    )
    
    const (
    	_HWCAP_VFP   = 1 << 6  // introduced in at least 2.6.11
    	_HWCAP_VFPv3 = 1 << 13 // introduced in 2.6.30
    )
    
    func vdsoCall()
    
    func checkgoarm() {
    	// On Android, /proc/self/auxv might be unreadable and hwcap won't
    	// reflect the CPU capabilities. Assume that every Android arm device
    	// has the necessary floating point hardware available.
    	if GOOS == "android" {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. src/cmd/internal/bootstrap_test/reboot_test.go

    	}
    
    	realGoroot := testenv.GOROOT(t)
    
    	// To ensure that bootstrapping doesn't unexpectedly depend
    	// on the Go repo's git metadata, add a fake (unreadable) git
    	// directory above the simulated GOROOT.
    	// This mimics the configuration one much have when
    	// building from distro-packaged source code
    	// (see https://go.dev/issue/54852).
    	parent := t.TempDir()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/tasks/UntrackedTask.java

     *
     * <p>There can be different reasons for declaring a task as untracked, for example:
     * <ul>
     *     <li>Some input or output locations contain unreadable files like pipes where Gradle cannot track the content.</li>
     *     <li>The input or output is stored remotely, for example in a database, and its state cannot be tracked.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 05 09:15:04 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/impl/DirectorySnapshotterTest.groovy

        }
    
        @Requires(UnitTestPreconditions.FilePermissions)
        def "snapshotting unreadable #type fails"() {
            given:
            def rootDir = tmpDir.createDir("root")
            rootDir.file('readableFile').createFile()
            rootDir.file('readableDirectory').createDir()
    
            def unreadable = rootDir.file('unreadable')
            unreadable."create${type.capitalize()}"().makeUnreadable()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyPermissionsIntegrationTest.groovy

        @Issue('https://github.com/gradle/gradle/issues/9576')
        def "unreadable #type not produced by task fails"() {
            given:
            def input = file("readableFile.txt").createFile()
    
            def outputDirectory = file("output")
            def unreadableOutput = file("${outputDirectory.name}/unreadable${type.capitalize()}")
            create(unreadableOutput).makeUnreadable()
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 20K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/TaskExecution.java

                    .withAdvice("Declare the task as untracked by using Task.doNotTrackState().");
            } else if (isDestinationDir && task instanceof Sync) {
                builder.withSummary("Cannot access a file in the destination directory.")
                    .withContext("Syncing to a directory which contains unreadable content is not supported.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyErrorIntegrationTest.groovy

                failure.assertHasDescription("Execution failed for task ':copy'.")
                failure.assertHasDocumentedCause("Cannot access input property 'rootSpec\$1' of task ':copy'. " +
                    "Accessing unreadable inputs or outputs is not supported. " +
                    "Declare the task as untracked by using Task.doNotTrackState(). " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 10:48:19 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/DefaultOverlappingOutputDetector.java

                        if (relativePath.isRoot()) {
                            return false;
                        }
                        // Otherwise check for newly added broken symlinks and unreadable files
                        return hasNewContent(relativePath, missingSnapshot);
                    }
                });
                if (newContent) {
                    overlappingPath = snapshot.getAbsolutePath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. src/syscall/tables_wasip1.go

    	EAFNOSUPPORT:    "Address family not supported by protocol family",
    	EAGAIN:          "Try again",
    	EALREADY:        "Socket already connected",
    	EBADF:           "Bad file number",
    	EBADMSG:         "Trying to read unreadable message",
    	EBUSY:           "Device or resource busy",
    	ECANCELED:       "Operation canceled.",
    	ECHILD:          "No child processes",
    	ECONNABORTED:    "Connection aborted",
    	ECONNREFUSED:    "Connection refused",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 20:58:35 UTC 2023
    - 6.5K bytes
    - Viewed (0)
Back to top