Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 143 for BREAK (0.08 sec)

  1. android/guava/src/com/google/common/cache/Striped64.java

                    busy = 0;
                  }
                  if (created) break;
                  continue; // Slot is now non-empty
                }
              }
              collide = false;
            } else if (!wasUncontended) // CAS already known to fail
            wasUncontended = true; // Continue after rehash
            else if (a.cas(v = a.value, fn(v, x))) break;
            else if (n >= NCPU || cells != as) collide = false; // At max size or stale
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/Striped64.java

                    busy = 0;
                  }
                  if (created) break;
                  continue; // Slot is now non-empty
                }
              }
              collide = false;
            } else if (!wasUncontended) // CAS already known to fail
            wasUncontended = true; // Continue after rehash
            else if (a.cas(v = a.value, fn(v, x))) break;
            else if (n >= NCPU || cells != as) collide = false; // At max size or stale
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/feature/feature.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package feature
    
    // Features carries feature gate values used by various plugins.
    // This struct allows us to break the dependency of the plugins on
    // the internal k8s features pkg.
    type Features struct {
    	EnableDynamicResourceAllocation              bool
    	EnableVolumeCapacityPriority                 bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. src/os/pidfd_linux.go

    		e      syscall.Errno
    	)
    	for {
    		_, _, e = syscall.Syscall6(syscall.SYS_WAITID, _P_PIDFD, handle, uintptr(unsafe.Pointer(&info)), syscall.WEXITED, uintptr(unsafe.Pointer(&rusage)), 0)
    		if e != syscall.EINTR {
    			break
    		}
    	}
    	if e != 0 {
    		return nil, NewSyscallError("waitid", e)
    	}
    	// Release the Process' handle reference, in addition to the reference
    	// we took above.
    	p.handlePersistentRelease(statusDone)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/hash/Striped64.java

                    busy = 0;
                  }
                  if (created) break;
                  continue; // Slot is now non-empty
                }
              }
              collide = false;
            } else if (!wasUncontended) // CAS already known to fail
            wasUncontended = true; // Continue after rehash
            else if (a.cas(v = a.value, fn(v, x))) break;
            else if (n >= NCPU || cells != as) collide = false; // At max size or stale
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/hash/Striped64.java

                    busy = 0;
                  }
                  if (created) break;
                  continue; // Slot is now non-empty
                }
              }
              collide = false;
            } else if (!wasUncontended) // CAS already known to fail
            wasUncontended = true; // Continue after rehash
            else if (a.cas(v = a.value, fn(v, x))) break;
            else if (n >= NCPU || cells != as) collide = false; // At max size or stale
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. cmd/batch-expire.go

    					} else {
    						stopFn(exp, err)
    						success = true
    						break
    					}
    				}
    				ri.trackMultipleObjectVersions(r.Bucket, exp, success)
    				if done {
    					break
    				}
    			}
    
    			if done {
    				return
    			}
    
    			// DeleteMultiple objects
    			toDelCopy := make([]ObjectToDelete, len(toDel))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 13:50:53 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. src/os/signal/doc.go

    an existing non-Go signal handler, that handler will be installed
    before raising the signal.
    
    # Windows
    
    On Windows a ^C (Control-C) or ^BREAK (Control-Break) normally cause
    the program to exit. If Notify is called for [os.Interrupt], ^C or ^BREAK
    will cause [os.Interrupt] to be sent on the channel, and the program will
    not exit. If Reset is called, or Stop is called on all channels passed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

        }
    
        suspend fun ReadContext.checkBuildScopedFingerprint(): CheckedFingerprint {
            // TODO: log some debug info
            while (true) {
                when (val input = read()) {
                    null -> break
                    is ConfigurationCacheFingerprint -> {
                        // An input that is not specific to a project. If it is out-of-date, then invalidate the whole cache entry and skip any further checks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. association.go

    									association.Error = err
    									break
    								}
    							}
    						}
    					}
    				}
    				break
    			}
    
    			association.Error = ErrInvalidValueOfLength
    			return
    		}
    
    		for i := 0; i < reflectValue.Len(); i++ {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:49:45 UTC 2024
    - 21.5K bytes
    - Viewed (0)
Back to top