Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 61 for Cmp (0.03 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    */
    
    package kuberuntime
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"os"
    	"path/filepath"
    	"sort"
    	"time"
    
    	cadvisorapi "github.com/google/cadvisor/info/v1"
    	"github.com/google/go-cmp/cmp"
    	"go.opentelemetry.io/otel/trace"
    	crierror "k8s.io/cri-api/pkg/errors"
    	"k8s.io/klog/v2"
    
    	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 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context.go

    			}
    		}
    	}
    	// Sort aliases so order is deterministic.
    	for _, v := range aliasesForService {
    		slices.SortFunc(v, func(a, b NamespacedHostname) int {
    			if r := cmp.Compare(a.Namespace, b.Namespace); r != 0 {
    				return r
    			}
    			return cmp.Compare(a.Hostname, b.Hostname)
    		})
    	}
    
    	// Finally, we can traverse all services and update the ones that have aliases
    	for i, s := range allServices {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_test.go

    	tracing "github.com/envoyproxy/go-control-plane/envoy/type/tracing/v3"
    	xdstype "github.com/envoyproxy/go-control-plane/envoy/type/v3"
    	"github.com/envoyproxy/go-control-plane/pkg/conversion"
    	"github.com/google/go-cmp/cmp"
    	"github.com/google/uuid"
    	"google.golang.org/protobuf/proto"
    	"google.golang.org/protobuf/testing/protocmp"
    	"google.golang.org/protobuf/types/known/durationpb"
    	wrappers "google.golang.org/protobuf/types/known/wrapperspb"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    import (
    	"context"
    	"fmt"
    	"net"
    	"reflect"
    	"sort"
    	"strconv"
    	"sync"
    	"testing"
    	"time"
    
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	"github.com/google/go-cmp/cmp"
    	corev1 "k8s.io/api/core/v1"
    	discovery "k8s.io/api/discovery/v1"
    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/util/intstr"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  5. pkg/controller/endpoint/endpoints_controller_test.go

    limitations under the License.
    */
    
    package endpoint
    
    import (
    	"context"
    	"fmt"
    	"net/http"
    	"net/http/httptest"
    	"reflect"
    	"strconv"
    	"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/runtime/schema"
    	"k8s.io/apimachinery/pkg/util/intstr"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/mips/asm0.go

    	prasm(p)
    	// Turn illegal instruction into an UNDEF, avoid crashing in asmout.
    	return &Optab{obj.AUNDEF, C_NONE, C_NONE, C_NONE, 49, 4, 0, 0, 0}
    }
    
    func cmp(a int, b int) bool {
    	if a == b {
    		return true
    	}
    	switch a {
    	case C_LCON:
    		if b == C_ZCON || b == C_SCON || b == C_UCON || b == C_ADDCON || b == C_ANDCON {
    			return true
    		}
    
    	case C_ADD0CON:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/p256_asm_ppc64le.s

    #define PL    V30
    #define PH    V31
    
    #define CAR1  V6
    // func p256NegCond(val *p256Point, cond int)
    TEXT ·p256NegCond(SB), NOSPLIT, $0-16
    	MOVD val+0(FP), P1ptr
    	MOVD $16, R16
    
    	MOVD cond+8(FP), R6
    	CMP  $0, R6
    	BC   12, 2, LR      // just return if cond == 0
    
    	MOVD $p256mul<>+0x00(SB), CPOOL
    
    	LXVD2X (P1ptr)(R0), Y1L
    	LXVD2X (P1ptr)(R16), Y1H
    
    	XXPERMDI Y1H, Y1H, $2, Y1H
    	XXPERMDI Y1L, Y1L, $2, Y1L
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewrite.go

    // is the same as altering the condition codes such
    // that the same result would be produced if the arguments
    // to the flag-generating instruction were reversed, e.g.
    // (InvertFlags (CMP x y)) -> (CMP y x)
    func arm64Invert(op Op) Op {
    	switch op {
    	case OpARM64LessThan:
    		return OpARM64GreaterThan
    	case OpARM64LessThanU:
    		return OpARM64GreaterThanU
    	case OpARM64GreaterThan:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/loong64/asm.go

    	prasm(p)
    	// Turn illegal instruction into an UNDEF, avoid crashing in asmout.
    	return &Optab{obj.AUNDEF, C_NONE, C_NONE, C_NONE, C_NONE, C_NONE, 49, 4, 0, 0}
    }
    
    func cmp(a int, b int) bool {
    	if a == b {
    		return true
    	}
    	switch a {
    	case C_DCON:
    		if b == C_LCON {
    			return true
    		}
    		fallthrough
    	case C_LCON:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  10. cmd/batch-handlers.go

    	LastUpdate    time.Time `json:"lastUpdate" msg:"lu"`
    	RetryAttempts int       `json:"retryAttempts" msg:"ra"`
    	Attempts      int       `json:"attempts" msg:"at"`
    
    	Complete bool `json:"complete" msg:"cmp"`
    	Failed   bool `json:"failed" msg:"fld"`
    
    	// Last bucket/object batch replicated
    	Bucket string `json:"-" msg:"lbkt"`
    	Object string `json:"-" msg:"lobj"`
    
    	// Verbose information
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
Back to top