Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 131 for avoiding (0.11 sec)

  1. src/strconv/atof.go

    }
    var float32pow10 = []float32{1e0, 1e1, 1e2, 1e3, 1e4, 1e5, 1e6, 1e7, 1e8, 1e9, 1e10}
    
    // If possible to convert decimal representation to 64-bit float f exactly,
    // entirely in floating-point math, do so, avoiding the expense of decimalToFloatBits.
    // Three common cases:
    //
    //	value is exact integer
    //	value is exact integer * exact power of ten
    //	value is exact integer / exact power of ten
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 18:50:50 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  2. src/runtime/coro.go

    		// a wasted loop iteration.
    		// The cas will also sync c.gp's
    		// memory enough that the next iteration of the racy load
    		// should see the correct value.
    		// We are avoiding the atomic load to keep this path
    		// as lightweight as absolutely possible.
    		// (The atomic load is free on x86 but not free elsewhere.)
    		next := c.gp
    		if next.ptr() == nil {
    			throw("coroswitch on exited coro")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/FluentFuture.java

       *     different kind of exception, that exception itself. To avoid hiding bugs and other
       *     unrecoverable errors, callers should prefer more specific types, avoiding {@code
       *     Throwable.class} in particular.
       * @param fallback the {@link Function} to be called if the input fails with the expected
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 11 19:08:44 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/asm/ClassDependenciesVisitor.java

            moduleName = name;
            dependencyToAllReason = "module-info of '" + name + "' has changed";
            return null;
        }
    
        // performs a fast analysis of classes referenced in bytecode (method bodies)
        // avoiding us to implement a costly visitor and potentially missing edge cases
        private void collectRemainingClassDependencies(ClassReader reader) {
            ClassAnalysisUtils.getClassDependencies(reader, classDescriptor -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 13:49:15 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/hash/BloomFilterStrategies.java

          }
          return true;
        }
      },
      /**
       * This strategy uses all 128 bits of {@link Hashing#murmur3_128} when hashing. It looks different
       * from the implementation in MURMUR128_MITZ_32 because we're avoiding the multiplication in the
       * loop and doing a (much simpler) += hash2. We're also changing the index to a positive number by
       * AND'ing with Long.MAX_VALUE instead of flipping the bits.
       */
      MURMUR128_MITZ_64() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/conc_alloc.go

    type allocProblemItem struct {
    	target     float64
    	lowerBound float64
    	upperBound float64
    }
    
    // relativeAllocItem is like allocProblemItem but with target avoiding zero and the bounds divided by the target
    type relativeAllocItem struct {
    	target             float64
    	relativeLowerBound float64
    	relativeUpperBound float64
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/hash/BloomFilterStrategies.java

          }
          return true;
        }
      },
      /**
       * This strategy uses all 128 bits of {@link Hashing#murmur3_128} when hashing. It looks different
       * from the implementation in MURMUR128_MITZ_32 because we're avoiding the multiplication in the
       * loop and doing a (much simpler) += hash2. We're also changing the index to a positive number by
       * AND'ing with Long.MAX_VALUE instead of flipping the bits.
       */
      MURMUR128_MITZ_64() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/cse.go

    	for {
    		changed := false
    
    		// partition can grow in the loop. By not using a range loop here,
    		// we process new additions as they arrive, avoiding O(n^2) behavior.
    		for i := 0; i < len(partition); i++ {
    			e := partition[i]
    
    			if opcodeTable[e[0].Op].commutative {
    				// Order the first two args before comparison.
    				for _, v := range e {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/status/naming_controller.go

    	// The Establishing Controller will see the NamesAccepted condition when it arrives through the shared informer.
    	// At that time the API endpoint handler will serve the endpoint, avoiding a race
    	// which we had if we set Established to true here.
    	establishedCondition := apiextensionsv1.CustomResourceDefinitionCondition{
    		Type:    apiextensionsv1.Established,
    		Status:  apiextensionsv1.ConditionFalse,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  10. src/runtime/os_darwin.go

    // not support timed waits but is async-signal-safe.
    func sigNoteSetup(*note) {
    	if sigNoteRead != 0 || sigNoteWrite != 0 {
    		// Generalizing this would require avoiding the pipe-fork-closeonexec race, which entangles syscall.
    		throw("duplicate sigNoteSetup")
    	}
    	var errno int32
    	sigNoteRead, sigNoteWrite, errno = pipe()
    	if errno != 0 {
    		throw("pipe failed")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top