Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for Cmp (0.3 sec)

  1. 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)
  2. pkg/api/pod/util_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package pod
    
    import (
    	"fmt"
    	"reflect"
    	"strings"
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/stretchr/testify/assert"
    	"github.com/stretchr/testify/require"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers_test.go

    limitations under the License.
    */
    
    package internalversion
    
    import (
    	"fmt"
    	"math"
    	"reflect"
    	"runtime"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    
    	apiv1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/util/intstr"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods_test.go

    */
    
    package kubelet
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"net"
    	"os"
    	"path/filepath"
    	"reflect"
    	"sort"
    	"strings"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/stretchr/testify/assert"
    	"github.com/stretchr/testify/require"
    	v1 "k8s.io/api/core/v1"
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/queue/scheduling_queue_test.go

    limitations under the License.
    */
    
    package queue
    
    import (
    	"container/list"
    	"context"
    	"fmt"
    	"math"
    	"strings"
    	"sync"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/google/go-cmp/cmp/cmpopts"
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/sets"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  6. pkg/registry/batch/job/strategy_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package job
    
    import (
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/google/go-cmp/cmp/cmpopts"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/asm9.go

    	case C_U8CON:
    		return cmp(C_U5CON, b)
    	case C_U15CON:
    		return cmp(C_U8CON, b)
    	case C_S16CON:
    		return cmp(C_U15CON, b)
    	case C_U16CON:
    		return cmp(C_U15CON, b)
    	case C_16CON:
    		return cmp(C_S16CON, b) || cmp(C_U16CON, b)
    	case C_U31CON:
    		return cmp(C_U16CON, b)
    	case C_U32CON:
    		return cmp(C_U31CON, b)
    	case C_S32CON:
    		return cmp(C_U31CON, b) || cmp(C_S16CON, b)
    	case C_32CON:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_node_status_test.go

    	"strings"
    	"sync/atomic"
    	"testing"
    	"time"
    
    	"github.com/stretchr/testify/assert"
    	"github.com/stretchr/testify/require"
    
    	cadvisorapi "github.com/google/cadvisor/info/v1"
    	"github.com/google/go-cmp/cmp"
    	v1 "k8s.io/api/core/v1"
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm64/asm7.go

    		if cmp(C_UAUTO8K, lsc) || cmp(C_UOREG8K, lsc) {
    			return lsc
    		}
    		if v >= 0 && v <= 0xfff000+0xfff<<1 && v&1 == 0 {
    			needsPool = false
    		}
    	case AMOVW, AMOVWU, AFMOVS:
    		if cmp(C_UAUTO16K, lsc) || cmp(C_UOREG16K, lsc) {
    			return lsc
    		}
    		if v >= 0 && v <= 0xfff000+0xfff<<2 && v&3 == 0 {
    			needsPool = false
    		}
    	case AMOVD, AFMOVD:
    		if cmp(C_UAUTO32K, lsc) || cmp(C_UOREG32K, lsc) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  10. src/crypto/x509/x509_test.go

    		t.Errorf("error parsing serialized key: %s", err)
    		return
    	}
    	if priv.PublicKey.N.Cmp(priv2.PublicKey.N) != 0 ||
    		priv.PublicKey.E != priv2.PublicKey.E ||
    		priv.D.Cmp(priv2.D) != 0 ||
    		len(priv2.Primes) != 3 ||
    		priv.Primes[0].Cmp(priv2.Primes[0]) != 0 ||
    		priv.Primes[1].Cmp(priv2.Primes[1]) != 0 ||
    		priv.Primes[2].Cmp(priv2.Primes[2]) != 0 {
    		t.Errorf("got:%+v want:%+v", priv, priv2)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
Back to top