Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,009 for ONCE (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/queue/instance.go

    type Instance interface {
    	baseInstance
    	// HasSynced returns true once the queue has synced.
    	// Syncing indicates that all items in the queue *before* Run was called have been processed.
    	HasSynced() bool
    }
    
    type queueImpl struct {
    	delay     time.Duration
    	tasks     []*queueTask
    	cond      *sync.Cond
    	closing   bool
    	closed    chan struct{}
    	closeOnce *sync.Once
    	// initialSync indicates the queue has initially "synced".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 21 16:30:36 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. maven-api-impl/src/test/remote-repo/org/apache/maven/its/plugins/maven-it-plugin/0.1/maven-it-plugin-0.1.jar

    org.apache.maven.plugin.coreit.DMojo java per-lookup once-per-session java Does nothing. false true false false false true generate-sources org.apache.maven.plugin.coreit.AMojo java per-lookup once-per-session models java.lang.String[] false true version java.lang.String false true ${version} generate-test-metadata Does nothing. test false true false false false true process-test-classes org.apache.maven.plugin.coreit.EMojo java per-lookup once-per-session it Does nothing. compile false true false...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  10. CONTRIBUTING.md

        your response for more than 2 weeks.
    
    **4. Approved**
    
    -   Once the PR is approved, it gets `kokoro:force-run` label applied and it
        initiates CI/CD tests.
    -   We can't move forward if these tests fail.
    -   In such situations, we may request you to make further changes to your PR
        for the tests to pass.
    -   Once the tests pass, we now bring all the code into the internal code base,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:45:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top