Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 251 for GetOutput (0.44 sec)

  1. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/TaskFromPluginValidationIntegrationTest.groovy

                    @ValidationProblem(value=Severity.ERROR)
                    abstract Property<String> getInput()
    
                    @OutputFile
                    abstract RegularFileProperty getOutput()
    
                    @TaskAction
                    void doSomething() {}
                }
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/AdminDictMappingAction.java

            charMappingService.getCharMappingItem(form.dictId, form.id).ifPresent(entity -> {
                form.inputs = entity.getInputsValue();
                form.output = entity.getOutput();
            }).orElse(() -> {
                throwValidationError(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, form.getDisplayId()),
                        () -> asListHtml(form.dictId));
            });
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/integTest/groovy/org/gradle/internal/execution/MutableUnitOfWorkBuilder.groovy

                        @Override
                        UnitOfWork.WorkResult getDidWork() {
                            return didWork
                        }
    
                        @Override
                        Object getOutput(File workspace) {
                            return loadAlreadyProducedOutput(workspace)
                        }
                    }
                }
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  4. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishSnapshotIntegTest.groovy

            succeeds 'publish', '-i'
    
            then:
            def initialVersion = module.publishArtifactVersion
            def publishTaskOutputLines = result.getGroupedOutput().task(':publishPubPublicationToMavenRepository').getOutput().split("\\R")
    
            publishTaskOutputLines.collect { it =~ ~/Uploading (\S*).*/ }.findAll().collect { it.group(1) } == [
                "snapshotPublish-${initialVersion}.jar",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 12:20:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. subprojects/core/src/testFixtures/groovy/org/gradle/api/tasks/TasksWithInputsAndOutputs.groovy

            buildFile << """
                import javax.inject.Inject
    
                abstract class DirProducer extends DefaultTask {
                    @OutputDirectory
                    abstract DirectoryProperty getOutput()
                    @Input
                    abstract ListProperty<String> getNames()
                    @Input
                    abstract Property<String> getContent() // set to empty string to delete directory
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/CompactHashMap.java

        }
    
        @ParametricNullness
        abstract T getOutput(int entry);
    
        @Override
        @ParametricNullness
        public T next() {
          checkForConcurrentModification();
          if (!hasNext()) {
            throw new NoSuchElementException();
          }
          indexToRemove = currentIndex;
          T result = getOutput(currentIndex);
          currentIndex = getSuccessor(currentIndex);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/fused_kernel_matcher.cc

        auto activation = GetActivation(bias_add);
    
        // If there is an activation, only fuse it if this is the only op to use the
        // result of the BiasAdd.
        bool fuse_activation = activation && bias_add.getOutput().hasOneUse();
        Type result_type;
    
        // Include info about the activation function if applicable.
        if (fuse_activation) {
          locations.push_back(activation->getLoc());
          fused_ops.push_back(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/reporting/HtmlReportRenderer.java

                @Override
                public String formatDate(Date date) {
                    return DateFormat.getDateTimeInstance().format(date);
                }
    
                @Override
                public D getOutput() {
                    return output;
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:54:01 UTC 2021
    - 6.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tpu_reorder_replicate_and_partitioned_inputs.cc

          operands_per_core, first_partitioned_input->getAttrs());
      pi.setIsPacked(false);  // inputs are now ops--not resources
      replicated_input.replaceAllUsesWith(pi.getOutput());
      return success();
    }
    
    void TPUReorderReplicateAndPartitionedInputsPass::runOnOperation() {
      auto result =
          getOperation()->walk([](TF::TPUReplicatedInputOp replicated_input) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 24 23:08:55 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/dict/mapping/ApiAdminDictMappingAction.java

            final EditBody body = new EditBody();
            body.id = entity.getId();
            body.dictId = dictId;
            body.inputs = entity.getInputsValue();
            body.output = entity.getOutput();
            return body;
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top