Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 319 for Cmp (0.2 sec)

  1. src/math/big/floatexample_test.go

    	operands := []float64{-inf, -1.2, -zero, 0, +1.2, +inf}
    
    	fmt.Println("   x     y  cmp")
    	fmt.Println("---------------")
    	for _, x64 := range operands {
    		x := big.NewFloat(x64)
    		for _, y64 := range operands {
    			y := big.NewFloat(y64)
    			fmt.Printf("%4g  %4g  %3d\n", x, y, x.Cmp(y))
    		}
    		fmt.Println()
    	}
    
    	// Output:
    	//    x     y  cmp
    	// ---------------
    	// -Inf  -Inf    0
    	// -Inf  -1.2   -1
    	// -Inf    -0   -1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (NE  (InvertFlags cmp) yes no) => (NE cmp yes no)
    (FLT (InvertFlags cmp) yes no) => (FGT cmp yes no)
    (FGT (InvertFlags cmp) yes no) => (FLT cmp yes no)
    (FLE (InvertFlags cmp) yes no) => (FGE cmp yes no)
    (FGE (InvertFlags cmp) yes no) => (FLE cmp yes no)
    (LTnoov (InvertFlags cmp) yes no) => (GTnoov cmp yes no)
    (GEnoov (InvertFlags cmp) yes no) => (LEnoov cmp yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  3. pkg/controller/job/indexed_job_utils_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package job
    
    import (
    	"math"
    	"strconv"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	batch "k8s.io/api/batch/v1"
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apiserver/pkg/util/feature"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	"k8s.io/klog/v2/ktesting"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/version.go

    	return goVersion(version.Lang(v))
    }
    
    // isValid reports whether v is a valid Go version.
    func (v goVersion) isValid() bool {
    	return v != ""
    }
    
    // cmp returns -1, 0, or +1 depending on whether x < y, x == y, or x > y,
    // interpreted as Go versions.
    func (x goVersion) cmp(y goVersion) int {
    	return version.Compare(string(x), string(y))
    }
    
    var (
    	// Go versions that introduced language changes
    	go1_9  = asGoVersion("go1.9")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 20:44:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. src/runtime/race_arm64.s

    	MOVD	runtime·racearenastart(SB), R10
    	CMP	R10, R1
    	BLT	data
    	MOVD	runtime·racearenaend(SB), R10
    	CMP	R10, R1
    	BLT	call
    data:
    	MOVD	runtime·racedatastart(SB), R10
    	CMP	R10, R1
    	BLT	ret
    	MOVD	runtime·racedataend(SB), R10
    	CMP	R10, R1
    	BGT	ret
    call:
    	JMP	racecall<>(SB)
    ret:
    	RET
    
    // func runtime·racefuncenter(pc uintptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_tidy_compat_implicit.txt

    [exec:patch] cp stdout diff.patch
    [exec:patch] exec patch -p1 -i diff.patch
    [exec:patch] go mod tidy -compat=1.17 -diff
    [exec:patch] ! stdout .
    [exec:patch] cmp go.mod go.mod.tidyResult
    [exec:patch] cmp go.sum go.sum.tidyResult
    
    go list -deps -test -f $MODFMT ./...
    stdout '^example.net/lazy v0.1.0$'
    
    go mod edit -go=1.16
    ! go list -deps -test -f $MODFMT ./...
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. pkg/controlplane/apiserver/options/options_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package options
    
    import (
    	"reflect"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/google/go-cmp/cmp/cmpopts"
    	"github.com/spf13/pflag"
    	noopoteltrace "go.opentelemetry.io/otel/trace/noop"
    
    	"k8s.io/apiserver/pkg/admission"
    	apiserveroptions "k8s.io/apiserver/pkg/server/options"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. src/runtime/rt0_linux_ppc64le.s

    	// initialized, and R3/R4 are undefined.
    	MOVD	(R1), R12
    	CMP	R12, $0
    	BEQ	tls_and_argcv_in_reg
    
    	// Arguments are passed via the stack (musl loader or a static binary)
    	MOVD	0(R1), R3 // argc
    	ADD	$8, R1, R4 // argv
    
    	// Did the TLS pointer get set? If so, don't change it (e.g musl).
    	CMP	R13, $0
    	BNE	tls_and_argcv_in_reg
    
    	MOVD	$runtime·m0+m_tls(SB), R13 // TLS
    	ADD	$0x7000, R13
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. src/slices/sort_test.go

    	}
    }
    
    func TestBinarySearchFunc(t *testing.T) {
    	data := []int{1, 10, 11, 2} // sorted lexicographically
    	cmp := func(a int, b string) int {
    		return strings.Compare(strconv.Itoa(a), b)
    	}
    	pos, found := BinarySearchFunc(data, "2", cmp)
    	if pos != 3 || !found {
    		t.Errorf("BinarySearchFunc(%v, %q, cmp) = %v, %v, want %v, %v", data, "2", pos, found, 3, true)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 19:20:55 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. src/go/ast/import.go

    	slices.SortFunc(specs, func(a, b Spec) int {
    		ipath := importPath(a)
    		jpath := importPath(b)
    		r := cmp.Compare(ipath, jpath)
    		if r != 0 {
    			return r
    		}
    		iname := importName(a)
    		jname := importName(b)
    		r = cmp.Compare(iname, jname)
    		if r != 0 {
    			return r
    		}
    		return cmp.Compare(importComment(a), importComment(b))
    	})
    
    	// Dedup. Thanks to our sorting, we can just consider
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top