Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 939 for oldR (0.82 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/RunnerFactory.groovy

                extraArgs += ["-I", init.canonicalPath]
            }
            return runner.withArguments([runner.arguments, extraArgs].flatten())
                .ignoreDeprecationWarningsIf(AGP_VERSIONS.isOld(agpVersion), "Old AGP version")
        }
    
        private SmokeTestGradleRunner newKotlinRunner(boolean parallel, VersionNumber kotlinVersion, List<String> tasks) {
            List<String> args = []
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/util.go

    // Update returns true if and only if 'current' is the highest value ever seen.
    func (hwm *HighWaterMark) Update(current int64) bool {
    	for {
    		old := atomic.LoadInt64((*int64)(hwm))
    		if current <= old {
    			return false
    		}
    		if atomic.CompareAndSwapInt64((*int64)(hwm), old, current) {
    			return true
    		}
    	}
    }
    
    // GetCurrentResourceVersionFromStorage gets the current resource version from the underlying storage engine.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:05:06 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. pkg/kube/krt/collection.go

    		iKey := GetKey(ev.Latest())
    		iObj := h.parent.GetKey(iKey)
    		if iObj == nil {
    			ev.Event = controllers.EventDelete
    			if ev.Old == nil {
    				// This was an add, now its a Delete. Make sure we don't have Old and New nil, which we claim to be illegal
    				ev.Old = ev.New
    			}
    			ev.New = nil
    		} else {
    			ev.New = iObj
    		}
    		items[idx] = ev
    	}
    	h.onPrimaryInputEventLocked(items)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modcmd/vendor.go

    					if replacementWritten[r.Old] {
    						// We already recorded this replacement.
    						continue
    					}
    					replacementWritten[r.Old] = true
    					rNew := modload.Replacement(r.Old)
    					if rNew == (module.Version{}) {
    						// There is no replacement. Don't try to write it.
    						continue
    					}
    
    					line := moduleLine(r.Old, rNew)
    					buf.WriteString(line)
    					if cfg.BuildV {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. platforms/software/maven/build.gradle.kts

        crossVersionTestDistributionRuntimeOnly(project(":distributions-jvm"))
    }
    
    strictCompile {
        ignoreDeprecations() // old 'maven' publishing mechanism: types are deprecated
        ignoreRawTypes() // old 'maven' publishing mechanism: raw types used in public API
    }
    
    packageCycles {
        excludePatterns.add("org/gradle/api/publication/maven/internal/**")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. src/internal/runtime/atomic/atomic_arm64.go

    //go:noescape
    func Anduintptr(ptr *uintptr, val uintptr) uintptr
    
    //go:noescape
    func Oruintptr(ptr *uintptr, val uintptr) uintptr
    
    //go:noescape
    func Cas64(ptr *uint64, old, new uint64) bool
    
    //go:noescape
    func CasRel(ptr *uint32, old, new uint32) bool
    
    //go:noescape
    func Store(ptr *uint32, val uint32)
    
    //go:noescape
    func Store8(ptr *uint8, val uint8)
    
    //go:noescape
    func Store64(ptr *uint64, val uint64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. pkg/api/persistentvolume/util_test.go

    			expectOldSpec: nil,
    		},
    		"enabled vac preserve volume attributes class name when both old and new have it": {
    			vacEnabled:    true,
    			newSpec:       specWithVACName(vacName),
    			expectNewSpec: specWithVACName(vacName),
    			oldSpec:       specWithVACName(vacName),
    			expectOldSpec: specWithVACName(vacName),
    		},
    		"disabled vac old pv had volume attributes class name": {
    			vacEnabled:    false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. src/runtime/proc.go

    //go:nosplit
    func exitsyscallfast(oldp *p) bool {
    	// Freezetheworld sets stopwait but does not retake P's.
    	if sched.stopwait == freezeStopWait {
    		return false
    	}
    
    	// Try to re-acquire the last P.
    	trace := traceAcquire()
    	if oldp != nil && oldp.status == _Psyscall && atomic.Cas(&oldp.status, _Psyscall, _Pidle) {
    		// There's a cpu for us, so we can run.
    		wirep(oldp)
    		exitsyscallfast_reacquired(trace)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  9. src/internal/runtime/atomic/atomic_loong64.go

    //go:noescape
    func Oruintptr(ptr *uintptr, val uintptr) uintptr
    
    // NOTE: Do not add atomicxor8 (XOR is not idempotent).
    
    //go:noescape
    func Cas64(ptr *uint64, old, new uint64) bool
    
    //go:noescape
    func CasRel(ptr *uint32, old, new uint32) bool
    
    //go:noescape
    func Store(ptr *uint32, val uint32)
    
    //go:noescape
    func Store8(ptr *uint8, val uint8)
    
    //go:noescape
    func Store64(ptr *uint64, val uint64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. src/runtime/lock_futex.go

    		gp.stackguard0 = stackPreempt
    	}
    }
    
    // One-time notifications.
    func noteclear(n *note) {
    	n.key = 0
    }
    
    func notewakeup(n *note) {
    	old := atomic.Xchg(key32(&n.key), 1)
    	if old != 0 {
    		print("notewakeup - double wakeup (", old, ")\n")
    		throw("notewakeup - double wakeup")
    	}
    	futexwakeup(key32(&n.key), 1)
    }
    
    func notesleep(n *note) {
    	gp := getg()
    	if gp != gp.m.g0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:34 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top