Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 66 for outMap (2.72 sec)

  1. operator/pkg/translate/translate_value.go

    	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)
  2. docs/pt/docs/tutorial/background-tasks.md

    Se você precisa realizar cálculos pesados ​​em segundo plano e não necessariamente precisa que seja executado pelo mesmo processo (por exemplo, você não precisa compartilhar memória, variáveis, etc), você pode se beneficiar do uso de outras ferramentas maiores, como <a href="http://www.celeryproject.org/" class="external-link" target="_blank"> Celery </a>.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 09 23:44:32 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantized_function_library.mlir

                             %out_scale : tensor<*xf32>, %out_zp : tensor<*xi32>) -> tensor<*xf32> {
        %scale_prod = "tf.Mul"(%input_scale, %filter_scale) : (tensor<*xf32>, tensor<*xf32>) -> tensor<*xf32>
        %rescale_factor = "tf.Div"(%scale_prod, %out_scale) : (tensor<*xf32>, tensor<*xf32>) -> tensor<*xf32>
        %float_out_zp = "tf.Cast"(%out_zp) {Truncate = false} : (tensor<*xi32>) -> tensor<*xf32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jan 08 01:16:10 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/dra/state/zz_generated.deepcopy.go

    		in, out := &in.CDIDevices, &out.CDIDevices
    		*out = make(map[string][]string, len(*in))
    		for key, val := range *in {
    			var outVal []string
    			if val == nil {
    				(*out)[key] = nil
    			} else {
    				in, out := &val, &outVal
    				*out = make([]string, len(*in))
    				copy(*out, *in)
    			}
    			(*out)[key] = outVal
    		}
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:27 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantized_function_library_uniform_quantized.mlir

          %out_zp_filled = "tf.Fill" (%filter_shape, %out_zp) : (tensor<*xi32>, tensor<*xi32>) -> tensor<*xi32>
          %act = "tf.PartitionedCall"(%add, %accum_scale, %accum_zp, %out_scale_filled, %out_zp_filled, %out_scale, %out_zp) {
              config = "", config_proto = "", executor_type = "", f=@${act_func}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 29 01:13:58 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/dra/zz_generated.deepcopy.go

    		*out = make(map[string][]container.Annotation, len(*in))
    		for key, val := range *in {
    			var outVal []container.Annotation
    			if val == nil {
    				(*out)[key] = nil
    			} else {
    				in, out := &val, &outVal
    				*out = make([]container.Annotation, len(*in))
    				copy(*out, *in)
    			}
    			(*out)[key] = outVal
    		}
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:27 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfr/integration/node_expansion_pass.cc

    }  // namespace
    
    namespace tfr {
    
    Status CompositeOpExpansion::Run(EagerOperation* orig_op,
                                     std::unique_ptr<EagerOperation>* out_op) {
      if (!IsEnabled()) return absl::OkStatus();
      // This can be the default cpu device.
      if (orig_op->Device() != kVariantDeviceNull) return absl::OkStatus();
      if (orig_op->is_function()) return absl::OkStatus();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Feb 25 16:22:36 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. docs/pt/docs/deployment/docker.md

    ```Dockerfile
    COPY ./requirements.txt /code/requirements.txt
    ```
    
    Docker e outras ferramentas **constróem** essas imagens de contêiner **incrementalmente**, adicionando **uma camada em cima da outra**, começando do topo do `Dockerfile` e adicionando qualquer arquivo criado por cada uma das instruções do `Dockerfile`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 37.4K bytes
    - Viewed (0)
  9. docs/pt/docs/tutorial/path-params-numeric-validations.md

    !!! info "Informação"
        `Query`, `Path` e outras classes que você verá a frente são subclasses de uma classe comum `Param`.
    
        Todas elas compartilham os mesmos parâmetros para validação adicional e metadados que você viu.
    
    !!! note "Detalhes Técnicos"
        Quando você importa `Query`, `Path` e outras de `fastapi`, elas são na verdade funções.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/certificates/v1/zz_generated.deepcopy.go

    		in, out := &in.Extra, &out.Extra
    		*out = make(map[string]ExtraValue, len(*in))
    		for key, val := range *in {
    			var outVal []string
    			if val == nil {
    				(*out)[key] = nil
    			} else {
    				in, out := &val, &outVal
    				*out = make(ExtraValue, len(*in))
    				copy(*out, *in)
    			}
    			(*out)[key] = outVal
    		}
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 6K bytes
    - Viewed (0)
Back to top