Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Cmp (0.1 sec)

  1. src/cmd/compile/internal/ssa/rewritePPC64.go

    	typ := &b.Func.Config.Types
    	// match: (FGreaterEqual cmp)
    	// result: (OR (SETBC [2] cmp) (SETBC [1] cmp))
    	for {
    		cmp := v_0
    		v.reset(OpPPC64OR)
    		v0 := b.NewValue0(v.Pos, OpPPC64SETBC, typ.Int32)
    		v0.AuxInt = int32ToAuxInt(2)
    		v0.AddArg(cmp)
    		v1 := b.NewValue0(v.Pos, OpPPC64SETBC, typ.Int32)
    		v1.AuxInt = int32ToAuxInt(1)
    		v1.AddArg(cmp)
    		v.AddArg2(v0, v1)
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    			kind = ssa.BoundsSlice3CU
    		}
    	}
    
    	var cmp *ssa.Value
    	if kind == ssa.BoundsIndex || kind == ssa.BoundsIndexU {
    		cmp = s.newValue2(ssa.OpIsInBounds, types.Types[types.TBOOL], idx, len)
    	} else {
    		cmp = s.newValue2(ssa.OpIsSliceInBounds, types.Types[types.TBOOL], idx, len)
    	}
    	b := s.endBlock()
    	b.Kind = ssa.BlockIf
    	b.SetControl(cmp)
    	b.Likely = ssa.BranchLikely
    	b.AddEdgeTo(bNext)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation.go

    package validation
    
    import (
    	"encoding/json"
    	"fmt"
    	"math"
    	"net"
    	"path"
    	"path/filepath"
    	"reflect"
    	"regexp"
    	"strings"
    	"sync"
    	"unicode"
    	"unicode/utf8"
    
    	"github.com/google/go-cmp/cmp"
    	v1 "k8s.io/api/core/v1"
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	"k8s.io/apimachinery/pkg/api/resource"
    	apimachineryvalidation "k8s.io/apimachinery/pkg/api/validation"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

        // CHECK-NEXT: %[[LEAKY:.*]] = mhlo.multiply %[[INP:.*]], %[[ALPHA]] : tensor<1x4x4x3xf32>
        // CHECK-NEXT: %[[CMP:.*]] = mhlo.compare GT, %[[INP]], %[[ZERO]], NOTYPE : (tensor<1x4x4x3xf32>, tensor<1x4x4x3xf32>) -> tensor<1x4x4x3xi1>
        // CHECK-NEXT: %[[RES:.*]] = mhlo.select %[[CMP]], %[[INP]], %[[LEAKY]] : tensor<1x4x4x3xi1>, tensor<1x4x4x3xf32>
        // CHECK-NEXT: return %[[RES]] : tensor<1x4x4x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  5. pkg/registry/core/service/storage/storage_test.go

    limitations under the License.
    */
    
    package storage
    
    import (
    	"context"
    	"fmt"
    	"net"
    	"reflect"
    	stdruntime "runtime"
    	"strings"
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/google/go-cmp/cmp/cmpopts"
    	"k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/fields"
    	"k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/runtime"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        // offset is max_diag_len - diag_len_d if we're padding, 0 otherwise.
        Value cmp;
        if (subdiagonal_align == kRight && superdiagonal_align == kRight) {
          cmp = b_true;
        } else if (superdiagonal_align == kRight) {
          // offset = d>=0 ? max_diag_len - diag_len_d : 0
          cmp = rewriter.create<TF::GreaterEqualOp>(loc, d, b_zero);
        } else if (subdiagonal_align == kRight) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  7. pkg/proxy/iptables/proxier_test.go

    */
    
    package iptables
    
    import (
    	"bytes"
    	"fmt"
    	"net"
    	"reflect"
    	"regexp"
    	stdruntime "runtime"
    	"sort"
    	"strconv"
    	"strings"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/lithammer/dedent"
    	"github.com/stretchr/testify/assert"
    	v1 "k8s.io/api/core/v1"
    	discovery "k8s.io/api/discovery/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.25.md

    - github.com/google/cel-go: [v0.12.4 → v0.12.5](https://github.com/google/cel-go/compare/v0.12.4...v0.12.5)
    - github.com/google/go-cmp: [v0.5.6 → v0.5.8](https://github.com/google/go-cmp/compare/v0.5.6...v0.5.8)
    - github.com/onsi/ginkgo/v2: [v2.1.4 → v2.1.6](https://github.com/onsi/ginkgo/v2/compare/v2.1.4...v2.1.6)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.29.md

    - github.com/google/cel-go: [v0.16.0 → v0.17.7](https://github.com/google/cel-go/compare/v0.16.0...v0.17.7)
    - github.com/google/go-cmp: [v0.5.9 → v0.6.0](https://github.com/google/go-cmp/compare/v0.5.9...v0.6.0)
    - github.com/googleapis/gax-go/v2: [v2.7.1 → v2.11.0](https://github.com/googleapis/gax-go/v2/compare/v2.7.1...v2.11.0)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  10. doc/go_spec.html

    	if x >= 1000 {
    		break
    	}
    	fmt.Printf("%d ", x)
    }
    // output: 0 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987
    
    // iteration support for a recursive tree data structure
    type Tree[K cmp.Ordered, V any] struct {
    	left, right *Tree[K, V]
    	key         K
    	value       V
    }
    
    func (t *Tree[K, V]) walk(yield func(key K, val V) bool) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
Back to top