Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 850 for Cmp (0.03 sec)

  1. src/cmd/go/testdata/script/mod_tidy_version.txt

    # indicated version.
    
    go mod tidy -go=1.15
    cmp go.mod go.mod.115
    
    go mod tidy
    cmp go.mod go.mod.115
    
    
    go mod tidy -go=1.16
    cmp go.mod go.mod.116
    
    go mod tidy
    cmp go.mod go.mod.116
    
    
    go mod tidy -go=1.17
    cmp go.mod go.mod.117
    
    go mod tidy
    cmp go.mod go.mod.117
    
    
    # If we downgrade back to 1.15, we should re-resolve d to v0.2.0 instead
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 23:07:08 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. pilot/pkg/security/authz/matcher/header_test.go

    package matcher
    
    import (
    	"regexp"
    	"testing"
    
    	routepb "github.com/envoyproxy/go-control-plane/envoy/config/route/v3"
    	matcher "github.com/envoyproxy/go-control-plane/envoy/type/matcher/v3"
    	"github.com/google/go-cmp/cmp"
    	"google.golang.org/protobuf/testing/protocmp"
    )
    
    func TestHeaderMatcher(t *testing.T) {
    	testCases := []struct {
    		Name   string
    		K      string
    		V      string
    		Expect *routepb.HeaderMatcher
    	}{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 17 22:42:11 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/api/meta/meta_test.go

    */
    
    package meta
    
    import (
    	"math/rand"
    	"reflect"
    	"testing"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	metav1beta1 "k8s.io/apimachinery/pkg/apis/meta/v1beta1"
    
    	"github.com/google/go-cmp/cmp"
    	fuzz "github.com/google/gofuzz"
    )
    
    func TestAsPartialObjectMetadata(t *testing.T) {
    	f := fuzz.New().NilChance(.5).NumElements(0, 1).RandSource(rand.NewSource(1))
    
    	for i := 0; i < 100; i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. src/runtime/sys_linux_arm.s

    	MOVB	runtime·iscgo(SB), R7
    	CMP	$0, R7
    	BNE	nosaveg
    	// If we don't have a signal stack, we won't receive signal, so don't
    	// bother saving g.
    	MOVW	m_gsignal(R6), R7          // g.m.gsignal
    	CMP	$0, R7
    	BEQ	nosaveg
    	// Don't save g if we are already on the signal stack, as we won't get
    	// a nested signal.
    	CMP	g, R7
    	BEQ	nosaveg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/match/match_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    import (
    	"testing"
    
    	matcher "github.com/cncf/xds/go/xds/type/matcher/v3"
    	"github.com/google/go-cmp/cmp"
    
    	"istio.io/istio/pkg/util/protomarshal"
    )
    
    func TestCleanupEmptyMaps(t *testing.T) {
    	tc := []struct {
    		name  string
    		given func() Mapper
    		want  func() *matcher.Matcher
    	}{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (Equal cmp) => (SETBC [2] cmp)
    (NotEqual cmp) => (SETBCR [2] cmp)
    (LessThan cmp) => (SETBC [0] cmp)
    (FLessThan cmp) => (SETBC [0] cmp)
    (FLessEqual cmp) => (OR (SETBC [2] cmp) (SETBC [0] cmp))
    (GreaterEqual cmp) => (SETBCR [0] cmp)
    (GreaterThan cmp)  => (SETBC [1] cmp)
    (FGreaterEqual cmp) => (OR (SETBC [2] cmp) (SETBC [1] cmp))
    (FGreaterThan cmp)  => (SETBC [1] cmp)
    (LessEqual cmp) => (SETBCR [1] cmp)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  7. src/runtime/memmove_ppc64x.s

    	RET
    #endif
    lt8:	// Move word if possible
    	CMP BYTES, $4
    	BLT lt4
    	MOVWZ 0(SRC), TMP
    	ADD $-4, BYTES
    	MOVW TMP, 0(TGT)
    	ADD $4, SRC
    	ADD $4, TGT
    lt4:	// Move halfword if possible
    	CMP BYTES, $2
    	BLT lt2
    	MOVHZ 0(SRC), TMP
    	ADD $-2, BYTES
    	MOVH TMP, 0(TGT)
    	ADD $2, SRC
    	ADD $2, TGT
    lt2:	// Move last byte if 1 left
    	CMP BYTES, $1
    	BC 12, 0, LR	// ble lr
    	MOVBZ 0(SRC), TMP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. src/runtime/sys_windows_arm64.s

    	MOVD	libcall_args(R19), R12	// libcall->args
    
    	// Do we have more than 8 arguments?
    	MOVD	libcall_n(R19), R0
    	CMP	$0,	R0; BEQ	_0args
    	CMP	$1,	R0; BEQ	_1args
    	CMP	$2,	R0; BEQ	_2args
    	CMP	$3,	R0; BEQ	_3args
    	CMP	$4,	R0; BEQ	_4args
    	CMP	$5,	R0; BEQ	_5args
    	CMP	$6,	R0; BEQ	_6args
    	CMP	$7,	R0; BEQ	_7args
    	CMP	$8,	R0; BEQ	_8args
    
    	// Reserve stack space for remaining args
    	SUB	$8, R0, R2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/accessors_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package webhook
    
    import (
    	"fmt"
    	"reflect"
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    	fuzz "github.com/google/gofuzz"
    	v1 "k8s.io/api/admissionregistration/v1"
    )
    
    func TestMutatingWebhookAccessor(t *testing.T) {
    	f := fuzz.New()
    	for i := 0; i < 100; i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. pkg/test/framework/resource/flags_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    package resource
    
    import (
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    )
    
    func TestValidate(t *testing.T) {
    	tcs := []struct {
    		name         string
    		settings     *Settings
    		expectErr    bool
    		expectedRevs RevVerMap
    	}{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 03 17:06:22 UTC 2022
    - 1.9K bytes
    - Viewed (0)
Back to top