Search Options

Results per page
Sort
Preferred Languages
Advance

Results 351 - 360 of 560 for Usages (0.04 sec)

  1. test-site/activator.bat

    1. @REM activatorconfig.txt found in the ACTIVATOR_HOME or ACTIVATOR_HOME/ACTIVATOR_VERSION
    2. @setlocal enabledelayedexpansion
    3.  
    4. @echo off
    5.  
    6. set "var1=%~1"
    7. if defined var1 (
    8. if "%var1%"=="help" (
    9. echo.
    10. echo Usage activator [options] [command]
    11. echo.
    12. echo Commands:
    13. echo ui Start the Activator UI
    14. echo new [name] [template-id] Create a new project with [name] using template [template-id]
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 7.2K bytes
    - Viewed (0)
  2. docs/pt/docs/advanced/settings.md

    1. ## Pydantic `Settings`
    2.  
    3. Por sorte, o Pydantic possui uma funcionalidade para lidar com essas configurações vindas de variáveis de ambiente utilizando <a href="https://docs.pydantic.dev/latest/usage/pydantic_settings/" class="external-link" target="_blank">Pydantic: Settings management</a>.
    4.  
    5. ### Instalando `pydantic-settings`
    6.  
    7. Primeiro, instale o pacote `pydantic-settings`:
    8.  
    9. <div class="termy">
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 17K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/response-model.md

    1. ///
    2.  
    3. /// info
    4.  
    5. You can also use:
    6.  
    7. * `response_model_exclude_defaults=True`
    8. * `response_model_exclude_none=True`
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  4. tensorflow/c/c_api_experimental.cc

    1. if (!status->status.ok()) {
    2. return 0;
    3. }
    4. return op_reg_data->op_def.is_stateful();
    5. }
    6.  
    7. void TF_InitMain(const char* usage, int* argc, char*** argv) {
    8. tensorflow::port::InitMain(usage, argc, argv);
    9. }
    10.  
    11. int TF_PickUnusedPortOrDie() {
    12. return tensorflow::internal::PickUnusedPortOrDie();
    13. }
    14.  
    15. TFE_TensorHandle* TFE_NewTensorHandleFromScalar(TF_DataType data_type,
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 16:27:48 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  5. docs/de/docs/tutorial/handling-errors.md

    1. Sie müssten beispielsweise einem Client sagen:
    2.  
    3. * Dass er nicht die notwendigen Berechtigungen hat, eine Aktion auszuführen.
    4. * Dass er zu einer Ressource keinen Zugriff hat.
    5. * Dass die Ressource, auf die er zugreifen möchte, nicht existiert.
    6. * usw.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. cni/pkg/nodeagent/podcgroupns.go

    1. // The expected cgroup format is "hierarchy-ID:controller-list:cgroup-path", and
    2. // this function will return an error if every cgroup does not meet that format.
    3. //
    4. // For more information, see:
    5. // - http://man7.org/linux/man-pages/man7/cgroups.7.html
    6. // - https://www.kernel.org/doc/Documentation/cgroup-v2.txt
    7. func GetCgroups(procCgroupData bytes.Buffer) ([]Cgroup, error) {
    8. reader := bytes.NewReader(procCgroupData.Bytes())
    9. var cgroups []Cgroup
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. SECURITY.md

    1. running the `tf.train.Server`.
    2.  
    3. ## Untrusted inputs during training and prediction
    4.  
    5. TensorFlow supports a wide range of input data formats. For example it can
    6. process images, audio, videos, and text. There are several modules specialized
    7. in taking those formats, modifying them, and/or converting them to intermediate
    8. formats that can be processed by TensorFlow.
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Wed Oct 16 16:10:43 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/escape/ArrayBasedUnicodeEscaper.java

    1. * specific replacements are to be considered safe and left unescaped or should be escaped in a
    2. * general way.
    3. *
    4. * <p>A good example of usage of this class is for HTML escaping where the replacement array
    5. * contains information about the named HTML entities such as {@code &amp;} and {@code &quot;} while
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. internal/event/target/webhook.go

    1. if err != nil {
    2. if xnet.IsNetworkOrHostDown(err, false) {
    3. return false, store.ErrNotConnected
    4. }
    5. return false, err
    6. }
    7. defer conn.Close()
    8. return true, nil
    9. }
    10.  
    11. // Save - saves the events to the store if queuestore is configured,
    12. // which will be replayed when the webhook connection is active.
    13. func (target *WebhookTarget) Save(eventData event.Event) error {
    14. if target.store != nil {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Sep 06 23:06:30 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. ci/official/containers/ml_build/builder.devtoolset/build_devtoolset.sh

    1. TARGET="$2"
    2.  
    3. case "${VERSION}" in
    4. devtoolset-7)
    5. LIBSTDCXX_VERSION="6.0.24"
    6. LIBSTDCXX_ABI="gcc4-compatible"
    7. ;;
    8. devtoolset-9)
    9. LIBSTDCXX_VERSION="6.0.28"
    10. LIBSTDCXX_ABI="new"
    11. ;;
    12. *)
    13. echo "Usage: $0 {devtoolset-7|devtoolset-9} <target-directory>"
    14. echo "Use 'devtoolset-7' to build a manylinux2010 compatible toolchain or 'devtoolset-9' to build a manylinux2014 compatible toolchain"
    15. exit 1
    16. ;;
    17. esac
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Tue Sep 24 20:45:58 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top