Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 64 for Differences (0.66 sec)

  1. guava-tests/test/com/google/common/collect/MapsTest.java

        MapDifference<Integer, String> original = Maps.difference(left, right);
        MapDifference<Integer, String> same = Maps.difference(left, right);
        MapDifference<Integer, String> reverse = Maps.difference(right, left);
        MapDifference<Integer, String> diff2 = Maps.difference(left, right2);
    
        new EqualsTester()
            .addEqualityGroup(original, same)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  2. src/index/suffixarray/sais2.go

    		}
    	}
    
    	// We recorded the LMS-substring starts but really want the ends.
    	// Luckily, with two differences, the start indexes and the end indexes are the same.
    	// The first difference is that the rightmost LMS-substring's end index is len(text),
    	// so the caller must pretend that sa[-1] == len(text), as noted above.
    	// The second difference is that the first leftmost LMS-substring start index
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    | `File` or `Iterable&lt;File&gt;`+++*+++
    | Used with `@InputFiles` or `@InputDirectory` to instruct Gradle to track only changes to the contents of directories and not differences in the directories themselves. For example, removing, renaming or adding an empty directory somewhere in the directory structure will not make the task out-of-date.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

      "  return true;"
      "})">, "all users are AddOp and can fuse with "#op_to_fuse_with#"">;
    
    // TODO(b/294385379): This pattern only appears when we convert
    // from shlo due to differences in broadcasting behavior
    def UndoBroadcastFullyConnectedBiasAdd : Pat<
      (TFL_AddOp $lhs, (Arith_ConstantOp:$const_value $bias), TFL_AF_None),
      (TFL_AddOp $lhs, (Arith_ConstantOp (FlattenTo1D $bias)), TFL_AF_None),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  5. src/crypto/internal/nistec/p256_asm_ppc64le.s

    //go:build !purego
    
    #include "textflag.h"
    
    // This is a port of the s390x asm implementation.
    // to ppc64le.
    
    // Some changes were needed due to differences in
    // the Go opcodes and/or available instructions
    // between s390x and ppc64le.
    
    // 1. There were operand order differences in the
    // VSUBUQM, VSUBCUQ, and VSEL instructions.
    
    // 2. ppc64 does not have a multiply high and low
    // like s390x, so those were implemented using
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_messages.go

    // serverHelloMsg, we store the original wire representation of the message and
    // use that for hashing, since unmarshal/marshal are not idempotent due to
    // extension ordering and other malleable fields, which may cause differences
    // between what was received and what we marshal.
    func transcriptMsg(msg handshakeMessage, h transcriptHash) error {
    	if msgWithOrig, ok := msg.(handshakeMessageWithOriginalBytes); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

       *
       *  * Invalid percent-encoded sequences like `%xx` will be encoded like `%25xx`.
       *
       *  * Whitespace and control characters in the fragment will be stripped.
       *
       * These differences may have a significant consequence when the URI is interpreted by a
       * web server. For this reason the [URI class][URI] and this method should be avoided.
       */
      @JvmName("uri")
      fun toUri(): URI {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/xcoff.go

    		s.Nsclass = C_HIDEXT
    	}
    
    	ldr.SetSymDynid(x, int32(xfile.symbolCount))
    	syms = append(syms, s)
    
    	// Keep track of the section size by tracking the VA range. Individual
    	// alignment differences may introduce a few extra bytes of padding
    	// which are not fully accounted for by ldr.SymSize(x).
    	sv := ldr.SymValue(x) + ldr.SymSize(x)
    	if currSymSrcFile.csectVAEnd < sv {
    		currSymSrcFile.csectVAEnd = sv
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  9. pkg/controller/volume/persistentvolume/binder_test.go

    //     "volume/claim updated" events, eventually performing step 3. again)
    //  5. When 3. does not do any changes, finish the tests and compare final set
    //     of volumes/claims with expected claims/volumes and report differences.
    //
    // Some limit of calls in enforced to prevent endless loops.
    func TestMultiSync(t *testing.T) {
    	tests := []controllerTest{
    		// Test simple binding
    		{
    			// syncClaim binds to a matching unbound volume.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 65.8K bytes
    - Viewed (0)
  10. pkg/kubelet/status/status_manager_test.go

    		Status: v1.ConditionFalse,
    	})
    
    	normalizeStatus(&pod, &oldPodStatus)
    	normalizeStatus(&pod, &podStatus)
    	if !isPodStatusByKubeletEqual(&oldPodStatus, &podStatus) {
    		t.Fatalf("Differences in pod condition not owned by kubelet should not affect normalized equality.")
    	}
    }
    
    func TestStatusNormalizationEnforcesMaxBytes(t *testing.T) {
    	pod := v1.Pod{
    		Spec: v1.PodSpec{},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
Back to top