Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for vp (0.21 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/SortedMapDiffUtil.java

        private SortedMapDiffUtil() {}
    
        public static <K, VP, VC> boolean diff(SortedMap<K, ? extends VP> previous, SortedMap<K, ? extends VC> current, PropertyDiffListener<K, VP, VC> diffListener) {
            Iterator<? extends Map.Entry<K, ? extends VC>> currentEntries = current.entrySet().iterator();
            Iterator<? extends Map.Entry<K, ? extends VP>> previousEntries = previous.entrySet().iterator();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. src/sync/atomic/value.go

    // It returns nil if there has been no call to Store for this Value.
    func (v *Value) Load() (val any) {
    	vp := (*efaceWords)(unsafe.Pointer(v))
    	typ := LoadPointer(&vp.typ)
    	if typ == nil || typ == unsafe.Pointer(&firstStoreInProgress) {
    		// First store not yet completed.
    		return nil
    	}
    	data := LoadPointer(&vp.data)
    	vlp := (*efaceWords)(unsafe.Pointer(&val))
    	vlp.typ = typ
    	vlp.data = data
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:48:55 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AbstractAlignmentSpec.groovy

                        it.seenVersions.each { v ->
                            it.virtualPlatforms.each { vp ->
                                virtualPlatforms << "${vp}:$v"
                            }
                        }
                        it.virtualPlatforms.each { vp ->
                            resolvesToVirtual << "${vp}:$it.alignsTo"
                        }
                    }
                    if (it.publishedPlatforms) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9K bytes
    - Viewed (0)
  4. src/math/rand/v2/chacha8_test.go

    	"chacha8:\x00\x00\x00\x00\x00\x00\x00>K3\x9bB!,\x94\x9d\x975\xce'O_t\xee|\xb21\x87\xbb\xbb\xfd)\x8f\xe52\x01\vP\fk",
    	"chacha8:\x00\x00\x00\x00\x00\x00\x00?K3\x9bB!,\x94\x9d\x975\xce'O_t\xee|\xb21\x87\xbb\xbb\xfd)\x8f\xe52\x01\vP\fk",
    	"chacha8:\x00\x00\x00\x00\x00\x00\x00@K3\x9bB!,\x94\x9d\x975\xce'O_t\xee|\xb21\x87\xbb\xbb\xfd)\x8f\xe52\x01\vP\fk",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 55K bytes
    - Viewed (0)
  5. src/go/types/operand.go

    	// assignable to T.
    	if Vp != nil && !hasName(T) {
    		x := *x // don't clobber outer x
    		ok := false
    		code := IncompatibleAssign
    		Vp.is(func(V *term) bool {
    			if V == nil {
    				return false // no specific types
    			}
    			x.typ = V.typ
    			ok, code = x.assignableTo(check, T, cause)
    			if !ok {
    				errorf("cannot assign %s (in %s) to %s", V.typ, Vp, origT)
    				return false
    			}
    			return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/PropertyDiffListener.java

     * limitations under the License.
     */
    
    package org.gradle.internal.execution.history.changes;
    
    public interface PropertyDiffListener<K, VP, VC> {
        boolean removed(K previousProperty);
    
        boolean added(K currentProperty);
    
        boolean updated(K property, VP previous, VC current);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 865 bytes
    - Viewed (0)
  7. src/go/types/conversions.go

    				}
    				if !x.convertibleTo(check, T.typ, cause) {
    					errorf("cannot convert %s (in %s) to type %s (in %s)", V.typ, Vp, T.typ, Tp)
    					return false
    				}
    				return true
    			})
    		})
    	case Vp != nil:
    		x := *x // don't clobber outer x
    		return Vp.is(func(V *term) bool {
    			if V == nil {
    				return false // no specific types
    			}
    			x.typ = V.typ
    			if !x.convertibleTo(check, T, cause) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:51:00 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/reconciler/reconstruct_test.go

    			mountPaths := []string{}
    
    			// create pod and volume directories so as reconciler can find them.
    			for _, volumePath := range tc.volumePaths {
    				vp := filepath.Join(tmpKubeletPodDir, volumePath)
    				mountPaths = append(mountPaths, vp)
    				os.MkdirAll(vp, 0755)
    			}
    
    			rc, fakePlugin := getReconciler(tmpKubeletDir, t, mountPaths, nil /*custom kubeclient*/)
    			rcInstance, _ := rc.(*reconciler)
    
    			// Act
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/conversions.go

    				}
    				if !x.convertibleTo(check, T.typ, cause) {
    					errorf("cannot convert %s (in %s) to type %s (in %s)", V.typ, Vp, T.typ, Tp)
    					return false
    				}
    				return true
    			})
    		})
    	case Vp != nil:
    		x := *x // don't clobber outer x
    		return Vp.is(func(V *term) bool {
    			if V == nil {
    				return false // no specific types
    			}
    			x.typ = V.typ
    			if !x.convertibleTo(check, T, cause) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:51:00 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/operand.go

    	// assignable to T.
    	if Vp != nil && !hasName(T) {
    		x := *x // don't clobber outer x
    		ok := false
    		code := IncompatibleAssign
    		Vp.is(func(V *term) bool {
    			if V == nil {
    				return false // no specific types
    			}
    			x.typ = V.typ
    			ok, code = x.assignableTo(check, T, cause)
    			if !ok {
    				errorf("cannot assign %s (in %s) to %s", V.typ, Vp, origT)
    				return false
    			}
    			return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top