Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 150 for RESTORED (0.13 sec)

  1. docs/bucket/lifecycle/DESIGN.md

            },
    ```
    
    When a transitioned object is restored temporarily to local MinIO instance via PostRestoreObject API, the object data is copied back from the remote tier, and additional metadata for the restored object is maintained as referenced below. Once the restore period expires, the local copy of the object is removed by the scanner during its periodic runs.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  2. src/cmd/gofmt/doc.go

    	-w
    		Do not print reformatted sources to standard output.
    		If a file's formatting is different from gofmt's, overwrite it
    		with gofmt's version. If an error occurred during overwriting,
    		the original file is restored from an automatic backup.
    
    Debugging support:
    
    	-cpuprofile filename
    		Write cpu profile to the specified file.
    
    The rewrite rule specified with the -r flag must be a string of the form:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/ArtifactCacheUnusedEntryCleanupIntegrationTest.groovy

            writeLastFileAccessTimeToJournal(files[1].parentFile, daysAgo(DEFAULT_MAX_AGE_IN_DAYS_FOR_DOWNLOADED_CACHE_ENTRIES + 1))
    
            and:
            // start as new process so journal is not restored from in-memory cache
            executer.withTasks('help').start().waitForFinish()
    
            then:
            resource.assertDoesNotExist()
            files[0].assertDoesNotExist()
            files[1].assertDoesNotExist()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 12:06:23 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  4. internal/bucket/lifecycle/lifecycle.go

    	TransitionVersionAction
    	// DeleteRestoredAction means the temporarily restored object needs to be removed after evaluating lifecycle rules
    	DeleteRestoredAction
    	// DeleteRestoredVersionAction deletes a particular version that was temporarily restored
    	DeleteRestoredVersionAction
    	// DeleteAllVersionsAction deletes all versions when an object expires
    	DeleteAllVersionsAction
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/config/LoggingSystem.java

     * limitations under the License.
     */
    
    package org.gradle.internal.logging.config;
    
    /**
     * Some configurable logging system, whose state can be snapshot, mutated and restored.
     */
    public interface LoggingSystem {
        /**
         * Snapshots the current configuration state of this logging system.
         */
        Snapshot snapshot();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/bundle_v2_test.cc

                                             attr.checkpoint_key());
                }
              }
              return absl::OkStatus();
            }));
    
        // Should be one of each var name restored.
        for (const auto& expected_name : expected_names) {
          EXPECT_EQ(1, std::count_if(restored_vars.begin(), restored_vars.end(),
                                     [&](RestoredVarType t) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 17:51:15 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. releasenotes/notes/disable-host-header-fallback.yaml

      host headers for labeling the destination service for inbound traffic from out-of-mesh workloads will see that traffic
      labeled as `unknown`. The behavior can be restored by modifying Istio configuration to remove the `disable_host_header_fallback: true`
      configuration.
    upgradeNotes:
      - title: Host header fallback disabled by default for Prometheus metrics for *all* inbound traffic.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 22 19:40:45 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInvocationTest.groovy

        def artifactType = Attribute.of('artifactType', String)
    
        def setup() {
            INVOCATION_COUNT.set(0)
        }
    
        def "input artifact selection is restored when using the in-memory cache"() {
            def transform = registerTransform(IdentityTransform)
    
            def inputArtifact1 = file("input1/input.txt")
            inputArtifact1.text = "Hello"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7K bytes
    - Viewed (0)
  9. pkg/registry/core/service/allocator/interfaces.go

    	// Destroy needs to be implemented in thread-safe way and be prepared for being
    	// called more than once.
    	Destroy()
    }
    
    // Snapshottable is an Interface that can be snapshotted and restored. Snapshottable
    // should be threadsafe.
    type Snapshottable interface {
    	Interface
    	Snapshot() (string, []byte)
    	Restore(string, []byte) error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 22 10:35:43 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. cmd/bucket-lifecycle.go

    				return
    			}
    			globalTransitionState.queueTransitionTask(obj, event, src)
    		}
    	}
    }
    
    // expireTransitionedObject handles expiry of transitioned/restored objects
    // (versions) in one of the following situations:
    //
    // 1. when a restored (via PostRestoreObject API) object expires.
    // 2. when a transitioned object expires (based on an ILM rule).
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
Back to top