Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 531 for Cmp (0.02 sec)

  1. src/runtime/memclr_arm.s

    	MOVW	R0, R4
    	MOVW	R0, R5
    	MOVW	R0, R6
    	MOVW	R0, R7
    
    _f32loop:
    	CMP	TMP, TO
    	BHS	_4tail
    
    	MOVM.IA.W [R0-R7], (TO)
    	B	_f32loop
    
    _4tail:
    	SUB	$3, TOE, TMP	/* do remaining words if possible */
    _4loop:
    	CMP	TMP, TO
    	BHS	_1tail
    
    	MOVW.P	R0, 4(TO)		/* implicit write back */
    	B	_4loop
    
    _1tail:
    	CMP	TO, TOE
    	BEQ	_return
    
    	MOVBU.P	R0, 1(TO)		/* implicit write back */
    	B	_1tail
    
    _return:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 19 00:41:03 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  2. src/runtime/memmove_arm64.s

    // func memmove(to, from unsafe.Pointer, n uintptr)
    TEXT runtime·memmove<ABIInternal>(SB), NOSPLIT|NOFRAME, $0-24
    	CBZ	R2, copy0
    
    	// Small copies: 1..16 bytes
    	CMP	$16, R2
    	BLE	copy16
    
    	// Large copies
    	CMP	$128, R2
    	BHI	copy_long
    	CMP	$32, R2
    	BHI	copy32_128
    
    	// Small copies: 17..32 bytes.
    	LDP	(R1), (R6, R7)
    	ADD	R1, R2, R4          // R4 points just past the last source byte
    	LDP	-16(R4), (R12, R13)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 18:26:13 UTC 2022
    - 6K bytes
    - Viewed (0)
  3. pkg/apis/discovery/v1/defaults_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package v1_test
    
    import (
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    	v1 "k8s.io/api/core/v1"
    	discovery "k8s.io/api/discovery/v1"
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	"k8s.io/kubernetes/pkg/api/legacyscheme"
    	_ "k8s.io/kubernetes/pkg/apis/discovery/install"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 08 12:14:37 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/sparse_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package serializer
    
    import (
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    	"k8s.io/apimachinery/pkg/api/equality"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    )
    
    type FakeV1Obj struct {
    	metav1.TypeMeta
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_get_local.txt

    # 'go get -u local/...' should be equivalent to 'go get -u ./...'
    # (assuming no nested modules)
    cp go.mod.orig go.mod
    go get -u local/...
    cmp go.mod go.mod.implicitmod
    
    # For the main module, @patch should be a no-op.
    cp go.mod.orig go.mod
    go get -u local/...@patch
    cmp go.mod go.mod.implicitmod
    
    # 'go get -u' in the empty root of the main module should fail.
    # 'go get -u .' should also fail.
    cp go.mod.orig go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/encode_test.go

    limitations under the License.
    */
    
    package modes_test
    
    import (
    	"fmt"
    	"testing"
    
    	"github.com/fxamacker/cbor/v2"
    	"github.com/google/go-cmp/cmp"
    )
    
    func TestEncode(t *testing.T) {
    	for _, tc := range []struct {
    		name          string
    		modes         []cbor.EncMode
    		in            interface{}
    		want          []byte
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:55:02 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/apiserver/load/load_test.go

    limitations under the License.
    */
    
    package load
    
    import (
    	"bytes"
    	"os"
    	"reflect"
    	"strings"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	api "k8s.io/apiserver/pkg/apis/apiserver"
    )
    
    var defaultConfig = &api.AuthorizationConfiguration{}
    
    func writeTempFile(t *testing.T, content string) string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 07:00:31 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. pkg/scheduler/apis/config/types_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package config
    
    import (
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    )
    
    func TestPluginsNames(t *testing.T) {
    	tests := []struct {
    		name    string
    		plugins *Plugins
    		want    []string
    	}{
    		{
    			name: "empty",
    		},
    		{
    			name: "with duplicates",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 16 14:15:29 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/apidiscovery/v2/fuzzer_test.go

    	v2beta1scheme "k8s.io/apiserver/pkg/apis/apidiscovery/v2beta1"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	runtime "k8s.io/apimachinery/pkg/runtime"
    
    	"github.com/google/go-cmp/cmp"
    	fuzz "github.com/google/gofuzz"
    	"github.com/stretchr/testify/require"
    )
    
    func TestConversionRoundTrip(t *testing.T) {
    	scheme := runtime.NewScheme()
    	err := v2beta1scheme.AddToScheme(scheme)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. src/runtime/memclr_arm64.s

    try_zva:
    	// Try using the ZVA feature to zero entire cache lines
    	// It is not meaningful to use ZVA if the block size is less than 64,
    	// so make sure that n is greater than or equal to 64
    	CMP	$63, R1
    	BLE	tail63
    
    	CMP	$128, R1
    	// Ensure n is at least 128 bytes, so that there is enough to copy after
    	// alignment.
    	BLT	no_zva
    	// Check if ZVA is allowed from user code, and if so get the block size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 18:26:13 UTC 2022
    - 3.6K bytes
    - Viewed (0)
Back to top