- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 17 for LabelType (0.09 sec)
-
src/main/java/org/codelibs/fess/es/config/exentity/LabelType.java
import java.util.Locale; import org.codelibs.fess.es.config.bsentity.BsLabelType; import org.codelibs.fess.util.ComponentUtil; /** * @author FreeGen */ public class LabelType extends BsLabelType { private static final long serialVersionUID = 1L; private Locale locale; public String getId() { return asDocMeta().id(); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/labeltype/ApiAdminLabeltypeAction.java
}); return asJson(new ApiUpdateResponse().id(labelType.getId()).created(true).status(Status.OK).result()); } // POST /api/admin/labeltype/setting @Execute public JsonResponse<ApiResult> post$setting(final EditBody body) { validateApi(body, messages -> {}); body.crudMode = CrudMode.EDIT; final LabelType labelType = getLabelType(body).map(entity -> { try {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 6.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/LabelTypeService.java
op.rangeSize(fessConfig.getPagingPageRangeSizeAsInteger()); }).createPageNumberList()); return labelTypeList; } public void delete(final LabelType labelType) { labelTypeBhv.delete(labelType, op -> { op.setRefreshPolicy(Constants.TRUE); }); final LabelTypeHelper labelTypeHelper = ComponentUtil.getLabelTypeHelper(); if (labelTypeHelper != null) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/labeltype/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.labeltype; import org.codelibs.fess.app.web.admin.labeltype.EditForm; public class EditBody extends EditForm {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 781 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/labeltype/CreateBody.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.labeltype; import org.codelibs.fess.app.web.admin.labeltype.CreateForm; public class CreateBody extends CreateForm {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 787 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/exentity/ElevateWord.java
} return labelTypeList; } public String[] getLabelTypeValues() { final List<LabelType> list = getLabelTypeList(); final List<String> labelValueList = new ArrayList<>(list.size()); for (final LabelType labelType : list) { labelValueList.add(labelType.getValue()); } return labelValueList.toArray(new String[labelValueList.size()]); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 4.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/GsaConfigParserTest.java
import java.io.IOException; import java.io.InputStream; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.codelibs.core.io.ResourceUtil; import org.codelibs.fess.es.config.exentity.LabelType; import org.codelibs.fess.helper.SystemHelper; import org.codelibs.fess.unit.UnitFessTestCase; import org.xml.sax.InputSource; public class GsaConfigParserTest extends UnitFessTestCase {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.2K bytes - Viewed (0) -
tensorflow/c/eager/c_api_experimental_reader.cc
#include "tensorflow/c/eager/c_api_experimental_reader.h" #include "tensorflow/c/eager/tfe_monitoring_reader_internal.h" template <typename... LabelType> int64_t TFE_MonitoringCounterReader::Read(const LabelType&... labels) { return counter->Read(labels...); } TFE_MonitoringCounterReader* TFE_MonitoringNewCounterReader(const char* name) { auto* result = new TFE_MonitoringCounterReader(name);
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Apr 20 03:14:47 UTC 2023 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/labeltype/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.labeltype; import org.codelibs.fess.app.web.api.admin.BaseSearchBody; public class SearchBody extends BaseSearchBody { public String name; public String value;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 840 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/labeltype/CreateForm.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.admin.labeltype; import org.codelibs.fess.app.web.CrudMode; import org.codelibs.fess.util.ComponentUtil; import org.codelibs.fess.validation.CustomSize; import org.lastaflute.web.validation.Required;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 2.2K bytes - Viewed (0)