Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 21 for newSet (0.08 seconds)

  1. android/guava/src/com/google/common/collect/HashBiMap.java

       * the position of the new key if it was previously present.
       */
      private void replaceKeyInEntry(int entry, @ParametricNullness K newKey, boolean force) {
        checkArgument(entry != ABSENT);
        int newKeyHash = Hashing.smearedHash(newKey);
        int newKeyIndex = findEntryByKey(newKey, newKeyHash);
    
        int newPredecessor = lastInInsertionOrder;
        int newSuccessor = ENDPOINT;
        if (newKeyIndex != ABSENT) {
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue Dec 16 14:46:34 GMT 2025
    - 37.1K bytes
    - Click Count (0)
  2. build-logic-commons/build-platform/build.gradle.kts

    val spockVersion = if (isGroovy4) "2.3-groovy-4.0" else "2.3-groovy-3.0"
    val groovyGroup = if (isGroovy4) "org.apache.groovy" else "org.codehaus.groovy"
    val asmVersion = "9.9"
    // To try out newer kotlin versions
    val kotlinVersion = providers.gradleProperty("buildKotlinVersion")
        .getOrElse(embeddedKotlinVersion)
    
    dependencies {
        constraints {
            api("org.gradle.guides:gradle-guides-plugin:0.24.0")
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Tue Dec 30 10:16:30 GMT 2025
    - 4.6K bytes
    - Click Count (0)
  3. docs/en/docs/python-types.md

    #### Newer versions of Python { #newer-versions-of-python }
    
    The syntax using `typing` is **compatible** with all versions, from Python 3.6 to the latest ones, including Python 3.9, Python 3.10, etc.
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 20:41:43 GMT 2025
    - 15.6K bytes
    - Click Count (0)
  4. api/go1.26.txt

    pkg crypto/hpke, func NewHybridPublicKey(crypto.Encapsulator, *ecdh.PublicKey) (PublicKey, error) #75300
    pkg crypto/hpke, func NewKDF(uint16) (KDF, error) #75300
    pkg crypto/hpke, func NewKEM(uint16) (KEM, error) #75300
    pkg crypto/hpke, func NewMLKEMPrivateKey(crypto.Decapsulator) (PrivateKey, error) #75300
    pkg crypto/hpke, func NewMLKEMPublicKey(crypto.Encapsulator) (PublicKey, error) #75300
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Thu Dec 11 19:57:52 GMT 2025
    - 11.5K bytes
    - Click Count (0)
  5. apache-maven/src/assembly/maven/bin/mvn

        exit 1
      fi
    fi
    
    if ! "$JAVACMD" --enable-native-access=ALL-UNNAMED -version >/dev/null 2>&1; then
      echo "Error: Apache Maven 4.x requires Java 17 or newer to run." >&2
      "$JAVACMD" -version >&2
      echo "Please upgrade your Java installation or set JAVA_HOME to point to a compatible JDK." >&2
      exit 1
    fi
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Dec 10 16:40:06 GMT 2025
    - 9.2K bytes
    - Click Count (0)
  6. apache-maven/src/assembly/maven/bin/mvn.cmd

      goto error
    )
    
    @REM Check Java version by testing the Java 17+ flag
    "%JAVACMD%" --enable-native-access=ALL-UNNAMED -version >nul 2>&1
    if ERRORLEVEL 1 (
        echo Error: Apache Maven 4.x requires Java 17 or newer to run. >&2
        "%JAVACMD%" -version >&2
        echo Please upgrade your Java installation or set JAVA_HOME to point to a compatible JDK. >&2
        goto error
    )
    
    :chkMHome
    set "MAVEN_HOME=%~dp0"
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Dec 10 16:40:06 GMT 2025
    - 10.7K bytes
    - Click Count (3)
  7. impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java

                    + "If you intent your build to be consumed with Maven 3 projects, you need to remove "
                    + "the features that request a newer model version.  If you're fine with having the "
                    + "consumer POM not consumable with Maven 3, add the `preserve.model.version='true'` "
                    + "attribute on the <project> element of your POM.");
        }
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Nov 27 07:40:26 GMT 2025
    - 21.2K bytes
    - Click Count (0)
  8. lib/fips140/v1.1.0-rc1.zip

    divide 8 are more complex to implement, but // are likely to be more efficient if necessary. table := [(1 << 4) - 1]*Nat{ // table[i] = x ^ (i+1) // newNat calls are unrolled so they are allocated on the stack. NewNat(), NewNat(), NewNat(), NewNat(), NewNat(), NewNat(), NewNat(), NewNat(), NewNat(), NewNat(), NewNat(), NewNat(), NewNat(), NewNat(), NewNat(), } table[0].set(x).montgomeryRepresenta(m) for i := 1; i < len(table); i++ { table[i].montgomeryMul(table[i-1], table[0], m) } out.resetFor(m) out.limbs[0]...
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Thu Dec 11 16:27:41 GMT 2025
    - 663K bytes
    - Click Count (0)
  9. docs/ru/docs/python-types.md

    Чтобы объявлять эти типы и их внутренние типы, вы можете использовать стандартный модуль Python `typing`. Он существует специально для поддержки подсказок типов.
    
    #### Новые версии Python { #newer-versions-of-python }
    
    Синтаксис с использованием `typing` **совместим** со всеми версиями, от Python 3.6 до самых новых, включая Python 3.9, Python 3.10 и т.д.
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 20:41:43 GMT 2025
    - 24.4K bytes
    - Click Count (0)
  10. docs/de/docs/python-types.md

    Um diese Typen und die inneren Typen zu deklarieren, können Sie Pythons Standardmodul `typing` verwenden. Es existiert speziell für die Unterstützung dieser Typhinweise.
    
    #### Neuere Python-Versionen { #newer-versions-of-python }
    
    Die Syntax, welche `typing` verwendet, ist **kompatibel** mit allen Versionen, von Python 3.6 aufwärts zu den neuesten, inklusive Python 3.9, Python 3.10, usw.
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 20:41:43 GMT 2025
    - 17.9K bytes
    - Click Count (1)
Back to Top