Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 531 for Cmp (0.02 sec)

  1. 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)
  2. pkg/apis/admissionregistration/v1beta1/defaults_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package v1beta1_test
    
    import (
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    
    	v1beta1 "k8s.io/api/admissionregistration/v1beta1"
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 20:24:09 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1/defaults_test.go

    limitations under the License.
    */
    
    package v1
    
    import (
    	"testing"
    	"time"
    
    	v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	"github.com/google/go-cmp/cmp"
    )
    
    func TestKMSProviderTimeoutDefaults(t *testing.T) {
    	testCases := []struct {
    		desc string
    		in   *KMSConfiguration
    		want *KMSConfiguration
    	}{
    		{
    			desc: "timeout not supplied",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/kubeopenapi_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: Wed Apr 12 15:46:16 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/magic_test.go

    				int64(1)<<(n-1) - 1, -int64(1) << (n - 1),
    			} {
    				X := new(big.Int).SetInt64(x)
    				if X.Cmp(Min) < 0 || X.Cmp(Max) > 0 {
    					continue
    				}
    				Want := new(big.Int).Quo(X, C)
    				Got := new(big.Int).Mul(X, M)
    				Got.Rsh(Got, n+uint(s))
    				if x < 0 {
    					Got.Add(Got, One)
    				}
    				if Want.Cmp(Got) != 0 {
    					t.Errorf("smagic for %d/%d n=%d doesn't work, got=%s, want %s\n", x, c, n, Got, Want)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 22:02:07 UTC 2019
    - 9.1K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_tidy_convergence_loop.txt

    go mod edit -go=1.17 go.mod.tidye3
    go mod edit -go=1.17 go.mod.postget
    
    go list -m all
    
    go mod tidy -e
    cmp go.mod go.mod.tidye3
    
    go mod tidy -e
    cmp go.mod go.mod.tidye2
    
    go mod tidy -e
    cmp go.mod go.mod.tidye1
    
    go mod tidy -e
    cmp go.mod go.mod.117
    
    
    # As in the eager case, for the lazy module the fully-upgraded dependency graph
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  7. pkg/registry/storage/volumeattachment/strategy_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package volumeattachment
    
    import (
    	"context"
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	genericapirequest "k8s.io/apiserver/pkg/endpoints/request"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/internalversion/scheme/register_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package scheme
    
    import (
    	"net/url"
    	"reflect"
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    	metainternalversion "k8s.io/apimachinery/pkg/apis/meta/internalversion"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    func TestListOptions(t *testing.T) {
    	// verify round trip conversion
    	ten := int64(10)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. pilot/pkg/security/authz/matcher/template_test.go

    // limitations under the License.
    
    package matcher
    
    import (
    	"testing"
    
    	uri_template "github.com/envoyproxy/go-control-plane/envoy/extensions/path/match/uri_template/v3"
    	"github.com/google/go-cmp/cmp"
    	"google.golang.org/protobuf/testing/protocmp"
    )
    
    func TestPathTemplateMatcher(t *testing.T) {
    	testCases := []struct {
    		name string
    		path string
    		want *uri_template.UriTemplateMatchConfig
    	}{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. pilot/pkg/networking/grpcgen/lds_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package grpcgen
    
    import (
    	"fmt"
    	"sort"
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/istio-agent/grpcxds"
    	"istio.io/istio/pkg/util/sets"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 30 20:07:58 UTC 2022
    - 4.7K bytes
    - Viewed (0)
Back to top