- Sort Score
- Result 10 results
- Languages All
Results 431 - 440 of 881 for exists (0.09 sec)
-
cmd/local-locker.go
if !ok { // No more resources for UID, but we did update at least one. return true, nil } } } } // Similar to removeEntry but only removes an entry only if the lock entry exists in map. // Caller must hold 'l.mutex' lock. func (l *localLocker) expireOldLocks(interval time.Duration) { l.mutex.Lock() defer l.mutex.Unlock() for k, lris := range l.lockMap { modified := false
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Jul 24 10:24:01 UTC 2024 - 10.7K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java
return pomRepositories; } private boolean hasFile(Artifact artifact) { return artifact != null && artifact.getFile() != null && artifact.getFile().exists(); } private List<ArtifactRepository> aggregateRepositories( List<ArtifactRepository> requestRepositories, List<ArtifactRepository> pomRepositories) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 30.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
final String fileName = artifact.getFileName(); final Path jarPath = Paths.get(ResourceUtil.getPluginPath().toString(), fileName); if (!Files.exists(jarPath)) { throw new PluginException(fileName + " does not exist."); } switch (artifact.getType()) { case THEME: ComponentUtil.getThemeHelper().uninstall(artifact);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 01:47:10 UTC 2024 - 17.8K bytes - Viewed (0) -
cmd/erasure-multipart.go
} func (er erasureObjects) getMultipartSHADir(bucket, object string) string { return getSHA256Hash([]byte(pathJoin(bucket, object))) } // checkUploadIDExists - verify if a given uploadID exists and is valid. func (er erasureObjects) checkUploadIDExists(ctx context.Context, bucket, object, uploadID string, write bool) (fi FileInfo, metArr []FileInfo, err error) { defer func() { if errors.Is(err, errFileNotFound) {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Sep 29 22:40:36 UTC 2024 - 44.7K bytes - Viewed (0) -
test-site/activator-launch-1.3.2.jar
scala/collection/TraversableLike$$anonfun$exists$1$$anonfun$apply$mcV$sp$3.class package scala.collection; public final synchronized class TraversableLike$$anonfun$exists$1$$anonfun$apply$mcV$sp$3 extends scala.runtime.AbstractFunction1 implements scala.Serializable { public void TraversableLike$$anonfun$exists$1$$anonfun$apply$mcV$sp$3(TraversableLike$$anonfun$exists$1); } scala/collection/TraversableLike$$anonfun$copyToArray$1.class package scala.collection; public final synchronized class TraversableLike...
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Mon Apr 20 08:41:37 UTC 2015 - 1.2M bytes - Viewed (0) -
guava/src/com/google/common/primitives/Doubles.java
* @param target a primitive {@code double} value * @return the least index {@code i} for which {@code array[i] == target}, or {@code -1} if no * such index exists. */ public static int indexOf(double[] array, double target) { return indexOf(array, target, 0, array.length); } // TODO(kevinb): consider making this public
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 15:52:18 UTC 2024 - 27.9K bytes - Viewed (0) -
src/archive/tar/common.go
paxHdrs[paxSchilyXattr+k] = v } whyOnlyPAX = "only PAX supports Xattrs" format.mayOnlyBe(FormatPAX) } if len(h.PAXRecords) > 0 { for k, v := range h.PAXRecords { switch _, exists := paxHdrs[k]; { case exists: continue // Do not overwrite existing records case h.Typeflag == TypeXGlobalHeader: paxHdrs[k] = v // Copy all records case !basicKeys[k] && !strings.HasPrefix(k, paxGNUSparse):
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Sep 13 21:03:27 UTC 2024 - 24.5K bytes - Viewed (0) -
cmd/erasure-server-pool.go
} return pinfo.Index, nil } // getPoolIdxExistingNoLock returns the (first) found object pool index containing an object. // If the object exists, but the latest version is a delete marker, the index with it is still returned. // If the object does not exist ObjectNotFound error is returned. // If any other error is found, it is returned. // The check is skipped if there is only one pool, and 0, nil is always returned in that case.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Sep 29 22:40:36 UTC 2024 - 89.8K bytes - Viewed (0) -
cmd/metacache-walk.go
legacyFS := !(s.fsType == xfs || s.fsType == ext4) s.RLock() legacy := s.formatLegacy s.RUnlock() // Verify if volume is valid and it exists. volumeDir, err := s.getVolDir(opts.Bucket) if err != nil { return err } if !skipAccessChecks(opts.Bucket) { // Stat a volume entry. if err = Access(volumeDir); err != nil {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Jun 01 05:17:37 UTC 2024 - 12.4K bytes - Viewed (0) -
src/main/resources/fess_message_ko.properties
errors.app.illegal.transition = 불법적인 전환으로 인해 다시 시도하십시오. errors.app.db.already.deleted = 다른 처리에서 제거되어 있을 수 있습니다. 작업을 확인하십시오. errors.app.db.already.updated = 다른 처리로 업데이트 되어 있을 수 있습니다. 작업을 확인하십시오. errors.app.db.already.exists = 데이터가 이미 존재합니다. 작업을 확인하십시오. errors.app.double.submit.request =이 요청하기 전에 처리되는 경우가 있습니다. 작업을 확인하십시오. # _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ # you can define your messages here:
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Jul 07 06:11:30 UTC 2018 - 11.1K bytes - Viewed (0)