Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for canRename (0.88 sec)

  1. guava-tests/test/com/google/common/io/FilesTest.java

        private final boolean canRename;
        private final boolean canDelete;
    
        public UnmovableFile(File file, boolean canRename, boolean canDelete) {
          super(file.getPath());
          this.canRename = canRename;
          this.canDelete = canDelete;
        }
    
        @Override
        public boolean renameTo(File to) {
          return canRename && super.renameTo(to);
        }
    
        @Override
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 22.2K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/io/FilesTest.java

        private final boolean canRename;
        private final boolean canDelete;
    
        public UnmovableFile(File file, boolean canRename, boolean canDelete) {
          super(file.getPath());
          this.canRename = canRename;
          this.canDelete = canDelete;
        }
    
        @Override
        public boolean renameTo(File to) {
          return canRename && super.renameTo(to);
        }
    
        @Override
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 22.2K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KtFirDestructuringDeclarationReference.kt

    class KtFirDestructuringDeclarationReference(
        element: KtDestructuringDeclarationEntry
    ) : KtDestructuringDeclarationReference(element), KtFirReference {
        override fun canRename(): Boolean = false //todo
    
        override fun KtAnalysisSession.resolveToSymbols(): Collection<KtSymbol> {
            check(this is KtFirAnalysisSession)
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu May 05 08:43:13 GMT 2022
    - 1.6K bytes
    - Viewed (0)
  4. cmd/erasure.go

    			for bucket := range bucketCh {
    				select {
    				case <-ctx.Done():
    					return
    				default:
    				}
    
    				// Load cache for bucket
    				cacheName := pathJoin(bucket.Name, dataUsageCacheName)
    				cache := dataUsageCache{}
    				scannerLogIf(ctx, cache.load(ctx, er, cacheName))
    				if cache.Info.Name == "" {
    					cache.Info.Name = bucket.Name
    				}
    				cache.Info.SkipHealing = healing
    				cache.Info.NextCycle = wantCycle
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Apr 26 06:32:14 GMT 2024
    - 16K bytes
    - Viewed (1)
  5. api/go1.1.txt

    pkg syscall (openbsd-amd64-cgo), const WUNTRACED = 2
    pkg syscall (windows-386), const AF_INET6 = 23
    pkg syscall (windows-386), const AF_NETBIOS = 17
    pkg syscall (windows-386), const AI_CANONNAME = 2
    pkg syscall (windows-386), const AI_CANONNAME ideal-int
    pkg syscall (windows-386), const AI_NUMERICHOST = 4
    pkg syscall (windows-386), const AI_NUMERICHOST ideal-int
    pkg syscall (windows-386), const AI_PASSIVE = 1
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
Back to top