Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 443 for translation_ (0.18 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate_registration_test.cc

        llvm::raw_string_ostream os(sink);
    
        return (**translation_)(source_manager, os, &context);
      }
    
     private:
      llvm::cl::opt<const mlir::Translation*, false, mlir::TranslationParser>*
      RegisterTranslation() {
        // Can only register once per process.
        static const auto requested_translation =
            new llvm::cl::opt<const mlir::Translation*, false,
                              mlir::TranslationParser>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 23:11:32 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. docs/missing-translation.md

    !!! warning
        The current page still doesn't have a translation for this language.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Mar 26 19:09:53 UTC 2020
    - 213 bytes
    - Viewed (0)
  3. hack/update-translations.sh

    # This script updates `staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/template.pot` and
    # generates/fixes .po and .mo files.
    # Usage: `update-translations.sh`.
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/util.sh"
    
    TRANSLATIONS="staging/src/k8s.io/kubectl/pkg/util/i18n/translations"
    KUBECTL_FILES=()
    KUBECTL_DEFAULT_LOCATIONS=(
      "pkg/kubectl/cmd"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 22 03:48:42 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  4. .github/workflows/notify-translations.yml

    name: Notify Translations
    
    on:
      pull_request_target:
        types:
          - labeled
          - closed
      workflow_dispatch:
        inputs:
          number:
            description: PR number
            required: true
          debug_enabled:
            description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)'
            required: false
            default: 'false'
    
    jobs:
      notify-translations:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 07:19:41 UTC 2023
    - 1022 bytes
    - Viewed (0)
  5. docs/en/docs/contributing.md

    ```
    
    </div>
    
    as Uvicorn by default will use the port `8000`, the documentation on port `8008` won't clash.
    
    ### Translations
    
    Help with translations is VERY MUCH appreciated! And it can't be done without the help from the community. 🌎 🚀
    
    Here are the steps to help with translations.
    
    #### Tips and guidelines
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 17:42:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. tensorflow/cc/gradients/image_grad_test.cc

      const TensorShape kXShape = TensorShape({1, 2, 3, 1});
      for (const Input scale : kScales) {
        for (const Input translation : kTranslations) {
          for (const std::string& kernel_type : kKernelTypes) {
            TestScaleAndTranslate<float, float, float>(
                kXShape, kOutHeight, kOutWidth, scale, translation, kernel_type,
                true);
          }
        }
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 15 04:08:05 UTC 2019
    - 12.1K bytes
    - Viewed (0)
  7. operator/pkg/translate/yaml_tree.go

    		return "", err
    	}
    
    	for inPath, translation := range translations {
    		path := util.PathFromString(inPath)
    		node, found, err := tpath.Find(inTree, path)
    		if err != nil {
    			return "", err
    		}
    		if !found {
    			continue
    		}
    
    		if err := tpath.MergeNode(outTree, util.PathFromString(translation), node); err != nil {
    			return "", err
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  8. docs/en/docs/release-notes.md

    * 🌐 Add Portuguese translations for `learn/index.md` `resources/index.md` `help/index.md` `about/index.md`. PR [#10807](https://github.com/tiangolo/fastapi/pull/10807) by [@nazarepiedady](https://github.com/nazarepiedady).
    * 🌐 Update Russian translations for deployments docs. PR [#11271](https://github.com/tiangolo/fastapi/pull/11271) by [@Lufa1u](https://github.com/Lufa1u).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  9. operator/pkg/translate/translate_value.go

    func (t *ReverseTranslator) initAPIAndComponentMapping() {
    	ts := NewTranslator()
    	t.APIMapping = make(map[string]*Translation)
    	t.KubernetesMapping = make(map[string]*Translation)
    	t.ValuesToComponentName = make(map[string]name.ComponentName)
    	for valKey, outVal := range ts.APIMapping {
    		t.APIMapping[outVal.OutPath] = &Translation{valKey, nil}
    	}
    	for cn, cm := range ts.ComponentMaps {
    		// we use dedicated translateGateway for gateway instead
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 03:52:24 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  10. .github/actions/notify-translations/action.yml

    name: "Notify Translations"
    description: "Notify in the issue for a translation when there's a new PR available"
    author: "Sebastián Ramírez <******@****.***>"
    inputs:
      token:
        description: 'Token, to read the GitHub API. Can be passed in using {{ secrets.GITHUB_TOKEN }}'
        required: true
    runs:
      using: 'docker'
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Aug 18 13:07:08 UTC 2021
    - 346 bytes
    - Viewed (0)
Back to top