Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 667 for Differences (0.14 sec)

  1. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/validation/MavenPublicationErrorChecker.java

            // Put the artifacts with the least differences first, since they're more likely to be useful
            Comparator.<Set<ArtifactDifference>>comparingInt(Set::size)
                // Prefer FILE differences over CLASSIFIER differences over EXTENSION differences,
                // since different classifiers/extensions are unlikely to be right
                .thenComparing(set -> set.contains(ArtifactDifference.FILE))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 06:46:01 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. src/cmp.bash

    # "go build <pkg>" assembly output for each package
    # and lists the packages with differences.
    #
    # For packages with differences it leaves files named
    # old.txt and new.txt.
    
    FLAGS1="-newexport=0"
    FLAGS2="-newexport=1"
    
    echo
    echo
    echo "1a) clean build using $FLAGS1"
    (export GO_GCFLAGS="$FLAGS1"; sh make.bash)
    
    echo
    echo
    echo "1b) save go build output for all packages"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:03:31 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. dbflute_fess/dfprop/documentMap.dfprop

        #  Does it check differences of column-def order?
        #  (except added or deleted columns)
        #
        #; isCheckColumnDefOrderDiff = false
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o isCheckDbCommentDiff: (NotRequired - Default false)
        #  Does it check differences of table or column or others comment?
        #
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 9.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/MapDifference.java

    /**
     * An object representing the differences between two maps.
     *
     * @author Kevin Bourrillion
     * @since 2.0
     */
    @DoNotMock("Use Maps.difference")
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public interface MapDifference<K extends @Nullable Object, V extends @Nullable Object> {
      /**
       * Returns {@code true} if there are no differences between the two maps; that is, if the maps are
       * equal.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 04 13:28:27 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/MapDifference.java

    /**
     * An object representing the differences between two maps.
     *
     * @author Kevin Bourrillion
     * @since 2.0
     */
    @DoNotMock("Use Maps.difference")
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public interface MapDifference<K extends @Nullable Object, V extends @Nullable Object> {
      /**
       * Returns {@code true} if there are no differences between the two maps; that is, if the maps are
       * equal.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 04 13:28:27 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  6. src/internal/bytealg/compare_386.s

    _0through4:
    	MOVL	-4(SI)(BP*1), BX
    	MOVL	-4(DI)(BP*1), CX
    	CMPL	BX, CX
    	JEQ	allsame
    
    diff4:
    	BSWAPL	BX	// reverse order of bytes
    	BSWAPL	CX
    	XORL	BX, CX	// find bit differences
    	BSRL	CX, CX	// index of highest bit difference
    	SHRL	CX, BX	// move a's bit to bottom
    	ANDL	$1, BX	// mask bit
    	LEAL	-1(BX*2), BX // 1/0 => +1/-1
    	MOVL	BX, (AX)
    	RET
    
    	// 0-3 bytes in common
    small:
    	LEAL	(BP*8), CX
    	NEGL	CX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 23 21:22:58 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/CaseSensitiveVfsRelativePathTest.groovy

    import static org.gradle.internal.snapshot.PathUtil.getPathComparator
    
    class CaseSensitiveVfsRelativePathTest extends AbstractCaseVfsRelativePathTest {
    
        def "finds right entry in sorted list with only case differences"() {
            def children = ["bAd", "BaD", "Bad"]
            children.sort(getPathComparator(CASE_SENSITIVE))
            expect:
            for (int i = 0; i < children.size(); i++) {
                def searchedChild = children[i]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/SortedMapDifference.java

    package com.google.common.collect;
    
    import com.google.common.annotations.GwtCompatible;
    import java.util.SortedMap;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * An object representing the differences between two sorted maps.
     *
     * @author Louis Wasserman
     * @since 8.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public interface SortedMapDifference<K extends @Nullable Object, V extends @Nullable Object>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 04 13:28:27 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/versions/types_go121.go

    	// compile the tool by default.
    	// This will be <= go1.21. We take this as the maximum version that
    	// this tool can support.
    	//
    	// There are no features currently in x/tools that need to tell fine grained
    	// differences for versions <1.22.
    	return toolchain
    }
    
    // InitFileVersions is a noop when compiled with this Go version.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 938 bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/SortedMapDifference.java

    package com.google.common.collect;
    
    import com.google.common.annotations.GwtCompatible;
    import java.util.SortedMap;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * An object representing the differences between two sorted maps.
     *
     * @author Louis Wasserman
     * @since 8.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public interface SortedMapDifference<K extends @Nullable Object, V extends @Nullable Object>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 04 13:28:27 UTC 2021
    - 1.3K bytes
    - Viewed (0)
Back to top