Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 118 for rapide (0.11 sec)

  1. platforms/documentation/docs/src/samples/credentials-handling/pass-credentials-to-external-tool-via-stdin/README.adoc

    loginPassword=secret-password
    ----
    =====
    and running
    =====
    ----
    $ ./gradlew doAuthenticated
    ----
    =====
    This way the sensitive data can be kept outside of the project sources - `gradle.properties` can reside in the user's `~/.gradle` directory.
    The values are also not echoed anywhere this way.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/fuzzing/cc_op_fuzz_gen.cc

      }
    
      // TODO(unda, b/249347507): should we hide fuzzers for hidden ops?
      if (op_info.api_def.visibility() == ApiDef::HIDDEN) {
        std::cout << "NOT fuzzing: " << op_info.graph_op_def.name()
                  << " is hidden.\n";
        return false;
      }
    
      if (op_info.api_def.visibility() == ApiDef::SKIP) {
        std::cout << "NOT fuzzing: " << op_info.graph_op_def.name()
                  << " is skipped.\n";
        return false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 27 16:26:51 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/ops/gen/common/controller.cc

      for (const auto& op_name : path_config_.op_names) {
        const OpDef* op_def = nullptr;
        TF_CHECK_OK(OpRegistry::Global()->LookUpOpDef(op_name, &op_def));
        CHECK(op_def != nullptr);  // Crash OK
    
        const ApiDef* api_def = api_def_map_->GetApiDef(op_name);
        CHECK(api_def != nullptr);  // Crash OK
    
        operators_.push_back(OpSpec::Create(*op_def, *api_def));
      }
    }
    
    }  // namespace generator
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. tensorflow/cc/framework/fuzzing/cc_op_fuzz_gen_main.cc

      std::unique_ptr<WritableFile> fuzz_file = nullptr;
      for (const OpDef& op_def : ops.op()) {
        if (std::find(op_names.begin(), op_names.end(), op_def.name()) ==
            op_names.end())
          continue;
    
        const ApiDef* api_def = api_def_map->GetApiDef(op_def.name());
        if (api_def == nullptr) {
          continue;
        }
    
        OpInfo op_info(op_def, *api_def, std::vector<string>());
        status.Update(env->NewWritableFile(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 10:53:49 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. pilot/pkg/xds/endpoints/ep_filters.go

    //
    //  1. Potentially reducing extra latency incurred when the gateway and endpoint reside in different
    //     clusters.
    //
    //  2. Enables Kubernetes MCS use cases, where endpoints for a service might be exported in one
    //     cluster but not another within the same network. By targeting the gateway for the cluster
    //     where the exported endpoints reside, we ensure that we only send traffic to exported endpoints.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/credentials-handling/publishing-credentials/README.adoc

    mySecureRepositoryPassword=secret-password
    ----
    =====
    and running
    =====
    ----
    $ ./gradlew publish
    ----
    =====
    The sensitive data is kept outside of the project sources since the `gradle.properties` file can reside in the user's `~/.gradle` directory.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. docs/pt/docs/project-generation.md

    * **Pronto para Produção** com servidor _web_ usando Uvicorn e Gunicorn.
    * _Backend_ <a href="https://github.com/tiangolo/fastapi" class="external-link" target="_blank">**FastAPI**</a> Python:
        * **Rápido**: Alta performance, no nível de **NodeJS** e **Go** (graças ao Starlette e Pydantic).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Oct 17 05:50:32 UTC 2020
    - 6.3K bytes
    - Viewed (0)
  8. tensorflow/cc/framework/cc_op_gen.cc

        std::vector<string> aliases;
        if (api_def->visibility() == ApiDef::SKIP) continue;
        // First endpoint is canonical, the rest are aliases.
        for (int endpoint_i = 1; endpoint_i < api_def->endpoint_size();
             ++endpoint_i) {
          aliases.push_back(api_def->endpoint(endpoint_i).name());
        }
        if (api_def->visibility() == ApiDef::HIDDEN) {
          // Write hidden ops to _internal.h and _internal.cc.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 17:22:47 UTC 2023
    - 17K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/location.go

    // license that can be found in the LICENSE file.
    
    package ssa
    
    import (
    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/types"
    	"fmt"
    )
    
    // A place that an ssa variable can reside.
    type Location interface {
    	String() string // name to use in assembly templates: AX, 16(SP), ...
    }
    
    // A Register is a machine register, like AX.
    // They are numbered densely from 0 (for each architecture).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/options/nodelifecyclecontroller.go

    	fs.Float32Var(&o.UnhealthyZoneThreshold, "unhealthy-zone-threshold",...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 09:25:51 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top