Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 321 for equivalently (0.39 sec)

  1. src/compress/gzip/gzip.go

    	}
    	*z = Writer{
    		Header: Header{
    			OS: 255, // unknown
    		},
    		w:          w,
    		level:      level,
    		compressor: compressor,
    	}
    }
    
    // Reset discards the [Writer] z's state and makes it equivalent to the
    // result of its original state from [NewWriter] or [NewWriterLevel], but
    // writing to w instead. This permits reusing a [Writer] rather than
    // allocating a new one.
    func (z *Writer) Reset(w io.Writer) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/provider/MapProperty.java

         *
         * <p>The returned provider will track the value of this property and query its value when it is queried.</p>
         *
         * <p>This method is equivalent to
         *
         * <pre><code>
         *     map(m -&gt; m.get(key))
         * </code></pre>
         *
         * but possibly more efficient.
         *
         * @param key the key
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 16:25:03 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DependenciesExtensionModule.java

     * </ul>
     * </p>
     *
     * <p>
     * There are {@code call(...)} equivalents for all the {@code add(...)} and {@code addConstraint(...)} methods in {@link DependencyCollector}.
     * </p>
     *
     * <p>
     * There are {@code call(...)} equivalents for all the {@code modify(...)} methods in {@link DependencyModifier}.
     * </p>
     *
     * @see Dependencies
     * @see DependencyCollector
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_control.go

    	} else if equalCount > 0 {
    		// if the equivalent revision is not immediately prior we will roll back by incrementing the
    		// Revision of the equivalent revision
    		updateRevision, err = ssc.controllerHistory.UpdateControllerRevision(
    			equalRevisions[equalCount-1],
    			updateRevision.Revision)
    		if err != nil {
    			return nil, nil, collisionCount, err
    		}
    	} else {
    		//if there is no equivalent revision we create a new one
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/MapMakerInternalMap.java

              if (e.getHash() == hash
                  && entryKey != null
                  && map.keyEquivalence.equivalent(key, entryKey)) {
                V entryValue = e.getValue();
    
                boolean explicitRemoval = false;
                if (map.valueEquivalence().equivalent(value, entryValue)) {
                  explicitRemoval = true;
                } else if (isCollected(e)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  6. docs/pt/docs/advanced/benchmarks.md

    Porém, ao verificar benchmarks e comparações você deve prestar atenção ao seguinte:
    
    ## Benchmarks e velocidade
    
    Quando você verifica os benchmarks, é comum ver diversas ferramentas de diferentes tipos comparados como se fossem equivalentes.
    
    Especificamente, para ver o Uvicorn, Starlette e FastAPI comparados entre si (entre diversas outras ferramentas).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:11 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. src/math/rand/v2/pcg.go

    // https://numpy.org/devdocs/reference/random/upgrading-pcg64.html
    // https://github.com/imneme/pcg-cpp/commit/871d0494ee9c9a7b7c43f753e3d8ca47c26f8005
    
    // A PCG is a PCG generator with 128 bits of internal state.
    // A zero PCG is equivalent to NewPCG(0, 0).
    type PCG struct {
    	hi uint64
    	lo uint64
    }
    
    // NewPCG returns a new PCG seeded with the given values.
    func NewPCG(seed1, seed2 uint64) *PCG {
    	return &PCG{seed1, seed2}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. src/go/constant/example_test.go

    		case constant.Bool:
    			vs[i] = constant.UnaryOp(token.NOT, v, 0)
    
    		case constant.Float:
    			vs[i] = constant.UnaryOp(token.SUB, v, 0)
    
    		case constant.Int:
    			// Use 16-bit precision.
    			// This would be equivalent to ^uint16(v).
    			vs[i] = constant.UnaryOp(token.XOR, v, 16)
    		}
    	}
    
    	for _, v := range vs {
    		fmt.Println(v)
    	}
    
    	// Output:
    	//
    	// false
    	// -2.7
    	// 65493
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ImmutableSetMultimap.java

       *     Stream.of("banana", "apple", "carrot", "asparagus", "cherry")
       *         .collect(toImmutableSetMultimap(str -> str.charAt(0), str -> str.substring(1)));
       *
       * // is equivalent to
       *
       * static final Multimap<Character, String> FIRST_LETTER_MULTIMAP =
       *     new ImmutableSetMultimap.Builder<Character, String>()
       *         .put('b', "anana")
       *         .putAll('a', "pple", "sparagus")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  10. src/strconv/atoi.go

    // license that can be found in the LICENSE file.
    
    package strconv
    
    import (
    	"errors"
    	"internal/stringslite"
    )
    
    // lower(c) is a lower-case letter if and only if
    // c is either that lower-case letter or the equivalent upper-case letter.
    // Instead of writing c == 'x' || c == 'X' one can write lower(c) == 'x'.
    // Note that lower of non-letters can produce other non-letters.
    func lower(c byte) byte {
    	return c | ('x' - 'X')
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:24:26 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top