Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 1,023 for Cmp (0.04 sec)

  1. src/runtime/asm_arm.s

    TEXT runtime·systemstack(SB),NOSPLIT,$0-4
    	MOVW	fn+0(FP), R0	// R0 = fn
    	MOVW	g_m(g), R1	// R1 = m
    
    	MOVW	m_gsignal(R1), R2	// R2 = gsignal
    	CMP	g, R2
    	B.EQ	noswitch
    
    	MOVW	m_g0(R1), R2	// R2 = g0
    	CMP	g, R2
    	B.EQ	noswitch
    
    	MOVW	m_curg(R1), R3
    	CMP	g, R3
    	B.EQ	switch
    
    	// Bad: g is not gsignal, not g0, not curg. What is it?
    	// Hide call from linker nosplit analysis.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:00:52 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_vendor_build.txt

    grep 'rsc.io/sampler v1.3.1 // indirect' go.mod
    cp go.mod go.mod.good
    
    # vendoring can but should not need to make changes.
    go mod vendor
    cmp go.mod go.mod.good
    
    # go list -mod=vendor (or go build -mod=vendor) must not modify go.mod.
    # golang.org/issue/26704
    go list -mod=vendor
    cmp go.mod go.mod.good
    
    # With a clean (and empty) module cache, 'go list -mod=vendor' should not download modules.
    go clean -modcache
    env GOPROXY=off
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 931 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_tidy_cycle.txt

    # subcommands when certain kinds of cycles were present
    # in the build graph.
    
    env GO111MODULE=on
    
    cp go.mod go.mod.orig
    go mod tidy
    cmp go.mod go.mod.orig
    
    # If the go.mod file is already tidy, 'go mod graph' should not modify it.
    go mod graph
    cmp go.mod go.mod.orig
    
    -- go.mod --
    module root
    
    go 1.13
    
    replace (
    	a v0.1.0 => ./a1
    	b v0.1.0 => ./b1
    	b v0.2.0 => ./b2
    	c v0.1.0 => ./c1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 19 15:51:38 UTC 2019
    - 949 bytes
    - Viewed (0)
  4. pkg/proxy/apis/config/v1alpha1/defaults_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package v1alpha1
    
    import (
    	"testing"
    	"time"
    
    	"k8s.io/utils/ptr"
    
    	"github.com/google/go-cmp/cmp"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	componentbaseconfig "k8s.io/component-base/config/v1alpha1"
    	logsapi "k8s.io/component-base/logs/api/v1"
    	kubeproxyconfigv1alpha1 "k8s.io/kube-proxy/config/v1alpha1"
    )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:33:53 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/quota/v1/resources.go

    func Equals(a corev1.ResourceList, b corev1.ResourceList) bool {
    	if len(a) != len(b) {
    		return false
    	}
    
    	for key, value1 := range a {
    		value2, found := b[key]
    		if !found {
    			return false
    		}
    		if value1.Cmp(value2) != 0 {
    			return false
    		}
    	}
    
    	return true
    }
    
    // LessThanOrEqual returns true if a < b for each key in b
    // If false, it returns the keys in a that exceeded b
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 06 23:11:22 UTC 2021
    - 8.7K bytes
    - Viewed (0)
  6. pkg/apis/autoscaling/v2beta1/defaults_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package v2beta1_test
    
    import (
    	"reflect"
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    	autoscalingv2beta1 "k8s.io/api/autoscaling/v2beta1"
    	v1 "k8s.io/api/core/v1"
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. src/runtime/memmove_s390x.s

    	MOVD	R3, -16(R8)
    	ADD	$-16, R5
    	ADD	$-16, R7
    	ADD	$-16, R8
    	CMP	R5, $16
    	BGE	backwards
    	BR	start
    
    forwards:
    	CMPBGT	R5, $64, forwards_fast
    	MOVD	0(R4), R3
    	MOVD	R3, 0(R6)
    	MOVD	8(R4), R3
    	MOVD	R3, 8(R6)
    	ADD	$16, R4
    	ADD	$16, R6
    	ADD	$-16, R5
    	CMP	R5, $16
    	BGE	forwards
    	BR	start
    
    forwards_fast:
    	CMP	R5, $256
    	BLE	forwards_small
    	MVC	$256, 0(R4), 0(R6)
    	ADD	$256, R4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 22 18:54:48 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  8. pilot/pkg/xds/nds_test.go

    import (
    	"reflect"
    	"testing"
    	"time"
    
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	"github.com/google/go-cmp/cmp"
    	"google.golang.org/protobuf/testing/protocmp"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pilot/test/xds"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_retract.txt

    cp go.mod go.mod.orig
    
    # 'go list pkg' does not report an error when a retracted version is used.
    go list -e -f '{{if .Error}}{{.Error}}{{end}}' ./use
    ! stdout .
    cmp go.mod go.mod.orig
    
    # Nor does 'go build'.
    [!short] go build ./use
    [!short] ! stderr .
    [!short] cmp go.mod go.mod.orig
    
    # Neither 'go list' nor 'go build' should download go.mod from the version
    # that would list retractions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  10. LICENSES/vendor/github.com/google/go-cmp/LICENSE

    = vendor/github.com/google/go-cmp licensed under: =
    
    Copyright (c) 2017 The Go Authors. All rights reserved.
    
    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions are
    met:
    
       * Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
       * Redistributions in binary form must reproduce the above
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 08 04:49:00 UTC 2020
    - 1.6K bytes
    - Viewed (0)
Back to top