Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of about 10,000 for internally (0.21 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate.h

            nullptr);
    
    // Converts a TensorFlow V1 SavedModel stored in the directory with the given
    // `saved_model_dir` into a MLIR module. Creates MLIR entities into the
    // given MLIR `context`. This does not create session internally so it is faster
    // and does not perform any graph transformation.
    absl::StatusOr<mlir::OwningOpRef<mlir::ModuleOp>>
    SavedModelSignatureDefsToMlirImportLite(
        absl::string_view saved_model_dir,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. src/crypto/tls/tls.go

    // handshake as a whole.
    //
    // DialWithDialer interprets a nil configuration as equivalent to the zero
    // configuration; see the documentation of [Config] for the defaults.
    //
    // DialWithDialer uses context.Background internally; to specify the context,
    // use [Dialer.DialContext] with NetDialer set to the desired dialer.
    func DialWithDialer(dialer *net.Dialer, network, addr string, config *Config) (*Conn, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. docs/en/docs/advanced/behind-a-proxy.md

    ## Mounting a sub-application
    
    If you need to mount a sub-application (as described in [Sub Applications - Mounts](sub-applications.md){.internal-link target=_blank}) while also using a proxy with `root_path`, you can do it normally, as you would expect.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/internal/tasks/JvmConstants.java

         * be declared.
         *
         * @since 3.4
         */
        public static final String API_CONFIGURATION_NAME = "api";
    
        /**
         * The name of the implementation configuration, where dependencies that are only used internally by
         * a component should be declared.
         *
         * @since 3.4
         */
        public static final String IMPLEMENTATION_CONFIGURATION_NAME = "implementation";
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. src/runtime/libfuzzer_amd64.s

    // libFuzzer's compare hooks obtain the caller's address from the compiler
    // builtin __builtin_return_address. Since we invoke the hooks always
    // from the same native function, this builtin would always return the same
    // value. Internally, the libFuzzer hooks call through to the always inlined
    // HandleCmp and thus can't be mimicked without patching libFuzzer.
    //
    // We solve this problem via an inline assembly trampoline construction that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 04:57:07 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. docs/en/docs/fastapi-cli.md

    FastAPI CLI takes the path to your Python program and automatically detects the variable with the FastAPI (commonly named `app`) and how to import it, and then serves it.
    
    For production you would use `fastapi run` instead. 🚀
    
    Internally, **FastAPI CLI** uses <a href="https://www.uvicorn.org" class="external-link" target="_blank">Uvicorn</a>, a high-performance, production-ready, ASGI server. 😎
    
    ## `fastapi dev`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 23:39:50 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUError.h

     *  @see CU_ErrorAction
     */
    
    #ifdef CUNIT_BUILD_TESTS
    void test_cunit_CUError(void);
    #endif
    
    /* Internal function - users should not generally call this function */
    CU_EXPORT void CU_set_error(CU_ErrorCode error);
    /**<
     *  Sets the CUnit framework error code.
     *  This function is used internally by CUnit implementation functions
     *  when an error condition occurs within the framework.  It should
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. docs/en/docs/deployment/concepts.md

    * HAProxy
        * With an external component like Certbot for certificate renewals
    * Kubernetes with an Ingress Controller like Nginx
        * With an external component like cert-manager for certificate renewals
    * Handled internally by a cloud provider as part of their services (read below 👇)
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/feature/feature_support_checker.go

    	// initialzation, it can flip the support at runtime.
    	Supports(feature storage.Feature) bool
    	// CheckClient works with etcd client to recalcualte feature support and cache it internally.
    	// All etcd clients should support feature to cause `Supports` return true.
    	// If client A supports and client B doesn't support the feature, the `Supports` will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. fastapi/utils.py

    def generate_operation_id_for_path(
        *, name: str, path: str, method: str
    ) -> str:  # pragma: nocover
        warnings.warn(
            "fastapi.utils.generate_operation_id_for_path() was deprecated, "
            "it is not used internally, and will be removed soon",
            DeprecationWarning,
            stacklevel=2,
        )
        operation_id = f"{name}{path}"
        operation_id = re.sub(r"\W", "_", operation_id)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top