Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 141 for set_inputs (1.9 sec)

  1. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/plugins/NativeBinariesTestPlugin.java

                testSuiteBinary.getInputs().withType(DependentSourceSet.class).all(new Action<DependentSourceSet>() {
                    @Override
                    public void execute(DependentSourceSet testSource) {
                        testSource.lib(testedBinary.getInputs());
                    }
                });
                testedBinary.getInputs().all(new Action<LanguageSourceSet>() {
                    @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinDslAssignmentIntegrationTest.kt

                    mapInput = mapOf("a" to "b")
                    mapInput = provider { null }
                    mapInput = provider { mapOf("a" to "b") }
                    setInput = null
                    setInput = listOf("a")
                    setInput = provider { null }
                    setInput = provider { listOf("a") }
                    listInput = null
                    listInput = listOf("a")
                    listInput = provider { null }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/tasks/AbstractCopyTask.java

                getInputs().property(specPropertyName + ".caseSensitive", (Callable<Boolean>) spec::isCaseSensitive);
                getInputs().property(specPropertyName + ".includeEmptyDirs", (Callable<Boolean>) spec::getIncludeEmptyDirs);
                getInputs().property(specPropertyName + ".duplicatesStrategy", (Callable<DuplicatesStrategy>) spec::getDuplicatesStrategy);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 10:41:40 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tpu_reorder_replicate_and_partitioned_inputs.cc

      void runOnOperation() override;
    };
    
    LogicalResult ReorderReplicateAndPartitionedInputs(
        TF::TPUReplicatedInputOp replicated_input) {
      if (!llvm::all_of(replicated_input.getInputs(), [](Value input) {
            return llvm::isa_and_nonnull<TF::TPUPartitionedInputV2Op>(
                input.getDefiningOp());
          }))
        return replicated_input.emitOpError()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 24 23:08:55 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/ClassInspectorTest.groovy

        public interface RootInterface {
            public String getInputs()
        }
    
        public interface RootInterfaceSub extends RootInterface {}
    
        public class ImplementingRootClass implements RootInterface {
            public String getInputs() { return "super" }
        }
    
        public class ImplementingRootClassSub extends ImplementingRootClass {
            public String getInputs() { return "concrete" }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 23:46:06 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/AbstractNativeBinarySpec.java

        }
    
        @Override
        public Collection<NativeLibraryBinary> getDependentBinaries() {
            return resolve(getInputs().withType(DependentSourceSet.class)).getAllLibraryBinaries();
        }
    
        @Override
        public Collection<NativeBinaryRequirementResolveResult> getAllResolutions() {
            return resolve(getInputs().withType(DependentSourceSet.class)).getAllResolutions();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/NativeSpecVisualStudioTargetBinary.java

                    return sourceSet.getSource();
                }
            };
    
            return new LanguageSourceSetCollectionAdapter(getComponentName() + " source files", binary.getInputs(), filter, transform);
        }
    
        @Override
        public FileCollection getResourceFiles() {
            Spec<LanguageSourceSet> filter = new Spec<LanguageSourceSet>() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/reduce.h

     public:
      using OpConversionPattern::OpConversionPattern;
      LogicalResult matchAndRewrite(
          mhlo::ReduceOp reduce_op, OpAdaptor adaptor,
          ConversionPatternRewriter& rewriter) const final {
        if (reduce_op.getInputs().size() != 2) return failure();
        if (reduce_op.getDimensions().getNumElements() != 1) return failure();
    
        // Check that the operand init is the expected value.
        DenseElementsAttr operand_init;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/DefaultSharedLibraryBinarySpec.java

                for (NativeResourceSet windowsResourceSet : getInputs().withType(NativeResourceSet.class)) {
                    if (!windowsResourceSet.getSource().isEmpty()) {
                        return true;
                    }
                }
                return false;
            }
    
            private boolean hasExportedSymbols() {
                for (LanguageSourceSet languageSourceSet : getInputs()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tpu_resource_partitioning.cc

                assign_var.getResource().getDefiningOp());
        if (!partitioned_input ||
            !AllResourceTypesHaveSubtypes(partitioned_input.getInputs().getTypes()))
          continue;
    
        const auto inputs = partitioned_input.getInputs();
        const bool packed_input = partitioned_input.getIsPacked();
        int num_cores_per_replica = partitioned_input.getN();
        if (num_cores_per_replica_attr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top