Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 351 for inputs_1 (0.14 sec)

  1. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/CommonsTarPacker.java

            this.buffer = new byte[bufferSizeInKBytes * 1024];
        }
    
        @Override
        public void pack(List<DataSource> inputs, DataTarget output) throws IOException {
            TarArchiveOutputStream tarOutput = new TarArchiveOutputStream(output.openOutput());
            for (DataSource input : inputs) {
                TarArchiveEntry entry = new TarArchiveEntry(input.getName());
                entry.setSize(input.getLength());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:19 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/main/java/org/gradle/platform/base/BinarySpec.java

         */
        ModelMap<LanguageSourceSet> getSources();
    
        /**
         * Returns all inputs of the binary. This includes source sets owned by the binary,
         * and other source sets created elsewhere (e.g. inherited from the binary's component).
         *
         * @return all inputs of the binary.
         */
        DomainObjectSet<LanguageSourceSet> getInputs();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. pkg/kube/krt/README.md

    ## Derived Collections
    
    The core of the framework is in the ability to derive collections from others.
    
    In general, these are built by providing some `func(inputs...) outputs...` (called "transformation" functions).
    While more could be expressed, there are currently three forms implemented.
    
    * `func() *O` via `NewSingleton`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 17:21:50 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

        full_output_types.push_back(output.getType());
      }
    
      // Convert split sharded inputs to MANUAL sharded inputs.
      // common_split_sharding is the split sharding that is common to all inputs
      // and outputs.
      llvm::SmallVector<Value, 4> manual_inputs;
      manual_inputs.reserve(inputs.size());
      for (Value in : inputs) {
        Type shard_type;
        if (failed(GetShardShapedType(original_op, num_cores_per_replica,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/reshape.mlir

    // CHECK-NEXT:       quantization: {
    // CHECK-EMPTY:
    // CHECK-NEXT:      },
    // CHECK-NEXT:      has_rank: true
    // CHECK-NEXT:     } ],
    // CHECK-NEXT:     inputs: [ 0 ],
    // CHECK-NEXT:     outputs: [ 2 ],
    // CHECK-NEXT:     operators: [ {
    // CHECK-NEXT:       inputs: [ 0, 1 ],
    // CHECK-NEXT:       outputs: [ 2 ]
    // CHECK-NEXT:     } ]
    // CHECK-NEXT:    name: "main"
    // CHECK-NEXT:   } ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    ----
    
    [[config_cache:usage:invalidate]]
    === Invalidating the cache
    
    The configuration cache is automatically invalidated when inputs to the configuration phase change.
    However, certain inputs are not tracked yet, so you may have to manually invalidate the configuration cache when untracked inputs to the configuration phase change.
    This can happen if you <<configuration_cache#config_cache:usage:ignore_problems,ignored problems>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/unfuse_batch_norm_pass.cc

      LogicalResult matchAndRewrite(mhlo::BatchNormTrainingOp bn_op,
                                    PatternRewriter &rewriter) const override {
        auto inputs = bn_op.getOperand();
        auto input_type = mlir::dyn_cast<RankedTensorType>(inputs.getType());
        if (!input_type) {
          return failure();
        }
        auto feature_index = bn_op.getFeatureIndex();
    
        // Compute mean
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/LanguageSourceSetIntegrationTest.groovy

            """
    
            expect:
            succeeds "model"
            def buildType = ModelReportOutput.from(output).modelNode.buildType
    
            buildType.inputs.@type[0] == 'CustomSourceSet'
            buildType.inputs.@nodeValue[0] == 'null'
            buildType.inputs.@creator[0] == 'Rules#buildType(BuildType)'
    
            buildType.sources.@type[0] == 'CustomSourceSet'
            buildType.sources.@nodeValue[0] == "Custom source 'sources'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  9. 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)
  10. platforms/documentation/docs/src/snippets/files/copy/groovy/build.gradle

        }
    }
    // end::copy-method[]
    
    // tag::copy-method-with-dependency[]
    tasks.register('copyMethodWithExplicitDependencies') {
        // up-to-date check for inputs, plus add copyTask as dependency
        inputs.files(copyTask)
            .withPropertyName("inputs")
            .withPathSensitivity(PathSensitivity.RELATIVE)
        outputs.dir('some-dir') // up-to-date check for outputs
            .withPropertyName("outputDir")
        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top