Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 711 for identical (0.49 sec)

  1. plugin/pkg/auth/authorizer/node/graph_populator.go

    	g.updatePV(nil, obj)
    }
    
    func (g *graphPopulator) updatePV(oldObj, obj interface{}) {
    	pv := obj.(*corev1.PersistentVolume)
    	// TODO: skip add if uid, pvc, and secrets are all identical between old and new
    	g.graph.AddPV(pv)
    }
    
    func (g *graphPopulator) deletePV(obj interface{}) {
    	if tombstone, ok := obj.(cache.DeletedFinalStateUnknown); ok {
    		obj = tombstone.Obj
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/jvm/toolchain/internal/operations/JavaToolchainUsageProgressDetails.java

             */
            String getJvmName();
    
            /**
             * Returns Java VM version such as {@code 17.0.3.1+2-LTS}.
             * <p>
             * This value is identical to {@link #getRuntimeVersion()} for most of the vendors,
             * but could still differ for example by not including the language version.
             */
            String getJvmVersion();
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/conversion.go

    	if len(out.Versions) == 0 {
    		return nil
    	}
    
    	// Copy versions[0] to version
    	out.Version = out.Versions[0].Name
    
    	// If versions[*].{subresources,schema,additionalPrinterColumns,selectableFields} are identical, move to spec
    	subresources := out.Versions[0].Subresources
    	subresourcesIdentical := true
    	validation := out.Versions[0].Schema
    	validationIdentical := true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. src/math/const.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package math provides basic constants and mathematical functions.
    //
    // This package does not guarantee bit-identical results across architectures.
    package math
    
    // Mathematical constants.
    const (
    	E   = 2.71828182845904523536028747135266249775724709369995957496696763 // https://oeis.org/A001113
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 21 14:07:39 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/lookup.go

    	m   map[*Named][]*Named
    }
    
    func (l *instanceLookup) lookup(inst *Named) *Named {
    	for _, t := range l.buf {
    		if t != nil && Identical(inst, t) {
    			return t
    		}
    	}
    	for _, t := range l.m[inst.Origin()] {
    		if Identical(inst, t) {
    			return t
    		}
    	}
    	return nil
    }
    
    func (l *instanceLookup) add(inst *Named) {
    	for i, t := range l.buf {
    		if t == nil {
    			l.buf[i] = inst
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. src/go/types/lookup.go

    	m   map[*Named][]*Named
    }
    
    func (l *instanceLookup) lookup(inst *Named) *Named {
    	for _, t := range l.buf {
    		if t != nil && Identical(inst, t) {
    			return t
    		}
    	}
    	for _, t := range l.m[inst.Origin()] {
    		if Identical(inst, t) {
    			return t
    		}
    	}
    	return nil
    }
    
    func (l *instanceLookup) add(inst *Named) {
    	for i, t := range l.buf {
    		if t == nil {
    			l.buf[i] = inst
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. src/internal/reflectlite/type.go

    func directlyAssignable(T, V *abi.Type) bool {
    	// x's type V is identical to T?
    	if T == V {
    		return true
    	}
    
    	// Otherwise at least one of T and V must not be defined
    	// and they must have the same kind.
    	if T.HasName() && V.HasName() || T.Kind() != V.Kind() {
    		return false
    	}
    
    	// x's type T and V must  have identical underlying types.
    	return haveIdenticalUnderlyingType(T, V, true)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. pkg/proxy/endpointslicecache_test.go

    	}
    
    	testCases := map[string]struct {
    		cache         *EndpointSliceCache
    		initialSlice  *discovery.EndpointSlice
    		updatedSlice  *discovery.EndpointSlice
    		expectChanged bool
    	}{
    		"identical slices, ports only": {
    			cache: NewEndpointSliceCache("", v1.IPv4Protocol, nil, nil),
    			initialSlice: &discovery.EndpointSlice{
    				ObjectMeta: objMeta,
    				Ports:      []discovery.EndpointPort{port80},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/MultipartBody.kt

        /**
         * The "multipart/alternative" type is syntactically identical to "multipart/mixed", but the
         * semantics are different. In particular, each of the body parts is an "alternative" version of
         * the same information.
         */
        @JvmField
        val ALTERNATIVE = "multipart/alternative".toMediaType()
    
        /**
         * This type is syntactically identical to "multipart/mixed", but the semantics are different.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/instantiate_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	if res1 == res2 {
    		t.Errorf("instance from pkg1 (%s) is pointer-equivalent to instance from pkg2 (%s)", res1, res2)
    	}
    	if Identical(res1, res2) {
    		t.Errorf("instance from pkg1 (%s) is identical to instance from pkg2 (%s)", res1, res2)
    	}
    }
    
    func TestMethodInstantiation(t *testing.T) {
    	const prefix = `package p
    
    type T[P any] struct{}
    
    var X T[int]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 28 17:58:07 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top