- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 183 for setDdd (0.09 sec)
-
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java
this.setPluginArtifact(ArtifactUtils.copyArtifactSafe(original.getPluginArtifact())); this.setComponents(clone(original.getMojos(), this)); this.setId(original.getId()); this.setIsolatedRealm(original.isIsolatedRealm()); this.setSource(original.getSource()); this.setDependencies(original.getDependencies());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 16.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/exentity/User.java
} public void setVersionNo(final Long version) { asDocMeta().version(version); } public String getId() { return asDocMeta().id(); } public void setId(final String id) { asDocMeta().id(id); } @Override public String[] getRoleNames() { return stream(getRoles()).get(stream -> stream.map(this::decode).toArray(n -> new String[n])); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.8K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/LegacyRepositorySystemTest.java
policy.setEnabled(true); policy.setChecksumPolicy("ignore"); policy.setUpdatePolicy("always"); Repository repository = new Repository(); repository.setId(RepositorySystem.DEFAULT_REMOTE_REPO_ID); repository.setUrl("file://" + repoDir.toURI().getPath()); repository.setReleases(policy); repository.setSnapshots(policy);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 8.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
/** * @return * @throws IOException */ private int negotiateWrite ( CommonServerMessageBlockRequest req, boolean setmid ) throws IOException { if ( setmid ) { makeKey(req); } else { req.setMid(0); this.mid.set(1); } int n = req.encode(this.sbuf, 4);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 18 23:47:00 UTC 2023 - 67K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/index/contents/document/ESSourceReaderTest.java
source.put("field2", i); IndexRequestBuilder indexRequestBuilder = new IndexRequestBuilder(client, IndexAction.INSTANCE); indexRequestBuilder.setIndex(indexName).setId(String.valueOf(i)).setCreate(true).setSource(source); bulkRequestBuilder.add(indexRequestBuilder); } bulkRequestBuilder.execute().actionGet(); runner.refresh(); }
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 8.9K bytes - Viewed (0) -
cmd/naughty-disk_test.go
defer d.mu.Unlock() d.callNR++ if err, ok := d.errors[d.callNR]; ok { return err } if d.defaultErr != nil { return d.defaultErr } return nil } func (d *naughtyDisk) GetDiskLoc() (poolIdx, setIdx, diskIdx int) { return -1, -1, -1 } func (d *naughtyDisk) GetDiskID() (string, error) { return d.disk.GetDiskID() } func (d *naughtyDisk) SetDiskID(id string) { d.disk.SetDiskID(id) }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Aug 12 08:38:15 UTC 2024 - 10.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchLogHelper.java
e.setUpdatedAt(now); return e; }).orElseGet(() -> { final UserInfo e = new UserInfo(); e.setId(userCode); e.setCreatedAt(now); e.setUpdatedAt(now); return e; }); CommonPoolUtil.execute(() -> userInfoBhv.insertOrUpdate(userInfo)); return userInfo;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jul 22 02:07:37 UTC 2024 - 21.7K bytes - Viewed (0) -
cmd/storage-rest-client.go
diskID atomic.Pointer[string] diskInfoCache *cachevalue.Cache[DiskInfo] } // Retrieve location indexes. func (client *storageRESTClient) GetDiskLoc() (poolIdx, setIdx, diskIdx int) { return client.endpoint.PoolIdx, client.endpoint.SetIdx, client.endpoint.DiskIdx } // Wrapper to restClient.CallWithMethod to handle network errors, in case of network error the connection is disconnected
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Oct 13 13:07:21 UTC 2024 - 30.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/exentity/WebAuthentication.java
} } return webConfig; } public String getId() { return asDocMeta().id(); } public void setId(final String id) { asDocMeta().id(id); } public Long getVersionNo() { return asDocMeta().version(); } public void setVersionNo(final Long version) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:15 UTC 2024 - 5.8K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchDataService.java
target.setCreateTime(getFieldValue(fields.get("createTime"), Long.class)); target.setLastModified(getFieldValue(fields.get("lastModified"), Long.class)); setId(target, searchHit.getId()); targetList.add(target); } } catch (final Exception e) { throw new OpenSearchAccessException("response: " + response, e);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 8.5K bytes - Viewed (0)