Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 251 for GetOutput (0.19 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stemmeroverride/ApiAdminDictStemmeroverrideAction.java

            final EditBody body = new EditBody();
            body.id = entity.getId();
            body.dictId = dictId;
            body.input = entity.getInput();
            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.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/sources/process/ProcessOutputValueSource.java

                this.output = output;
                this.error = error;
            }
    
            public ExecResult getResult() {
                return result;
            }
    
            public byte[] getOutput() {
                return output.clone();
            }
    
            public byte[] getError() {
                return error.clone();
            }
    
            @Override
            public boolean equals(Object o) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. tensorflow/cc/framework/cc_op_gen.cc

                             ";\n");
        }
      }
      strings::StrAppend(&class_decl, "\n");
      TF_CHECK_OK(h->Append(class_decl));
    }
    
    void GetOutput(const OpInfo& op_info, string* out) {
      const string scope_str = op_info.arg_names[0];
      string return_on_error =
          strings::StrCat("if (!", scope_str, ".ok()) return;");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 17:22:47 UTC 2023
    - 17K bytes
    - Viewed (0)
  4. android/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
    - 35.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_asset_sinking_pass.cc

                DenseStringElementsAttr::get(type, {filename}));
    
            it = const_ops.insert({asset.getSymName(), const_op}).first;
          }
    
          argument.replaceAllUsesWith(it->second.getOutput());
          arg_indexes_to_remove.set(argument.getArgNumber());
        }
    
        // Erase function arguments with bounded input.
        func.eraseArguments(arg_indexes_to_remove);
      }
    };
    
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSpiIntegrationTest.groovy

                    .withTasks("compileJava")
                    .requireOwnGradleUserHomeDir()
                    .withToolchainDownloadEnabled()
                    .runWithFailure()
    
            then:
            failure.getOutput().contains("Explicitly requested toolchains: [useless3, useless1].")
        }
    
        def "created repository can be removed"() {
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 10:53:57 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/utils/fake_quant_utils.h

        auto quantize = rewriter.create<TFL::QuantizeOp>(
            tf_op.getLoc(), qtype.getValue(), value, qtype);
        auto dequantize = rewriter.create<TFL::DequantizeOp>(
            tf_op.getLoc(), res_type, quantize.getOutput());
        value.replaceAllUsesWith(dequantize);
        quantize.getOperation()->replaceUsesOfWith(dequantize, value);
    
        return success();
      }
    
      bool use_fake_quant_num_bits_;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/internal/tasks/DefaultSourceSet.java

        @Override
        public String getSourcesElementsConfigurationName() {
            return configurationNameOf(JvmConstants.SOURCES_ELEMENTS_CONFIGURATION_NAME);
        }
    
        @Override
        public SourceSetOutput getOutput() {
            return output;
        }
    
        public void setClasses(DefaultSourceSetOutput classes) {
            this.output = classes;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/prepare_quantize.cc

          i++;
        }
      });
    
      // We prefer to placing quantization emulation ops on the results of the
      // concat ops.
      func.walk([&](ConcatenationOp concat) {
        if (concat.getOutput().hasOneUse() &&
            Quantized(*concat.getOutput().user_begin())) {
          return;
        }
        concat.emitWarning(
            "Missing quantization parameter on the output might introduce "
            "quantization error!");
      });
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/eclipse/EclipsePlugin.java

                            for (SourceSet sourceSet : project.getExtensions().getByType(JavaPluginExtension.class).getSourceSets()) {
                                result.addAll(sourceSet.getOutput().getDirs().getFiles());
                            }
                            return result;
                        }
                    });
    
                    task.configure(new Action<GenerateEclipseClasspath>() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 23.5K bytes
    - Viewed (0)
Back to top