Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 76 for compareIDs (0.36 sec)

  1. src/slices/slices.go

    	if len(s1) != len(s2) {
    		return false
    	}
    	for i, v1 := range s1 {
    		v2 := s2[i]
    		if !eq(v1, v2) {
    			return false
    		}
    	}
    	return true
    }
    
    // Compare compares the elements of s1 and s2, using [cmp.Compare] on each pair
    // of elements. The elements are compared sequentially, starting at index 0,
    // until one element is not equal to the other.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 29 14:01:59 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/math/DoubleMath.java

            || (a == b) // needed to ensure that infinities equal themselves
            || (Double.isNaN(a) && Double.isNaN(b));
      }
    
      /**
       * Compares {@code a} and {@code b} "fuzzily," with a tolerance for nearly-equal values.
       *
       * <p>This method is equivalent to {@code fuzzyEquals(a, b, tolerance) ? 0 : Double.compare(a,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/math/DoubleMath.java

            || (a == b) // needed to ensure that infinities equal themselves
            || (Double.isNaN(a) && Double.isNaN(b));
      }
    
      /**
       * Compares {@code a} and {@code b} "fuzzily," with a tolerance for nearly-equal values.
       *
       * <p>This method is equivalent to {@code fuzzyEquals(a, b, tolerance) ? 0 : Double.compare(a,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/internal/language/language.go

    // attempt to infer their values.
    // TODO: consider removing
    func (t Tag) Raw() (b Language, s Script, r Region) {
    	return t.LangID, t.ScriptID, t.RegionID
    }
    
    // equalTags compares language, script and region subtags only.
    func (t Tag) equalTags(a Tag) bool {
    	return t.LangID == a.LangID && t.ScriptID == a.ScriptID && t.RegionID == a.RegionID
    }
    
    // IsRoot returns true if t is equal to language "und".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  5. src/sort/sort_test.go

    					d := &testingData{desc: desc, t: t, data: mdata[0:n], maxswap: maxswap(n)}
    					sort(d)
    					// Uncomment if you are trying to improve the number of compares/swaps.
    					//t.Logf("%s: ncmp=%d, nswp=%d", desc, d.ncmp, d.nswap)
    
    					// If we were testing C qsort, we'd have to make a copy
    					// of the slice and sort it ourselves and then compare
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:41:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. src/text/template/doc.go

    	gt
    		Returns the boolean truth of arg1 > arg2
    	ge
    		Returns the boolean truth of arg1 >= arg2
    
    For simpler multi-way equality tests, eq (only) accepts two or more
    arguments and compares the second and subsequent to the first,
    returning in effect
    
    	arg1==arg2 || arg1==arg3 || arg1==arg4 ...
    
    (Unlike with || in Go, however, eq is a function call and all the
    arguments will be evaluated.)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize.cc

      // same value will be replaced by a single constant operator of that value.
      // Due to this, if the padding values in the input are equal, they will become
      // the same constant operator and the following check (which compares memory
      // addresses) works.
      if (pad_op.getPaddingValue() != parent_pad.getPaddingValue()) {
        return rewriter.notifyMatchFailure(
            pad_op, "parent and child pad have different padding values");
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. src/compress/flate/deflate.go

    	// 256 legitimate lengths: those in the range [3, 258]. This package's
    	// compressor uses a higher minimum match length, enabling optimizations
    	// such as finding matches via 32-bit loads and compares.
    	baseMatchLength = 3       // The smallest match length per the RFC section 3.2.5
    	minMatchLength  = 4       // The smallest match length that the compressor actually emits
    	maxMatchLength  = 258     // The largest match length
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. src/go/printer/printer_test.go

    // lineAt returns the line in text starting at offset offs.
    func lineAt(text []byte, offs int) []byte {
    	i := offs
    	for i < len(text) && text[i] != '\n' {
    		i++
    	}
    	return text[offs:i]
    }
    
    // checkEqual compares a and b.
    func checkEqual(aname, bname string, a, b []byte) error {
    	if bytes.Equal(a, b) {
    		return nil
    	}
    	return errors.New(string(diff.Diff(aname, a, bname, b)))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  10. src/math/big/int.go

    	}
    	z.QuoRem(x, y, m)
    	if m.neg {
    		if y0.neg {
    			z.Add(z, intOne)
    			m.Sub(m, y0)
    		} else {
    			z.Sub(z, intOne)
    			m.Add(m, y0)
    		}
    	}
    	return z, m
    }
    
    // Cmp compares x and y and returns:
    //
    //	-1 if x <  y
    //	 0 if x == y
    //	+1 if x >  y
    func (x *Int) Cmp(y *Int) (r int) {
    	// x cmp y == x cmp y
    	// x cmp (-y) == x
    	// (-x) cmp y == y
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 33.1K bytes
    - Viewed (0)
Back to top