Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 308 for inputs_ (0.12 sec)

  1. pkg/config/analysis/analyzer.go

    	for _, a := range c.analyzers {
    		for _, inputKind := range a.Metadata().Inputs {
    			if kinds.Contains(inputKind) {
    				selected = append(selected, a)
    				break
    			}
    		}
    	}
    	return Combine("subset", selected...)
    }
    
    // Metadata implements Analyzer
    func (c *InternalCombinedAnalyzer) Metadata() Metadata {
    	return Metadata{
    		Name:   c.name,
    		Inputs: combineInputs(c.analyzers),
    	}
    }
    
    // Analyze implements Analyzer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/constant_fold_utils.cc

      std::vector<tensorflow::Tensor> inputs;
    
      // Adds inputs to the TF operation.
      for (const ElementsAttr& operand : operands) {
        tensorflow::Tensor tensor;
        RETURN_FAILURE_IF_ERROR(tensorflow::ConvertToTensor(operand, &tensor));
        inputs.push_back(std::move(tensor));
      }
    
      std::vector<tensorflow::TensorValue> input_values;
      for (tensorflow::Tensor& tensor : inputs) {
        input_values.emplace_back();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/results/TestPageGeneratorTest.groovy

        }
    
        def "accepts no vcs commit ids"() {
            expect:
            new TestPageGenerator().createGitHubLinks(inputs).isEmpty()
    
            where:
            inputs << [[], null]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/constant_fold.cc

          }))
        return failure();
    
      SmallVector<ElementsAttr, 4> inputs;
      inputs.reserve(operands.size());
      for (auto input : operands) {
        inputs.push_back(mlir::cast<ElementsAttr>(input));
      }
    
      SmallVector<Attribute> constants;
      LogicalResult status = EvaluateOperation(inst, inputs, constants);
      results.assign(constants.begin(), constants.end());
      return status;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/end2end/quant_stats.pbtxt

    # RUN: tf_tfl_translate -tf-input-arrays=input0,input1 \
    # RUN:                  -tf-input-shapes=4:4 \
    # RUN:                  -tf-input-data-types=DT_FLOAT,DT_FLOAT \
    # RUN:                  -tf-output-arrays=Add \
    # RUN:                  -tf-inference-type=DT_QUINT8 \
    # RUN:                  -tf-input-min-values='-2,-3' \
    # RUN:                  -tf-input-max-values='2,3' \
    # RUN:                  --quant-stats=%s.stats \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/fake_quant.mlir

    // CHECK-NEXT:         quantization: {
    // CHECK-EMPTY:
    // CHECK-NEXT:         },
    // CHECK-NEXT:         has_rank: true
    // CHECK-NEXT:       } ],
    // CHECK-NEXT:       inputs: [ 0 ],
    // CHECK-NEXT:       outputs: [ 1 ],
    // CHECK-NEXT:       operators: [ {
    // CHECK-NEXT:         inputs: [ 0 ],
    // CHECK-NEXT:         outputs: [ 1 ],
    // CHECK-NEXT:         builtin_options_type: FakeQuantOptions,
    // CHECK-NEXT:         builtin_options: {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. 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)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildSrcProblemReportingIntegrationTest.groovy

                gradle.buildFinished { }
                classes {
                    inputs.property('p', project)
                    doLast { t -> t.project }
                }
            """
            buildFile << """
                tasks.register("broken") {
                    gradle.addListener(new BuildAdapter())
                    inputs.property('p', project).optional(true)
                    doLast { }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. 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)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CacheTaskArchiveErrorIntegrationTest.groovy

        def "fails build when packing archive fails"() {
            when:
            file("input.txt") << "data"
    
            // Just a way to induce a packing error, i.e. corrupt/partial archive
            buildFile << """
                apply plugin: "base"
                task customTask {
                    inputs.file "input.txt"
                    outputs.file "build/output" withPropertyName "output"
                    outputs.cacheIf { true }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top