Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 59 for web_config (0.15 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/webconfig/EditBody.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.api.admin.webconfig;
    
    import org.codelibs.fess.app.web.admin.webconfig.EditForm;
    
    public class EditBody extends EditForm {
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 781 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/webconfig/AdminWebconfigAction.java

        //                                                                        ============
        public static OptionalEntity<WebConfig> getEntity(final CreateForm form, final String username, final long currentTime) {
            switch (form.crudMode) {
            case CrudMode.CREATE:
                return OptionalEntity.of(new WebConfig()).map(entity -> {
                    entity.setCreatedBy(username);
                    entity.setCreatedTime(currentTime);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java

        }
    
        public CrawlingConfig get(final String sessionCountId) {
            return crawlingConfigMap.get(sessionCountId);
        }
    
        public List<WebConfig> getAllWebConfigList() {
            return getAllWebConfigList(true, true, true, null);
        }
    
        public List<WebConfig> getWebConfigListByIds(final List<String> idList) {
            if (idList == null) {
                return getAllWebConfigList();
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/reqheader/admin_reqheader.jsp

            </div>
            <section class="content">
                <div class="row">
                    <div class="col-md-12">
                        <c:if test="${!displayCreateLink}">
                            <la:link href="../webconfig/" styleClass="btn btn-primary ${f:h(editableClass)}">
                                <la:message key="labels.reqheader_create_web_config"/>
                            </la:link>
                        </c:if>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Mar 24 13:43:18 UTC 2020
    - 5.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/xla_call_module_serialization.cc

        }
    
        // Set the `called_index` attribute to the TF function's name.
        new_config.push_back(builder.getNamedAttr(
            kCalledIndexAttrName, builder.getI64IntegerAttr(it->second)));
    
        // Set the `tf.backend_config` attribute to the `new_config`.
        op->setAttr(kTfBackendConfigAttrName,
                    builder.getDictionaryAttr(new_config));
    
        return WalkResult::advance();
      });
      if (result.wasInterrupted()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/cc/config.cc

      QuantizationConfig new_config = config;
    
      // Update the `new_config` with each preset's expansions.
      switch (config.preset_case()) {
        case QuantizationConfig::kStaticRangePtqPreset:
          ExpandStaticRangePtqPreset(config.static_range_ptq_preset(), new_config);
          break;
        case QuantizationConfig::kWeightOnlyPtqPreset:
          ExpandWeightOnlyPtqPreset(new_config);
          break;
        default:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/api/admin/webconfig/SearchBody.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.api.admin.webconfig;
    
    import org.codelibs.fess.app.web.api.admin.BaseSearchBody;
    
    public class SearchBody extends BaseSearchBody {
        public String name;
    
        public String urls;
    
        public String description;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 869 bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java

        protected static void initAll() {
            RestAssured.baseURI = getFessUrl();
            settingTestToken();
    
            // create and execute a web crawler
            createWebConfig();
            logger.info("WebConfig is created");
            refresh();
            webConfigId = getWebConfigIds(NAME_PREFIX).get(0);
    
            createJob();
            logger.info("Job is created: {}", webConfigId);
            refresh();
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/passes/testing/test_post_calibration_component.cc

      config.mutable_static_range_ptq_preset();
    
      const QuantizationConfig new_config = ExpandPresets(config);
    
      PipelineConfig pipeline_config;
      pipeline_config.set_unpack_quantized_types(unpack_quantized_types_);
    
      PostCalibrationComponent component(&ctx);
      component.AddPasses(pm, new_config.specs(), pipeline_config);
    
      if (failed(runPipeline(pm, module_op))) {
        signalPassFailure();
      }
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 12:53:33 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java

            final long now = systemHelper.getCurrentTimeAsLong();
    
            try {
                if (isWebCrawlingPath(configPath)) {
                    // web
                    final WebConfig wConfig = new WebConfig();
                    wConfig.setAvailable(Constants.T);
                    wConfig.setBoost(1.0f);
                    wConfig.setCreatedBy(username);
                    wConfig.setCreatedTime(now);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top