Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 651 for equality (0.14 sec)

  1. pkg/registry/core/persistentvolume/storage/storage_test.go

    limitations under the License.
    */
    
    package storage
    
    import (
    	"context"
    	"testing"
    	"time"
    
    	"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"
    	"k8s.io/apimachinery/pkg/fields"
    	"k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/runtime"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller.go

    import (
    	"bytes"
    	"context"
    	"crypto/x509"
    	"encoding/json"
    	"encoding/pem"
    	"fmt"
    	"reflect"
    	"strings"
    	"time"
    
    	corev1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/equality"
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/wait"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/func_test.go

    			return true
    		}
    		if valcor[fv] == nil && valcor[gv] == nil {
    			valcor[fv] = gv
    			valcor[gv] = fv
    			// Ignore ids. Ops and Types are compared for equality.
    			// TODO(matloob): Make sure types are canonical and can
    			// be compared for equality.
    			if fv.Op != gv.Op || fv.Type != gv.Type || fv.AuxInt != gv.AuxInt {
    				return false
    			}
    			if !reflect.DeepEqual(fv.Aux, gv.Aux) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:01:04 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/reflect/TypeResolverTest.java

                .resolveType(subtype));
      }
    
      public <T> void testWhere_mapFromBoundedWildcard() {
        Type subtype = new TypeCapture<TypedKeyMap<T>>() {}.capture();
        // TODO(benyu): This should check equality to an expected value, see discussion in cl/98674873
        Type unused =
            new TypeResolver()
                .where(
                    new TypeCapture<Map<Integer, T>>() {}.capture(),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  5. src/sync/atomic/value.go

    		}
    		// First store completed. Check type and overwrite data.
    		if typ != np.typ {
    			panic("sync/atomic: compare and swap of inconsistently typed value into Value")
    		}
    		// Compare old and current via runtime equality check.
    		// This allows value types to be compared, something
    		// not offered by the package functions.
    		// CompareAndSwapPointer below only ensures vp.data
    		// has not changed since LoadPointer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:48:55 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. pkg/registry/admissionregistration/validatingadmissionpolicy/strategy.go

    limitations under the License.
    */
    
    package validatingadmissionpolicy
    
    import (
    	"context"
    
    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    	"k8s.io/apiserver/pkg/authorization/authorizer"
    	"k8s.io/apiserver/pkg/storage/names"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. pkg/registry/batch/cronjob/strategy.go

    limitations under the License.
    */
    
    package cronjob
    
    import (
    	"context"
    	"fmt"
    	"strings"
    
    	batchv1beta1 "k8s.io/api/batch/v1beta1"
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	utilvalidation "k8s.io/apimachinery/pkg/util/validation"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 15:14:03 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  8. pkg/registry/flowcontrol/prioritylevelconfiguration/strategy.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package prioritylevelconfiguration
    
    import (
    	"context"
    
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    	genericapirequest "k8s.io/apiserver/pkg/endpoints/request"
    	"k8s.io/apiserver/pkg/storage/names"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 20:55:50 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. pkg/registry/networking/ingress/storage/storage_test.go

    limitations under the License.
    */
    
    package storage
    
    import (
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/fields"
    	"k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/util/intstr"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 09:01:21 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/client-services/src/main/java/org/gradle/internal/daemon/client/serialization/ClientSidePayloadClassLoaderRegistry.java

                        // MB: I think ^ refers to the first capable classloader loading the class. This could be different
                        // from the loader which originally loaded it, which could pose equality and lifecycle issues.
                        for (ClassLoader candidate : candidates) {
                            try {
                                return candidate.loadClass(className);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top