Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,157 for ONCE (0.03 sec)

  1. docs/distributed/DECOMMISSION.md

    ```
    
    ### Decommissioning status
    
    ```
    λ mc admin decommission status alias/ http://minio{1...2}/data{1...4}
    Decommissioning rate at 36 MiB/sec [4 TiB/50 TiB]
    Started: 1 minute ago
    ```
    
    Once it is **Complete**
    
    ```
    λ mc admin decommission status alias/ http://minio{1...2}/data{1...4}
    Decommission of pool http://minio{1...2}/data{1...4} is complete, you may now remove it from server command line
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jul 11 14:59:49 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  2. 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.
    
    ```
    ...
            "MetaUsr": {
             "X-Amz-Restore-Expiry-Days": "4",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/archive/ZipEntry.java

            OTHER,
        }
    
        boolean isDirectory();
    
        String getName();
    
        /**
         * This method or {@link #withInputStream(IoFunction)} ()} may or may not support being called more than
         * once per entry.  Use {@link #canReopen()} to determine if more than one call is supported.
         */
        byte[] getContent() throws IOException;
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:00 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. pkg/registry/core/service/allocator/storage/storage.go

    	storage, d, err := generic.NewRawStorage(config, nil, nil, "")
    	if err != nil {
    		return nil, err
    	}
    
    	var once sync.Once
    	return &Etcd{
    		alloc:     alloc,
    		storage:   storage,
    		baseKey:   baseKey,
    		resource:  config.GroupResource,
    		destroyFn: func() { once.Do(d) },
    	}, nil
    }
    
    // Allocate attempts to allocate the item.
    func (e *Etcd) Allocate(offset int) (bool, error) {
    	e.lock.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  5. maven-compat/src/main/resources/META-INF/maven/plugin.xml

          <implementation>org.apache.maven.lifecycle.statemgmt.StartForkedExecutionMojo</implementation>
          <language>java</language>
          <instantiationStrategy>per-lookup</instantiationStrategy>
          <executionStrategy>once-per-session</executionStrategy>
          <parameters>
            <parameter>
              <name>project</name>
              <type>org.apache.maven.project.MavenProject</type>
              <required>true</required>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 28 09:19:32 UTC 2013
    - 9.3K bytes
    - Viewed (0)
  6. releasenotes/notes/47539.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 06:11:44 UTC 2023
    - 197 bytes
    - Viewed (0)
  7. maven-core/src/site/apt/configuration-management.apt

     files for the current project. if yes. then I'm able to find projects that
     can be offered to be opened together with the current project.
     problems with the current solution are:
     1. information is duplicate. once in POM's dependencies and once in the
     maven.multiproject.includes property.
     2. it works without problems only for projects with relative paths, e.g., from
     one CVS repository.. for projects from multiple SCM repositories it's harder
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherProbeRegistry.java

     * This should cause a file system event to be produced by the operating system.
     * We listen to those events specifically in {@link FileWatcherRegistry}.
     * Once the event arrives, {@link #triggerWatchProbe(String)} is called with the path,
     * and the probe becomes triggered (or proven).
     *
     * The {@link #unprovenHierarchies()} stream returns any hierarchies that were armed, but never received
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classloader/CachingClassLoaderTest.groovy

    import spock.lang.Specification
    
    class CachingClassLoaderTest extends Specification {
        final parent = Mock(ClassLoader, useObjenesis: false)
        final classLoader = new CachingClassLoader(parent)
    
        def "loads class once and caches result"() {
            when:
            def cl = classLoader.loadClass("someClass")
    
            then:
            cl == String.class
    
            and:
            1 * parent.loadClass("someClass", false) >> String.class
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/component/ConfigurationVariantDetailsInternal.java

        /**
         * Configure the dependency mapping options for this configuration variant.
         *
         * <p>This method should eventually be moved to {@link ConfigurationVariantDetails} once
         * dependency mapping is stabilized.</p>
         *
         * @param action The action to execute against this variant's dependency mapping details.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:33:41 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top