Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 114 for permanently (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. docs/config/README.md

    stale_uploads_cleanup_interval  (duration)  set to change intervals when stale multipart uploads are expired (default: '6h')
    delete_cleanup_interval         (duration)  set to change intervals when deleted objects are permanently deleted from ".trash" folder (default: '5m')
    odirect                         (boolean)   set to enable or disable O_DIRECT for read and writes under special conditions. NOTE: do not disable O_DIRECT without prior testing (default: 'on')
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 11 21:48:54 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/script/state.go

    	background []backgroundCmd
    }
    
    type backgroundCmd struct {
    	*command
    	wait WaitFunc
    }
    
    // NewState returns a new State permanently associated with ctx, with its
    // initial working directory in workdir and its initial environment set to
    // initialEnv (or os.Environ(), if initialEnv is nil).
    //
    // The new State also contains pseudo-environment-variables for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:02 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  10. src/net/http/client.go

    // the following redirect codes, Get follows the redirect, up to a
    // maximum of 10 redirects:
    //
    //	301 (Moved Permanently)
    //	302 (Found)
    //	303 (See Other)
    //	307 (Temporary Redirect)
    //	308 (Permanent Redirect)
    //
    // An error is returned if there were too many redirects or if there
    // was an HTTP protocol error. A non-2xx response doesn't cause an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
Back to top