- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for newDom (0.05 seconds)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/plugin/DefaultReportingConverter.java
private void addDom(Xpp3Dom parent, String childName, String childValue, InputLocation location) { if (StringUtils.isNotEmpty(childValue)) { parent.addChild(newDom(childName, childValue, location)); } } private Xpp3Dom newDom(String name, String value, InputLocation location) { Xpp3Dom dom = new Xpp3Dom(name, location); dom.setValue(value); return dom; }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 10 07:09:12 GMT 2025 - 9.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiItem.java
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 6.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/documents/ApiAdminDocumentsAction.java
final Map<String, Object> newDoc = fessConfig.convertToStorableDoc(doc); newDoc.put(indexFieldId, crawlingInfoHelper.generateId(newDoc)); newDoc.put(indexFieldDocId, systemHelper.generateDocId(newDoc)); if (newDoc.get(indexFieldLang) instanceof final List<?> langList) { if (langList.contains("auto")) { newDoc.remove(indexFieldLang); }
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 8.3K bytes - Click Count (0) -
internal/kms/secret-key.go
prf := hmac.New(sha256.New, s.key) prf.Write(iv) key := prf.Sum(make([]byte, 0, prf.Size())) block, err := aes.NewCipher(key) if err != nil { return DEK{}, err } aead, err := cipher.NewGCM(block) if err != nil { return DEK{}, err } plaintext, err := sioutil.Random(32) if err != nil { return DEK{}, err } ciphertext := aead.Seal(nil, nonce, plaintext, associatedData)
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Mon Apr 21 16:23:51 GMT 2025 - 8.4K bytes - Click Count (0)