Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 411 for norm (0.05 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/Sources.java

            @Override
            @Nullable
            public ModelSource resolve(@Nonnull ModelLocator locator, @Nonnull String relative) {
                String norm = relative.replace('\\', File.separatorChar).replace('/', File.separatorChar);
                Path path = getPath().getParent().resolve(norm);
                Path relatedPom = locator.locateExistingPom(path);
                if (relatedPom != null) {
                    return new BuildPathSource(relatedPom);
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-02-07 00:45
    - 8K bytes
    - Viewed (0)
  2. gorm.go

    package gorm
    
    import (
    	"context"
    	"database/sql"
    	"fmt"
    	"reflect"
    	"sort"
    	"sync"
    	"time"
    
    	"gorm.io/gorm/clause"
    	"gorm.io/gorm/logger"
    	"gorm.io/gorm/schema"
    )
    
    // for Config.cacheStore store PreparedStmtDB key
    const preparedStmtDBKey = "preparedStmt"
    
    // Config GORM config
    type Config struct {
    	// GORM perform single create, update, delete operations in transactions by default to ensure database data integrity
    Registered: 2025-05-25 09:35
    - Last Modified: 2025-05-25 07:40
    - 12.6K bytes
    - Viewed (0)
  3. docs/uk/docs/tutorial/request-form-models.md

    # Моделі форм (Form Models)
    
    У FastAPI Ви можете використовувати **Pydantic-моделі** для оголошення **полів форми**.
    
    /// info | Інформація
    
    Щоб використовувати форми, спочатку встановіть <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">python-multipart</a>.
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-02-20 14:16
    - 3.3K bytes
    - Viewed (0)
  4. RELEASE.md

        `convolutional_orthogonal_2D`, `convolutional_orthogonal_3D`) have
        consistent behavior with the `tf.initializers.orthogonal` initializer, i.e.
        scale the output l2-norm by `gain` and NOT by `sqrt(gain)`. (Note that these
        functions are currently in `tf.contrib` which is not guaranteed backward
        compatible).
    
    ## Bug Fixes and Other Changes
    
    *   Documentation
    Registered: 2025-05-27 12:39
    - Last Modified: 2025-04-21 16:40
    - 738.1K bytes
    - Viewed (1)
  5. LICENSE

          exercising permissions granted by this License.
    
          "Source" form shall mean the preferred form for making modifications,
          including but not limited to software source code, documentation
          source, and configuration files.
    
          "Object" form shall mean any form resulting from mechanical
          transformation or translation of a Source form, including but
          not limited to compiled object code, generated documentation,
    Registered: 2025-05-28 11:36
    - Last Modified: 2025-05-07 12:40
    - 23.1K bytes
    - Viewed (0)
  6. licenses/github.com/cheggaaa/pb/v3/LICENSE

    * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
    
    Registered: 2025-05-28 22:53
    - Last Modified: 2025-01-24 17:47
    - 1.4K bytes
    - Viewed (0)
  7. LICENSES/vendor/github.com/grpc-ecosystem/grpc-gateway/v2/LICENSE

          this list of conditions and the following disclaimer.
    
        * Redistributions in binary form must reproduce the above copyright notice,
          this list of conditions and the following disclaimer in the documentation
          and/or other materials provided with the distribution.
    
        * Neither the name of Gengo, Inc. nor the names of its
          contributors may be used to endorse or promote products derived from this
    Registered: 2025-05-30 09:05
    - Last Modified: 2025-05-16 01:19
    - 1.6K bytes
    - Viewed (0)
  8. fastapi/dependencies/utils.py

    from typing_extensions import Annotated, get_args, get_origin
    
    multipart_not_installed_error = (
        'Form data requires "python-multipart" to be installed. \n'
        'You can install "python-multipart" with: \n\n'
        "pip install python-multipart\n"
    )
    multipart_incorrect_install_error = (
        'Form data requires "python-multipart" to be installed. '
        'It seems you installed "multipart" instead. \n'
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-03-23 20:48
    - 35.1K bytes
    - Viewed (3)
  9. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/-HostnamesCommon.kt

        address[b++] = value.toByte()
      }
    
      // Check for too few groups. We wanted exactly four.
      return b == addressOffset + 4
    }
    
    /** Encodes an IPv6 address in canonical form according to RFC 5952. */
    internal fun inet6AddressToAscii(address: ByteArray): String {
      // Go through the address looking for the longest run of 0s. Each group is 2-bytes.
    Registered: 2025-05-30 11:42
    - Last Modified: 2025-03-19 19:25
    - 11.2K bytes
    - Viewed (0)
  10. CREDITS

          exercising permissions granted by this License.
    
          "Source" form shall mean the preferred form for making modifications,
          including but not limited to software source code, documentation
          source, and configuration files.
    
          "Object" form shall mean any form resulting from mechanical
          transformation or translation of a Source form, including but
          not limited to compiled object code, generated documentation,
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-03-13 05:29
    - 1.8M bytes
    - Viewed (0)
Back to top