Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 364 for Cmp (0.05 sec)

  1. cmd/kube-apiserver/app/options/options_test.go

    limitations under the License.
    */
    
    package options
    
    import (
    	"net"
    	"reflect"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/google/go-cmp/cmp/cmpopts"
    	"github.com/spf13/pflag"
    	noopoteltrace "go.opentelemetry.io/otel/trace/noop"
    
    	"k8s.io/apiserver/pkg/admission"
    	apiserveroptions "k8s.io/apiserver/pkg/server/options"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. src/hash/crc32/crc32_ppc64le.s

    	MOVD    table8+8(FP), R4   // *Table
    	MOVD    p+16(FP), R5
    	MOVD    p_len+24(FP), R6 // p len
    
    	CMP     $0,R6           // len == 0?
    	BNE     start
    	MOVW    R3,ret+40(FP)   // return crc
    	RET
    
    start:
    	NOR     R3,R3,R7        // ^crc
    	MOVWZ	R7,R7		// 32 bits
    	CMP	R6,$16
    	MOVD	R6,CTR
    	BLT	short
    	SRAD    $3,R6,R8        // 8 byte chunks
    	MOVD    R8,CTR
    
    loop:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 12:09:50 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. pkg/controller/servicecidrs/servicecidrs_controller_test.go

    limitations under the License.
    */
    
    package servicecidrs
    
    import (
    	"context"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/google/go-cmp/cmp/cmpopts"
    	v1 "k8s.io/api/core/v1"
    	networkingapiv1alpha1 "k8s.io/api/networking/v1alpha1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/client-go/informers"
    	"k8s.io/client-go/kubernetes/fake"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 22K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/join_test.go

    limitations under the License.
    */
    
    package cmd
    
    import (
    	"bytes"
    	"fmt"
    	"os"
    	"path/filepath"
    	"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/sets"
    	"k8s.io/klog/v2"
    	"k8s.io/utils/ptr"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 12:26:20 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/cached_token_authenticator_test.go

    import (
    	"bytes"
    	"context"
    	"crypto/hmac"
    	"crypto/rand"
    	"crypto/sha256"
    	"errors"
    	"fmt"
    	mathrand "math/rand"
    	"reflect"
    	"sync"
    	"sync/atomic"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    
    	utilrand "k8s.io/apimachinery/pkg/util/rand"
    	"k8s.io/apimachinery/pkg/util/uuid"
    	auditinternal "k8s.io/apiserver/pkg/apis/audit"
    	"k8s.io/apiserver/pkg/audit"
    	"k8s.io/apiserver/pkg/authentication/authenticator"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  6. src/runtime/asm_ppc64x.s

    	MOVD	fn+0(FP), R3	// R3 = fn
    	MOVD	R3, R11		// context
    	MOVD	g_m(g), R4	// R4 = m
    
    	MOVD	m_gsignal(R4), R5	// R5 = gsignal
    	CMP	g, R5
    	BEQ	noswitch
    
    	MOVD	m_g0(R4), R5	// R5 = g0
    	CMP	g, R5
    	BEQ	noswitch
    
    	MOVD	m_curg(R4), R6
    	CMP	g, R6
    	BEQ	switch
    
    	// Bad: g is not gsignal, not g0, not curg. What is it?
    	// Hide call from linker nosplit analysis.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    }
    
    // Cmp returns 0 if the quantity is equal to y, -1 if the quantity is less than y, or 1 if the
    // quantity is greater than y.
    func (q *Quantity) Cmp(y Quantity) int {
    	if q.d.Dec == nil && y.d.Dec == nil {
    		return q.i.Cmp(y.i)
    	}
    	return q.AsDec().Cmp(y.AsDec())
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  8. src/crypto/aes/gcm_ppc64x.s

    	ADD $64, R19; \
    	LXVD2X (blk_key)(R16), VS9; \
    	LXVD2X (blk_key)(R17), VS10; \
    	CMP key_len, $12, CR2; \
    	CMP key_len, $10; \
    	BEQ keysLoaded; \
    	LXVD2X (blk_key)(R18), VS11; \
    	LXVD2X (blk_key)(R19), VS12; \
    	BEQ CR2, keysLoaded; \
    	ADD $64, R16; \
    	ADD $64, R17; \
    	LXVD2X (blk_key)(R16), VS13; \
    	LXVD2X (blk_key)(R17), VS14; \
    	CMP key_len, $14; \
    	BEQ keysLoaded; \
    	MOVD R0,0(R0); \
    keysLoaded:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/volumezone/volume_zone_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package volumezone
    
    import (
    	"context"
    	"fmt"
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    	v1 "k8s.io/api/core/v1"
    	storagev1 "k8s.io/api/storage/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/klog/v2/ktesting"
    	"k8s.io/kubernetes/pkg/scheduler/apis/config"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 05:17:04 UTC 2023
    - 20K bytes
    - Viewed (0)
  10. pkg/scheduler/util/utils_test.go

    limitations under the License.
    */
    
    package util
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"syscall"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/util/net"
    	clientsetfake "k8s.io/client-go/kubernetes/fake"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 21 01:40:44 UTC 2023
    - 14.5K bytes
    - Viewed (0)
Back to top