Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 112 for Comparer (0.41 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				// xref: https://github.com/google/cel-spec/wiki/proposal-210
    
    				// compare integers with all float types
    				"double(self.val1) < self.val4": 6,
    				"self.val1 < int(self.val4)":    6,
    				"double(self.val1) < self.val5": 6,
    				"self.val1 < int(self.val5)":    6,
    				"double(self.val1) < self.val6": 6,
    				"self.val1 < int(self.val6)":    6,
    
    				// compare literal integers and floats
    				"double(5) < 10.0": 1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		{name: "CMP", argLength: 2, reg: gp2flags, asm: "CMP", typ: "Flags"},   // arg0 compare to arg1
    		{name: "CMPW", argLength: 2, reg: gp2flags, asm: "CMPW", typ: "Flags"}, // arg0 compare to arg1
    
    		{name: "CMPU", argLength: 2, reg: gp2flags, asm: "CMPU", typ: "Flags"},   // arg0 compare to arg1
    		{name: "CMPWU", argLength: 2, reg: gp2flags, asm: "CMPWU", typ: "Flags"}, // arg0 compare to arg1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  3. src/time/time.go

    		return t.ext < u.ext
    	}
    	ts := t.sec()
    	us := u.sec()
    	return ts < us || ts == us && t.nsec() < u.nsec()
    }
    
    // Compare compares the time instant t with u. If t is before u, it returns -1;
    // if t is after u, it returns +1; if they're the same, it returns 0.
    func (t Time) Compare(u Time) int {
    	var tc, uc int64
    	if t.wall&u.wall&hasMonotonic != 0 {
    		tc, uc = t.ext, u.ext
    	} else {
    		tc, uc = t.sec(), u.sec()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/init.go

    	if wroteGo && !opts.DropToolchain && !opts.ExplicitToolchain &&
    		gover.Compare(goVersion, gover.GoStrictVersion) >= 0 &&
    		(gover.Compare(gover.Local(), toolVers) > 0 && !gover.IsLang(gover.Local())) {
    		toolchain = "go" + gover.Local()
    		toolVers = gover.FromToolchain(toolchain)
    	}
    
    	if opts.DropToolchain || toolchain == "go"+goVersion || (gover.Compare(toolVers, gover.GoStrictVersion) < 0 && !opts.ExplicitToolchain) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  5. .teamcity/.mvn/wrapper/maven-wrapper.jar

    ommandLineParser$CaseInsensitiveStrin.class package org.apache.maven.wrapper.cli; final synchronized class CommandLineParser$CaseInsensitiveStrin implements java.util.Comparator { private void CommandLineParser$CaseInsensitiveStrin(); public int compare(String, String); } org/apache/maven/wrapper/cli/CommandLineParser$KnownOptionParserSta.class package org.apache.maven.wrapper.cli; synchronized class CommandLineParser$KnownOptionParserSta extends CommandLineParser$OptionParserState { private final...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 26 01:48:39 UTC 2020
    - 49.5K bytes
    - Viewed (0)
  6. integration-tests/gradle/gradle/wrapper/gradle-wrapper.jar

    org/gradle/cli/CommandLineParser$CaseInsensitiveStrin.class package org.gradle.cli; final synchronized class CommandLineParser$CaseInsensitiveStrin implements java.util.Comparator { private void CommandLineParser$CaseInsensitiveStrin(); public int compare(String, String); } org/gradle/cli/CommandLineParser$KnownOptionParserSta.class package org.gradle.cli; synchronized class CommandLineParser$KnownOptionParserSta extends CommandLineParser$OptionParserState { private final CommandLineParser$OptionString...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 62.2K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

              for (int i = 0; i < size; i++) {
                // We're careful to put only K instances in.
                if (i > 0 && comparator.compare((K) sortedKeys[i - 1], (K) sortedKeys[i]) == 0) {
                  throw new IllegalArgumentException(
                      "keys required to be distinct but compared as equal: "
                          + sortedKeys[i - 1]
                          + " and "
                          + sortedKeys[i]);
                }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (CLIJ  {c} (MOVDconst [x]) [y] yes no) && c&s390x.Greater == 0 && uint32(x) >  uint32(y) => (First no yes)
    
    // Constant compare-and-branch with immediate when unsigned comparison with zero.
    (C(L|LG)IJ {s390x.GreaterOrEqual} _ [0] yes no) => (First yes no)
    (C(L|LG)IJ {s390x.Less}           _ [0] yes no) => (First no yes)
    
    // Constant compare-and-branch when operands match.
    (C(GR|R|LGR|LR)J {c} x y yes no) && x == y && c&s390x.Equal != 0 => (First yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  9. src/net/http/request.go

    	// Deprecated: ErrHeaderTooLong is no longer returned by
    	// anything in the net/http package. Callers should not
    	// compare errors against this variable.
    	ErrHeaderTooLong = &ProtocolError{"header too long"}
    
    	// Deprecated: ErrShortBody is no longer returned by
    	// anything in the net/http package. Callers should not
    	// compare errors against this variable.
    	ErrShortBody = &ProtocolError{"entity body too short"}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/load.go

    		if compatVersion == "" {
    			if gover.Compare(goVersion, gover.GoStrictVersion) < 0 {
    				compatVersion = gover.Prev(goVersion)
    			} else {
    				// Starting at GoStrictVersion, we no longer maintain compatibility with
    				// versions older than what is listed in the go.mod file.
    				compatVersion = goVersion
    			}
    		}
    		if gover.Compare(compatVersion, goVersion) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top