Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,023 for Cmp (0.11 sec)

  1. src/cmd/compile/internal/ssa/_gen/MIPS.rules

    (NE (XORconst [1] cmp:(SGTzero _))   yes no) => (EQ cmp yes no)
    (NE (XORconst [1] cmp:(SGTUzero _))  yes no) => (EQ cmp yes no)
    (EQ (XORconst [1] cmp:(SGT _ _))     yes no) => (NE cmp yes no)
    (EQ (XORconst [1] cmp:(SGTU _ _))    yes no) => (NE cmp yes no)
    (EQ (XORconst [1] cmp:(SGTconst _))  yes no) => (NE cmp yes no)
    (EQ (XORconst [1] cmp:(SGTUconst _)) yes no) => (NE cmp yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 35.3K bytes
    - Viewed (0)
  2. src/runtime/sys_openbsd_arm.s

    	BL	libc_sigaction(SB)
    	CMP	$-1, R0
    	BNE	3(PC)
    	MOVW	$0, R8			// crash on failure
    	MOVW	R8, (R8)
    	MOVW	R9, R13
    	RET
    
    TEXT runtime·sigprocmask_trampoline(SB),NOSPLIT,$0
    	MOVW	R13, R9
    	BIC     $0x7, R13		// align for ELF ABI
    	MOVW	4(R0), R1		// arg 2 new
    	MOVW	8(R0), R2		// arg 3 old
    	MOVW	0(R0), R0		// arg 1 how
    	BL	libc_pthread_sigmask(SB)
    	CMP	$-1, R0
    	BNE	3(PC)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_indirect_main.txt

    # dependencies through older versions of the main module.
    
    go list -f '{{with .Module}}{{.Path}}{{with .Version}} {{.}}{{end}}{{end}}' all
    cmp stdout pkgmods.txt
    
    go list -m all
    cmp stdout mods.txt
    
    go mod graph
    cmp stdout graph.txt
    
    -- go.mod --
    module golang.org/issue/root
    
    go 1.12
    
    replace (
    	golang.org/issue/mirror v0.1.0 => ./mirror-v0.1.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 23:07:08 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. pkg/scheduler/apis/config/validation/validation_pluginargs_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package validation
    
    import (
    	"fmt"
    	"strings"
    	"testing"
    
    	"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/util/errors"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    	"k8s.io/apiserver/pkg/util/feature"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_sumdb_golang.txt

    go list -x -deps rsc.io/quote  # Download module source.
    ! stderr github
    stderr proxy.golang.org/rsc.io/quote
    ! stderr sum.golang.org/tile
    ! stderr sum.golang.org/lookup/rsc.io/quote
    
    cmp go.sum saved.sum
    
    
    # Download again.
    # Should use the checksum database to validate new go.sum lines,
    # but not need to fetch any new data from the proxy.
    
    rm go.sum
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 17 18:25:37 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/helper/spread_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package helper
    
    import (
    	"fmt"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/client-go/informers"
    	"k8s.io/client-go/kubernetes/fake"
    	st "k8s.io/kubernetes/pkg/scheduler/testing"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 17:48:55 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/convert_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package schema
    
    import (
    	"math/rand"
    	"reflect"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	fuzz "github.com/google/gofuzz"
    
    	"k8s.io/apiextensions-apiserver/pkg/apis/apiextensions"
    	apiextensionsv1beta1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1"
    	"k8s.io/apimachinery/pkg/util/json"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 02:09:41 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  8. pkg/apis/flowcontrol/v1beta2/defaults_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package v1beta2
    
    import (
    	"reflect"
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    
    	flowcontrolv1beta2 "k8s.io/api/flowcontrol/v1beta2"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/utils/pointer"
    )
    
    func TestDefaultWithPriorityLevelConfiguration(t *testing.T) {
    	tests := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 00:47:58 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/ARM.rules

    // absorb InvertFlags into branches
    (LT (InvertFlags cmp) yes no) => (GT cmp yes no)
    (GT (InvertFlags cmp) yes no) => (LT cmp yes no)
    (LE (InvertFlags cmp) yes no) => (GE cmp yes no)
    (GE (InvertFlags cmp) yes no) => (LE cmp yes no)
    (ULT (InvertFlags cmp) yes no) => (UGT cmp yes no)
    (UGT (InvertFlags cmp) yes no) => (ULT cmp yes no)
    (ULE (InvertFlags cmp) yes no) => (UGE cmp yes no)
    (UGE (InvertFlags cmp) yes no) => (ULE cmp yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  10. pkg/apis/flowcontrol/v1beta1/defaults_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package v1beta1
    
    import (
    	"reflect"
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    
    	flowcontrolv1beta1 "k8s.io/api/flowcontrol/v1beta1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/utils/pointer"
    )
    
    func TestDefaultWithPriorityLevelConfiguration(t *testing.T) {
    	tests := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 00:47:58 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top