- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 5,841 for kind1 (0.24 seconds)
-
src/main/java/org/codelibs/fess/suggest/entity/SuggestItemMerger.java
} /** * Merges two Kind arrays, maintaining uniqueness. */ private static SuggestItem.Kind[] mergeKinds(final SuggestItem.Kind[] kinds1, final SuggestItem.Kind[] kinds2) { final Set<SuggestItem.Kind> merged = new LinkedHashSet<>(); if (kinds1 != null) { Collections.addAll(merged, kinds1); } if (kinds2 != null) {Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sun Feb 01 12:48:24 GMT 2026 - 5.4K bytes - Click Count (0) -
tensorflow/c/eager/abstract_function.h
class AbstractFunction : public core::RefCounted { protected: enum AbstractFunctionKind { kGraph, kMlir }; explicit AbstractFunction(AbstractFunctionKind kind) : kind_(kind) {} public: // Returns which subclass is this instance of. AbstractFunctionKind getKind() const { return kind_; } // Returns the AbstractFunction as a FunctionDef. virtual absl::Status GetFunctionDef(const FunctionDef**) = 0;Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Sat Oct 12 05:11:17 GMT 2024 - 1.9K bytes - Click Count (0) -
tensorflow/c/eager/abstract_op_attrs.h
// Attributes of an op. class AbstractOpAttrs { protected: enum AbstractOpAttrsKind { kEager, kTfrt }; explicit AbstractOpAttrs(AbstractOpAttrsKind kind) : kind_(kind) {} public: // Returns which subclass is this instance of. AbstractOpAttrsKind getKind() const { return kind_; } virtual ~AbstractOpAttrs() = default; // Returns the AbstractFunction as a FunctionDef. virtual void GetNameAttrList(Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Sat Oct 12 05:11:17 GMT 2024 - 2K bytes - Click Count (0) -
.github/PULL_REQUEST_TEMPLATE.md
--> #### What type of PR is this? <!-- Add one of the following kinds: /kind bug /kind dependency /kind cleanup /kind documentation /kind feature Optionally add one or more of the following kinds if applicable: /kind api-change /kind deprecation /kind failing-test /kind flake /kind regression --> #### What this PR does / why we need it:
Created: Fri Apr 03 09:05:14 GMT 2026 - Last Modified: Tue Jan 20 23:14:09 GMT 2026 - 3.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/index/operations/DeletionOperations.java
return deleteWordsByKind(index, FieldNames.QUERY_FREQ, SuggestItem.Kind.QUERY, item -> item.setQueryFreq(0), SuggestItem.Kind.DOCUMENT, SuggestItem.Kind.USER); } /** * Common method to delete words by kind. * * @param index The index name * @param freqField The frequency field name * @param kindToRemove The kind to remove * @param freqSetter The consumer to set frequency to 0
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sun Feb 01 12:48:24 GMT 2026 - 9.5K bytes - Click Count (0) -
tensorflow/c/eager/abstract_context.h
class AbstractContext { protected: enum AbstractContextKind { kGraph, kMlir, kEager, kTfrt, kTape, kOpHandler }; explicit AbstractContext(AbstractContextKind kind) : kind_(kind) {} virtual ~AbstractContext() {} public: AbstractContextKind getKind() const { return kind_; } // Release any underlying resources, including the interface object. // // WARNING: The destructor of this class is marked as protected to disallowCreated: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Sat Oct 12 05:11:17 GMT 2024 - 3K bytes - Click Count (0) -
tensorflow/c/eager/abstract_tensor_handle.h
// execution mode. class AbstractTensorHandle : public core::RefCounted { protected: enum AbstractTensorHandleKind { kGraph, kMlir, kEager, kTfrt, kCustomDevice }; explicit AbstractTensorHandle(AbstractTensorHandleKind kind) : kind_(kind) {} ~AbstractTensorHandle() override {} public: // Returns tensor dtype. virtual tensorflow::DataType DataType() const = 0; // Returns the status of the tensor handle. If it is a tfrt::TensorHandle,Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Sat Oct 12 05:11:17 GMT 2024 - 3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/suggest/entity/SuggestItemSerializerTest.java
source.put(FieldNames.TAGS, Arrays.asList("tag1")); source.put(FieldNames.ROLES, Arrays.asList("role1")); source.put(FieldNames.LANGUAGES, Arrays.asList("en")); source.put(FieldNames.KINDS, Arrays.asList("document")); source.put(FieldNames.TIMESTAMP, System.currentTimeMillis()); SuggestItem item = SuggestItemSerializer.fromSource(source); assertNotNull(item);
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sun Feb 01 12:48:24 GMT 2026 - 5.4K bytes - Click Count (0) -
tensorflow/c/eager/abstract_operation.h
kGraph, kMlir, kEager, kTfrt, kTape, kOpHandler }; explicit AbstractOperation(AbstractOperationKind kind) : kind_(kind) {} virtual ~AbstractOperation() {} public: AbstractOperationKind getKind() const { return kind_; } // Release any underlying resources, including the interface object. // // WARNING: The destructor of this class is marked as protected to disallowCreated: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Sat Oct 12 05:11:17 GMT 2024 - 7.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/constants/FieldNames.java
/** The document frequency field. */ public static final String DOC_FREQ = "docFreq"; /** The user boost field. */ public static final String USER_BOOST = "userBoost"; /** The kinds field. */ public static final String KINDS = "kinds"; /** The timestamp field. */ public static final String TIMESTAMP = "@timestamp"; /** The tags field. */ public static final String TAGS = "tags"; /** The roles field. */Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Fri Jul 04 14:00:23 GMT 2025 - 4.7K bytes - Click Count (0)