Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/math/big/floatexample_test.go

    	operands := []float64{-inf, -1.2, -zero, 0, +1.2, +inf}
    
    	fmt.Println("   x     y  cmp")
    	fmt.Println("---------------")
    	for _, x64 := range operands {
    		x := big.NewFloat(x64)
    		for _, y64 := range operands {
    			y := big.NewFloat(y64)
    			fmt.Printf("%4g  %4g  %3d\n", x, y, x.Cmp(y))
    		}
    		fmt.Println()
    	}
    
    	// Output:
    	//    x     y  cmp
    	// ---------------
    	// -Inf  -Inf    0
    	// -Inf  -1.2   -1
    	// -Inf    -0   -1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/schedulinggates/scheduling_gates_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package schedulinggates
    
    import (
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/stretchr/testify/require"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/feature"
    	st "k8s.io/kubernetes/pkg/scheduler/testing"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. pilot/pkg/xds/deltatest.go

    // limitations under the License.
    
    package xds
    
    import (
    	"fmt"
    
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	"github.com/google/go-cmp/cmp"
    	"google.golang.org/protobuf/testing/protocmp"
    
    	"istio.io/istio/pilot/pkg/model"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/util/sets"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. pkg/test/framework/components/namespace/kube.go

    //  limitations under the License.
    
    package namespace
    
    import (
    	"context"
    	"fmt"
    	"io"
    	"math/rand"
    	"strings"
    	"sync"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/hashicorp/go-multierror"
    	corev1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    
    	"istio.io/api/label"
    	"istio.io/istio/pkg/log"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/go.mod

    	github.com/fxamacker/cbor/v2 v2.7.0-beta // indirect
    	github.com/go-logr/logr v1.4.1 // indirect
    	github.com/golang/protobuf v1.5.4 // indirect
    	github.com/google/go-cmp v0.6.0 // indirect
    	github.com/google/gofuzz v1.2.0 // indirect
    	github.com/json-iterator/go v1.1.12 // indirect
    	github.com/kr/text v0.2.0 // indirect
    	github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/go.mod

    	github.com/fxamacker/cbor/v2 v2.7.0-beta
    	github.com/gogo/protobuf v1.3.2
    	github.com/golang/protobuf v1.5.4
    	github.com/google/gnostic-models v0.6.8
    	github.com/google/go-cmp v0.6.0
    	github.com/google/gofuzz v1.2.0
    	github.com/google/uuid v1.3.1
    	github.com/moby/spdystream v0.2.0
    	github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f
    	github.com/onsi/ginkgo/v2 v2.19.0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/go.mod

    // This is a generated file. Do not edit directly.
    
    module k8s.io/cli-runtime
    
    go 1.22.0
    
    require (
    	github.com/google/gnostic-models v0.6.8
    	github.com/google/go-cmp v0.6.0
    	github.com/google/uuid v1.3.1
    	github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de
    	github.com/moby/term v0.0.0-20221205130635-1aeaba878587
    	github.com/spf13/cobra v1.8.0
    	github.com/spf13/pflag v1.0.5
    	github.com/stretchr/testify v1.8.4
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/go.mod

    	github.com/emicklei/go-restful/v3 v3.11.0
    	github.com/fsnotify/fsnotify v1.7.0
    	github.com/gogo/protobuf v1.3.2
    	github.com/google/cel-go v0.20.1
    	github.com/google/gnostic-models v0.6.8
    	github.com/google/go-cmp v0.6.0
    	github.com/google/gofuzz v1.2.0
    	github.com/google/uuid v1.3.1
    	github.com/gorilla/websocket v1.5.0
    	github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
    	github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/go.mod

    go 1.22.0
    
    require (
    	github.com/emicklei/go-restful/v3 v3.11.0
    	github.com/gogo/protobuf v1.3.2
    	github.com/google/cel-go v0.20.1
    	github.com/google/gnostic-models v0.6.8
    	github.com/google/go-cmp v0.6.0
    	github.com/google/gofuzz v1.2.0
    	github.com/google/uuid v1.3.1
    	github.com/spf13/cobra v1.8.0
    	github.com/spf13/pflag v1.0.5
    	github.com/stretchr/testify v1.8.4
    	go.etcd.io/etcd/client/pkg/v3 v3.5.13
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. api/go1.23.txt

    pkg slices, func SortedFunc[$0 interface{}](iter.Seq[$0], func($0, $0) int) []$0 #61899
    pkg slices, func SortedStableFunc[$0 interface{}](iter.Seq[$0], func($0, $0) int) []$0 #61899
    pkg slices, func Sorted[$0 cmp.Ordered](iter.Seq[$0]) []$0 #61899
    pkg slices, func Values[$0 interface{ ~[]$1 }, $1 interface{}]($0) iter.Seq[$1] #61899
    pkg structs, type HostLayout struct #66408
    pkg sync, method (*Map) Clear() #61696
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 20:48:49 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top