Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 126 for permanently (0.48 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/file/FileContents.java

         * </ul>
         * <p>
         *     When the underlying file exists but reading it fails, the ensuing exception is permanently propagated to callers of
         *     {@link Provider#get}, {@link Provider#getOrElse}, {@link Provider#getOrNull} and {@link Provider#isPresent}.
         * </p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 08 14:00:30 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/process/ExecOutput.java

         * The external process is executed only once and only when the value is requested for the first
         * time.
         * </p>
         * <p>
         * If starting the process results in exception then the ensuing exception is permanently
         * propagated to callers of {@link Provider#get}, {@link Provider#getOrElse},
         * {@link Provider#getOrNull} and {@link Provider#isPresent}.
         * </p>
         *
         * @return provider of the execution result.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 23 00:18:08 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  3. releasenotes/notes/46935.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue: 
      - 46935
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 26 20:44:03 UTC 2023
    - 221 bytes
    - Viewed (0)
  4. docs/bucket/versioning/README.md

    ![get_version_id](https://raw.githubusercontent.com/minio/minio/master/docs/bucket/versioning/versioning_GET_versionEnabled_id.png)
    
    To permanently delete an object you need to specify the version you want to delete, only the user with appropriate permissions can permanently delete a version.  As shown below DELETE request called with a specific version id permanently deletes an object from a bucket. Delete marker is not added for DELETE requests with version id.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 04 21:43:52 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  5. tests/soft_delete_test.go

    	}
    
    	DB.Unscoped().Delete(&user)
    	if err := DB.Unscoped().First(&User{}, "name = ?", user.Name).Error; !errors.Is(err, gorm.ErrRecordNotFound) {
    		t.Errorf("Can't find permanently deleted record")
    	}
    }
    
    func TestDeletedAtUnMarshal(t *testing.T) {
    	expected := &gorm.Model{}
    	b, _ := json.Marshal(expected)
    
    	result := &gorm.Model{}
    	_ = json.Unmarshal(b, result)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Feb 01 06:40:55 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  6. src/net/http/status.go

    	case StatusMovedPermanently:
    		return "Moved Permanently"
    	case StatusFound:
    		return "Found"
    	case StatusSeeOther:
    		return "See Other"
    	case StatusNotModified:
    		return "Not Modified"
    	case StatusUseProxy:
    		return "Use Proxy"
    	case StatusTemporaryRedirect:
    		return "Temporary Redirect"
    	case StatusPermanentRedirect:
    		return "Permanent Redirect"
    	case StatusBadRequest:
    		return "Bad Request"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 10 23:30:35 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  7. internal/config/api/help.go

    			Optional:    true,
    			Type:        "duration",
    		},
    		config.HelpKV{
    			Key:         apiDeleteCleanupInterval,
    			Description: `set to change intervals when deleted objects are permanently deleted from ".trash" folder` + defaultHelpPostfix(apiDeleteCleanupInterval),
    			Optional:    true,
    			Type:        "duration",
    		},
    		config.HelpKV{
    			Key:         apiODirect,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 15 01:07:19 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. platforms/core-execution/build-cache-local/src/main/java/org/gradle/caching/local/internal/DirectoryBuildCache.java

            }
    
            fileAccessTracker.markAccessed(file);
    
            try {
                reader.accept(file);
            } catch (Exception e) {
                // Try to move the file out of the way in case its permanently corrupt
                // Don't delete, so that it can be potentially used for debugging
                File failedFile = new File(file.getAbsolutePath() + failedFileSuffix);
                FileUtils.deleteQuietly(failedFile);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:53 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_optimizations.adoc

    BUILD SUCCESSFUL in 374ms
    12 actionable tasks: 12 up-to-date
    ----
    
    When you run a task that has been previously executed and hasn't changed, then `UP-TO-DATE` is printed next to the task.
    
    TIP: To permanently enable verbose mode, add `org.gradle.console=verbose` to your `gradle.properties` file.
    
    == Build caching
    
    Incremental Builds are a great optimization that helps avoid work already done.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. cmd/object-lambda-handlers.go

    	"Moved Permanently":               http.StatusMovedPermanently,
    	"Found":                           http.StatusFound,
    	"See Other":                       http.StatusSeeOther,
    	"Not Modified":                    http.StatusNotModified,
    	"Use Proxy":                       http.StatusUseProxy,
    	"Temporary Redirect":              http.StatusTemporaryRedirect,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top