Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 194 for unpipe (0.18 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelSource2.java

     */
    package org.apache.maven.model.building;
    
    import java.net.URI;
    
    /**
     * Provides access to the contents of a POM independently of the backing store (e.g. file system, database, memory).
     * <p>
     * Unlike {@link ModelSource}, this interface supports loading of parent POM(s) from the same backing store and allows
     * construction of MavenProject instances without the need to have parent POM(s) available from local or remote
     * repositories.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/robustio/robustio_flaky.go

    // readFile is like os.ReadFile, but retries ephemeral errors.
    func readFile(filename string) ([]byte, error) {
    	var b []byte
    	err := retry(func() (err error, mayRetry bool) {
    		b, err = os.ReadFile(filename)
    
    		// Unlike in rename, we do not retry errFileNotFound here: it can occur
    		// as a spurious error, but the file may also genuinely not exist, so the
    		// increase in robustness is probably not worth the extra latency.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/interface.go

    // differentiated by a series of label values
    type RatioedGaugeVec interface {
    	// NewForLabelValuesSafe makes a new vector member for the given tuple of label values,
    	// initialized with the given numerator and denominator.
    	// Unlike the usual Vec WithLabelValues method, this is intended to be called only
    	// once per vector member (at the start of its lifecycle).
    	// The "Safe" part is saying that the returned object will function properly after metric registration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 13 03:37:15 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  4. platforms/jvm/jacoco/src/main/java/org/gradle/internal/jacoco/JacocoAgentJar.java

         */
        public FileCollection getAgentConf() {
            return agentConf;
        }
    
        public void setAgentConf(FileCollection agentConf) {
            this.agentConf = agentConf;
        }
    
        /**
         * Unzips the resolved {@code org.jacoco.agent.jar} to retrieve the {@code jacocoagent.jar}.
         *
         * @return a file pointing to the {@code jacocoagent.jar}
         */
        public File getJar() {
            if (agentJar == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/internalversion/register.go

    		&metav1.UpdateOptions{})
    
    	metav1.AddToGroupVersion(scheme, metav1.SchemeGroupVersion)
    	if err := metav1beta1.RegisterConversions(scheme); err != nil {
    		return err
    	}
    	return nil
    }
    
    // Unlike other API groups, meta internal knows about all meta external versions, but keeps
    // the logic for conversion private.
    func init() {
    	localSchemeBuilder.Register(addToGroupVersion)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 22 18:47:31 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  6. test/recover1.go

    	// panic of 3 because it is at the wrong level (too high on the stack).)
    	defer mustRecover(2)
    	defer func() {
    		defer mustRecover(3)
    		defer recover()	// now a no-op, unlike in test6.
    		panic(3)
    	}()
    	panic(2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2.5K bytes
    - Viewed (0)
  7. android/guava-testlib/test/com/google/common/collect/testing/OpenJdk6MapTests.java

            getContainsEntryWithIncomparableValueMethod());
      }
    
      @Override
      protected Collection<Method> suppressForConcurrentHashMap() {
        /*
         * The entrySet() of ConcurrentHashMap, unlike that of other Map
         * implementations, supports add() under JDK8. This seems problematic, but I
         * didn't see that discussed in the review, which included many other
         * changes: http://goo.gl/okTTdr
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 3.8K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/tasks/util/PatternFilterable.java

         *
         * @return The exclude patterns. Returns an empty set when there are no exclude patterns.
         */
        Set<String> getExcludes();
    
        /**
         * Set the allowable include patterns.  Note that unlike {@link #include(Iterable)} this replaces any previously
         * defined includes.
         *
         * @param includes an Iterable providing new include patterns
         * @return this
         * @see PatternFilterable Pattern Format
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 8K bytes
    - Viewed (0)
  9. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/ArtifactDescriptorUtils.java

            }
    
            return pomArtifact;
        }
    
        /**
         * Creates POM artifact out of passed in artifact by dropping classifier (if exists) and rewriting extension to
         * "pom". Unconditionally, unlike {@link #toPomArtifact(Artifact)} that does this only for artifacts without
         * classifiers.
         *
         * @since 4.0.0
         */
        public static Artifact toPomArtifactUnconditionally(Artifact artifact) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Dec 20 13:03:35 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/lockedfile/mutex.go

    // filesystem: for example, a Mutex file in a directory might guard access to
    // the entire tree rooted in that directory.
    //
    // Mutex does not implement sync.Locker: unlike a sync.Mutex, a lockedfile.Mutex
    // can fail to lock (e.g. if there is a permission error in the filesystem).
    //
    // Like a sync.Mutex, a Mutex may be included as a field of a larger struct but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 17:17:40 UTC 2019
    - 2.3K bytes
    - Viewed (0)
Back to top