Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 168 for inputs_1 (0.1 sec)

  1. pkg/config/analysis/legacy/util/kuberesource/resources.go

    	"istio.io/istio/pkg/config/schema/collections"
    	"istio.io/istio/pkg/config/schema/resource"
    )
    
    func ConvertInputsToSchemas(inputs []config.GroupVersionKind) collection.Schemas {
    	resultBuilder := collection.NewSchemasBuilder()
    	for _, gv := range inputs {
    		s, f := collections.All.FindByGroupVersionKind(gv)
    		if !f {
    			continue
    		}
    		_ = resultBuilder.Add(s)
    	}
    
    	return resultBuilder.Build()
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/crd/conversion.go

    // information to the abstract model and/or elevating k8s
    // representation to first-class type to avoid extra conversions.
    
    func parseInputsImpl(inputs string, withValidate bool) ([]config.Config, []IstioKind, error) {
    	var varr []config.Config
    	var others []IstioKind
    	reader := bytes.NewReader([]byte(inputs))
    	empty := IstioKind{}
    
    	// We store configs as a YaML stream; there may be more than one decoder.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 18:26:16 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

          (BinaryOp (TFL_ReshapeOp:$lhs $input1, (Arith_ConstantOp:$shape1 $s1)),
                    (TFL_ReshapeOp:$rhs $input2, (Arith_ConstantOp:$shape2 $s2))),
          (TFL_ReshapeOp (BinaryOp $input1, $input2), $shape1),
          [(IsTailOfShape $rhs, $lhs),
           (IsTailOfShape $lhs, $rhs),
           (IsTailOfShape $input1, $input2),
           (IsTailOfShape $input2, $input1),
           (SameElementType $input1, $input2)]>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tpu_validate_inputs.mlir

        // expected-error @+1 {{'tf.TPUReplicatedInput' op TF2XLA TPU bridge input check: number of inputs inconsistent. num_replicas=2 no. of inputs=3}}
        %ri, %c0 = tf_executor.island wraps "tf.TPUReplicatedInput"(%arg0, %arg1, %arg1) {index = 1 : i64, is_mirrored_variable = false, is_packed = false} : (tensor<i32>, tensor<i32>, tensor<i32>) -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 06:51:01 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/python/flatbuffer_to_mlir.cc

      auto loc =
          mlir::FileLineColLoc::get(context, input->getBufferIdentifier(), 0, 0);
      std::vector<std::string> inputs;
      std::vector<std::string> outputs;
      return tflite::FlatBufferToMlir(
          absl::string_view(input->getBufferStart(), input->getBufferSize()),
          context, loc, false, inputs, outputs, false);
    }
    
    }  // namespace
    
    std::string FlatBufferFileToMlir(const std::string& model_file_or_buffer,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/webhook/webhook.go

    	meta := analysis.Metadata{
    		Name:        "webhook.Analyzer",
    		Description: "Checks the validity of Istio webhooks",
    		Inputs: []config.GroupVersionKind{
    			gvk.MutatingWebhookConfiguration,
    		},
    	}
    	if !a.SkipServiceCheck {
    		meta.Inputs = append(meta.Inputs, gvk.Service)
    	}
    	return meta
    }
    
    func getNamespaceLabels() []klabels.Set {
    	return []klabels.Set{
    		{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskActionIntegrationTest.groovy

                    def output = file("build/task-a/output.txt")
                    inputs.file input
                    outputs.file output
                    outputs.cacheIf { true }
                    doFirst action
                }
    
                task taskB {
                    def output = file("build/task-b/output.txt")
                    inputs.file input
                    outputs.file output
                    outputs.cacheIf { true }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/ClosingFuture.java

        private final boolean allMustSucceed;
        protected final ImmutableList<ClosingFuture<?>> inputs;
    
        private Combiner(boolean allMustSucceed, Iterable<? extends ClosingFuture<?>> inputs) {
          this.allMustSucceed = allMustSucceed;
          this.inputs = ImmutableList.copyOf(inputs);
          for (ClosingFuture<?> input : inputs) {
            input.becomeSubsumedInto(closeables);
          }
        }
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  9. tensorflow/c/c_api_test.cc

                                                 const char* prefix2 = nullptr) {
        TF_Output inputs[2];
        TF_Output outputs[1];
        TF_Output grad_outputs[2];
    
        BuildSuccessGraph(inputs, outputs);
    
        AddGradients(false, prefix1, inputs, 2, outputs, 1, grad_outputs);
        if (prefix2 != nullptr) {
          AddGradients(false, prefix2, inputs, 2, outputs, 1, grad_outputs);
        }
      }
    
      TF_Status* s_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/tests/odml-to-stablehlo-allow-tf.mlir

      func.func @serving_default(%arg0: tensor<1x20x20x28xf32> {tf_saved_model.index_path = ["a"]}) -> (tensor<1x40x40x28xf32> {tf_saved_model.index_path = ["b"]}) attributes {tf.entry_function = {control_outputs = "", inputs = "c:0", outputs = "d:0"}, tf_saved_model.exported_names = ["serving_default"]} {
          %c = stablehlo.constant dense<40> : tensor<2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 18:33:43 UTC 2024
    - 914 bytes
    - Viewed (0)
Back to top