Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 651 for equality (0.59 sec)

  1. guava/src/com/google/common/primitives/UnsignedInts.java

       * example, {@code [] < [1] < [1, 2] < [2] < [1 << 31]}.
       *
       * <p>The returned comparator is inconsistent with {@link Object#equals(Object)} (since arrays
       * support only identity equality), but it is consistent with {@link Arrays#equals(int[], int[])}.
       */
      public static Comparator<int[]> lexicographicalComparator() {
        return LexicographicalComparator.INSTANCE;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/stackalloc.go

    		//	}
    		//}
    
    	}
    
    	// For each type, we keep track of all the stack slots we
    	// have allocated for that type. This map is keyed by
    	// strings returned by types.LinkString. This guarantees
    	// type equality, but also lets us match the same type represented
    	// by two different types.Type structures. See issue 65783.
    	locations := map[string][]LocalSlot{}
    
    	// Each time we assign a stack slot to a value v, we remember
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/values_test.go

    				t.Errorf("expected Equals to return %v", tc.equal)
    			}
    
    			// Compare types with schema against native types. This is slightly different than how
    			// CEL performs equality against data literals, but is a good sanity check.
    			if tc.lhs.Equal(types.DefaultTypeAdapter.NativeToValue(tc.rhs.Value())) != types.Bool(tc.equal) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. pkg/controller/controller_utils_test.go

    	"encoding/json"
    	"fmt"
    	"math"
    	"math/rand"
    	"net/http/httptest"
    	"sort"
    	"sync"
    	"testing"
    	"time"
    
    	apps "k8s.io/api/apps/v1"
    	v1 "k8s.io/api/core/v1"
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/types"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  5. pkg/config/model.go

    	// The implementation may use a change index or a commit log for the revision.
    	// The config client should not make any assumptions about revisions and rely only on
    	// exact equality to implement optimistic concurrency of read-write operations.
    	//
    	// The lifetime of an object of a particular revision depends on the underlying data store.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  6. pilot/pkg/model/config.go

    //
    // Resource versions record the last mutation operation on each object. If a
    // mutation is applied to a different revision of an object than what the
    // underlying storage expects as defined by pure equality, the operation is
    // blocked.  The client of this interface should not make assumptions about the
    // structure or ordering of the revision identifier.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 08:51:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. pkg/kubelet/config/config_test.go

    */
    
    package config
    
    import (
    	"context"
    	"math/rand"
    	"reflect"
    	"sort"
    	"strconv"
    	"sync"
    	"testing"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/client-go/kubernetes/scheme"
    	"k8s.io/client-go/tools/record"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/graph/Graph.java

       *   <li>A and B have equal {@link #nodes() node sets}.
       *   <li>A and B have equal {@link #edges() edge sets}.
       * </ul>
       *
       * <p>Graph properties besides {@link #isDirected() directedness} do <b>not</b> affect equality.
       * For example, two graphs may be considered equal even if one allows self-loops and the other
       * doesn't. Additionally, the order in which nodes or edges are added to the graph, and the order
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/graph/Graph.java

       *   <li>A and B have equal {@link #nodes() node sets}.
       *   <li>A and B have equal {@link #edges() edge sets}.
       * </ul>
       *
       * <p>Graph properties besides {@link #isDirected() directedness} do <b>not</b> affect equality.
       * For example, two graphs may be considered equal even if one allows self-loops and the other
       * doesn't. Additionally, the order in which nodes or edges are added to the graph, and the order
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. pkg/apis/apps/v1beta2/defaults_test.go

    limitations under the License.
    */
    
    package v1beta2_test
    
    import (
    	"reflect"
    	"testing"
    
    	appsv1beta2 "k8s.io/api/apps/v1beta2"
    	v1 "k8s.io/api/core/v1"
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/util/intstr"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top