Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 358 for please (0.1 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirSymbolProvider.kt

            return when {
                psi.isFunctionTypeParameter -> errorWithFirSpecificEntries(
                    "Creating KtValueParameterSymbol for function type parameter is not possible. Please see the KDoc of getParameterSymbol",
                    psi = psi,
                )
    
                psi.isLoopParameter || psi.isCatchParameter -> {
                    firSymbolBuilder.variableLikeBuilder.buildLocalVariableSymbol(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 17:29:30 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. samples/bookinfo/src/details/details.rb

    server.mount_proc '/details' do |req, res|
        pathParts = req.path.split('/')
        headers = get_forward_headers(req)
    
        begin
            begin
              id = Integer(pathParts[-1])
            rescue
              raise 'please provide numeric product id'
            end
            details = get_book_details(id, headers)
            res.body = details.to_json
            res['Content-Type'] = 'application/json'
        rescue => error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/recommended.go

    		Audit:          NewAuditOptions(),
    		Features:       NewFeatureOptions(),
    		CoreAPI:        NewCoreAPIOptions(),
    		// Wired a global by default that sadly people will abuse to have different meanings in different repos.
    		// Please consider creating your own FeatureGate so you can have a consistent meaning for what a variable contains
    		// across different repos.  Future you will thank you.
    		FeatureGate:                feature.DefaultFeatureGate,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/testng/TestNGOptions.java

         * might be useful for advanced TestNG users who prefer the reports generated by the TestNG library. If you cannot live without some specific TestNG reporter please use {@link #listeners}
         * property. If you really want to use all default TestNG reporters (e.g. generate the old reports):
         *
         * <pre class='autoTested'>
         * plugins {
         *     id 'java'
         * }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/phases/join/preflight.go

    		`)))
    )
    
    // NewPreflightPhase creates a kubeadm workflow phase that implements preflight checks for a new node join
    func NewPreflightPhase() workflow.Phase {
    	return workflow.Phase{
    		Name:    "preflight [api-server-endpoint]",
    		Short:   "Run join pre-flight checks",
    		Long:    "Run pre-flight checks for kubeadm join.",
    		Example: preflightExample,
    		Run:     runPreflight,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

        DEBUGGER_TYPE_WHOLE_MODEL = 1;
        // DEBUGGER_TYPE_INT_PER_LAYER creates a debugging model with both quantized
        // and unquantized layers. The unquantized layer's input come from the
        // previous quantized layer (Please note that this part is different part
        // from DEBUGGER_TYPE_FLOAT_PER_LAYER). Each layer in the debugging model
        // has a DumpTensor, and it is used to save the entire value of outputs from
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/api/v2/BUILD

    load("//tensorflow:tensorflow.bzl", "tf_cc_test")
    load("//tensorflow/core/platform:build_config.bzl", "tf_proto_library")
    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    # Please reach out to tf-bridge-team@ before using the TF2XLA bridge.
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        default_visibility = [
            ":__subpackages__",
        ],
    )
    
    cc_library(
        name = "legalize_tf",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.py

      elif len(signature_def_map.keys()) > 1:
        raise ValueError(
            'Representative dataset is not a mapping (got: '
            f'{type(representative_dataset)}), but there is more than one '
            'signature key provided. Please provide a map of '
            '{signature_key -> dataset} with more than one signature key.'
        )
      else:
        representative_dataset_map = {
            list(signature_def_map.keys())[0]: representative_dataset,
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  9. cluster/gce/config-common.sh

    # in order to initialize properly.
    NODE_SCOPES="${NODE_SCOPES:-monitoring,logging-write,storage-ro}"
    
    # Below exported vars are used in cluster/gce/util.sh (or maybe somewhere else),
    # please remove those vars when not needed any more.
    
    # Root directory for Kubernetes files on Windows nodes.
    WINDOWS_K8S_DIR="C:\etc\kubernetes"
    # Directory where Kubernetes binaries will be installed on Windows nodes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:06:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/dryrun/dryrun.go

    func PrintFilesIfDryRunning(needPrintManifest bool, manifestDir string, outputWriter io.Writer) error {
    	var files []FileToPrint
    	// Print static pod manifests if it is a control plane
    	if needPrintManifest {
    		fmt.Printf("[dryrun] Wrote certificates, kubeconfig files and control plane manifests to the %q directory\n", manifestDir)
    		for _, component := range kubeadmconstants.ControlPlaneComponents {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top