Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 186 for deselecting (0.16 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/conflict/FarthestConflictResolver.java

    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import org.apache.maven.artifact.resolver.ResolutionNode;
    
    /**
     * Resolves conflicting artifacts by always selecting the farthest declaration. Farthest is defined as the
     * declaration that has the most transitive steps away from the project being built.
     *
     * @since 3.0
     */
    @Named("farthest")
    @Singleton
    @Deprecated
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/conflict/NearestConflictResolver.java

    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import org.apache.maven.artifact.resolver.ResolutionNode;
    
    /**
     * Resolves conflicting artifacts by always selecting the nearest declaration. Nearest is defined as the
     * declaration that has the least transitive steps away from the project being built.
     *
     * @since 3.0
     */
    @Named("nearest")
    @Singleton
    @Deprecated
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureFallbackAtomicHelperTest.java

      // stash these in static fields to avoid loading them over and over again (speeds up test
      // execution significantly)
    
      /**
       * This classloader disallows {@link sun.misc.Unsafe}, which will prevent us from selecting our
       * preferred strategy {@code UnsafeAtomicHelper}.
       */
      @SuppressWarnings({"SunApi", "removal"}) // b/345822163
      private static final ClassLoader NO_UNSAFE =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. pkg/controller/util/selectors/bimultimap_test.go

    			return fmt.Errorf("Found empty key for labeled object %+v", v)
    		}
    	}
    	for k, v := range m.selectingObjects {
    		if v == nil {
    			return fmt.Errorf("Found nil selecting object for key %q", k)
    		}
    		if k == emptyKey {
    			return fmt.Errorf("Found empty key for selecting object %+v", v)
    		}
    	}
    	for k, v := range m.labeledBySelecting {
    		if v == nil {
    			return fmt.Errorf("Found nil labeledBySelecting entry for key %q", k)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 01:56:36 UTC 2022
    - 16.9K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/conflict/NewestConflictResolver.java

    import org.apache.maven.artifact.versioning.ArtifactVersion;
    import org.apache.maven.artifact.versioning.OverConstrainedVersionException;
    
    /**
     * Resolves conflicting artifacts by always selecting the newest declaration. Newest is defined as the
     * declaration whose version is greater according to <code>ArtifactVersion.compareTo</code>.
     *
     * @see ArtifactVersion#compareTo
     * @since 3.0
     */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. src/crypto/des/const.go

    	5, 13, 21, 29, 37, 45, 53, 61,
    	4, 12, 20, 28, 1, 9, 17, 25,
    	33, 41, 49, 57, 2, 10, 18, 26,
    	34, 42, 50, 58, 3, 11, 19, 27,
    	35, 43, 51, 59, 36, 44, 52, 60,
    }
    
    // Used in the key schedule to produce each subkey by selecting 48 bits from
    // the 56-bit input
    var permutedChoice2 = [48]byte{
    	42, 39, 45, 32, 55, 51, 53, 28,
    	41, 50, 35, 46, 33, 37, 44, 52,
    	30, 48, 40, 49, 29, 36, 43, 54,
    	15, 4, 25, 19, 9, 1, 26, 16,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 12:31:18 UTC 2017
    - 4.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/platforms/PlatformResolveIntegrationTest.groovy

                    }
                }
            }
    
            where:
            classpath | usage
            'compile' | 'api'
            'runtime' | 'runtime'
        }
    
        def 'platform deselection / reselection does not cause orphan edges'() {
            given:
            def depExcluded = mavenHttpRepo.module('org.test', 'excluded', '1.0').publish()
            def depA = mavenHttpRepo.module('org.test', 'depA', '1.0').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/FluentFuture.java

       * // counters.
       * ListenableFuture<Integer> faultTolerantFuture =
       *     fetchCounters().catching(FetchException.class, x -> 0, directExecutor());
       * }</pre>
       *
       * <p>When selecting an executor, note that {@code directExecutor} is dangerous in some cases. See
       * the discussion in the {@link #addListener} documentation. All its warnings about heavyweight
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 11 19:08:44 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  9. src/cmd/vet/README

    Printf format verbs and malformed build tags.
    
    Over time many checks have been added to vet's suite, but many more have been
    rejected as not appropriate for the tool. The criteria applied when selecting which
    checks to add are:
    
    Correctness:
    
    Vet's checks are about correctness, not style. A vet check must identify real or
    potential bugs that could cause incorrect compilation or execution. A check that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 04:15:59 UTC 2017
    - 1.6K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/conflict/OldestConflictResolver.java

    import org.apache.maven.artifact.versioning.ArtifactVersion;
    import org.apache.maven.artifact.versioning.OverConstrainedVersionException;
    
    /**
     * Resolves conflicting artifacts by always selecting the oldest declaration. Oldest is defined as the
     * declaration whose version is less according to <code>ArtifactVersion.compareTo</code>.
     *
     * @see ArtifactVersion#compareTo
     * @since 3.0
     */
    @Named("oldest")
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top