Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 306 for translation_ (0.32 sec)

  1. 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 (1)
  2. 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)
  3. 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)
  4. .github/actions/notify-translations/app/main.py

        logging.debug(f"Using translations map: {lang_to_discussion_map}")
    
        # Messages to create or check
        new_translation_message = f"Good news everyone! 😉 There's a new translation PR to be reviewed: #{pr.number} by @{pr.user.login}. 🎉 This requires 2 approvals from native speakers to be merged. 🤓"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 23:01:46 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  5. operator/pkg/translate/translate.go

    	FlattenValues bool
    }
    
    // TranslationFunc maps a yamlStr API path into a YAML values tree.
    type TranslationFunc func(t *Translation, root map[string]any, valuesPath string, value any) error
    
    // Translation is a mapping to an output path using a translation function.
    type Translation struct {
    	// OutPath defines the position in the yaml file
    	OutPath         string `yaml:"outPath"`
    	translationFunc TranslationFunc
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  6. scripts/docs.py

        """
        update_config()
    
    
    @app.command()
    def serve() -> None:
        """
        A quick server to preview a built site with translations.
    
        For development, prefer the command live (or just mkdocs serve).
    
        This is here only to preview a site with translations already built.
    
        Make sure you run the build-all command first.
        """
        typer.echo("Warning: this is a very simple server.")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:26:14 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. src/reflect/abi.go

    	kind abiStepKind
    
    	// offset and size together describe a part of a Go value
    	// in memory.
    	offset uintptr
    	size   uintptr // size in bytes of the part
    
    	// These fields describe the ABI side of the translation.
    	stkOff uintptr // stack offset, used if kind == abiStepStack
    	ireg   int     // integer register index, used if kind == abiStepIntReg or kind == abiStepPointer
    	freg   int     // FP register index, used if kind == abiStepFloatReg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. pkg/kubelet/pod/pod_manager.go

    	mirrorToPod = make(map[kubetypes.MirrorPodUID]kubetypes.ResolvedPodUID, len(pm.translationByUID))
    	// Insert empty translation mapping for all static pods.
    	for uid, pod := range pm.podByUID {
    		if !kubetypes.IsStaticPod(pod) {
    			continue
    		}
    		podToMirror[uid] = ""
    	}
    	// Fill in translations. Notice that if there is no mirror pod for a
    	// static pod, its uid will be translated into empty string "". This
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:00 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  9. src/image/jpeg/reader.go

    	// contiguous bytes per pixel.
    	bounds := d.img3.Bounds()
    	img := image.NewCMYK(bounds)
    
    	translations := [4]struct {
    		src    []byte
    		stride int
    	}{
    		{d.img3.Y, d.img3.YStride},
    		{d.img3.Cb, d.img3.CStride},
    		{d.img3.Cr, d.img3.CStride},
    		{d.blackPix, d.blackStride},
    	}
    	for t, translation := range translations {
    		subsample := d.comp[t].h != d.comp[0].h || d.comp[t].v != d.comp[0].v
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/nodevolumelimits/csi.go

    	volumeutil "k8s.io/kubernetes/pkg/volume/util"
    )
    
    // InTreeToCSITranslator contains methods required to check migratable status
    // and perform translations from InTree PV's to CSI
    type InTreeToCSITranslator interface {
    	IsPVMigratable(pv *v1.PersistentVolume) bool
    	IsInlineMigratable(vol *v1.Volume) bool
    	IsMigratableIntreePluginByName(inTreePluginName string) bool
    	GetInTreePluginNameFromSpec(pv *v1.PersistentVolume, vol *v1.Volume) (string, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top