Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for Cmp (0.04 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. src/cmd/compile/internal/ssa/rewriteMIPS.go

    			cmp := v_0.Args[0]
    			b.resetWithControl(BlockMIPSFPT, cmp)
    			return true
    		}
    		// match: (EQ (XORconst [1] cmp:(SGT _ _)) yes no)
    		// result: (NE cmp yes no)
    		for b.Controls[0].Op == OpMIPSXORconst {
    			v_0 := b.Controls[0]
    			if auxIntToInt32(v_0.AuxInt) != 1 {
    				break
    			}
    			cmp := v_0.Args[0]
    			if cmp.Op != OpMIPSSGT {
    				break
    			}
    			b.resetWithControl(BlockMIPSNE, cmp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/compile/internal/ssa/rewriteLOONG64.go

    			cmp := v_0.Args[0]
    			b.resetWithControl(BlockLOONG64FPT, cmp)
    			return true
    		}
    		// match: (EQ (XORconst [1] cmp:(SGT _ _)) yes no)
    		// result: (NE cmp yes no)
    		for b.Controls[0].Op == OpLOONG64XORconst {
    			v_0 := b.Controls[0]
    			if auxIntToInt64(v_0.AuxInt) != 1 {
    				break
    			}
    			cmp := v_0.Args[0]
    			if cmp.Op != OpLOONG64SGT {
    				break
    			}
    			b.resetWithControl(BlockLOONG64NE, cmp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    			cmp := v_0.Args[0]
    			b.resetWithControl(BlockMIPS64FPT, cmp)
    			return true
    		}
    		// match: (EQ (XORconst [1] cmp:(SGT _ _)) yes no)
    		// result: (NE cmp yes no)
    		for b.Controls[0].Op == OpMIPS64XORconst {
    			v_0 := b.Controls[0]
    			if auxIntToInt64(v_0.AuxInt) != 1 {
    				break
    			}
    			cmp := v_0.Args[0]
    			if cmp.Op != OpMIPS64SGT {
    				break
    			}
    			b.resetWithControl(BlockMIPS64NE, cmp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top