Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 141 for reopen (0.15 sec)

  1. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/internal/tooling/eclipse/DefaultEclipseWorkspaceProject.java

        private final String name;
        private final File location;
        private final boolean isOpen;
    
        public DefaultEclipseWorkspaceProject(String name, File location, boolean isOpen) {
            this.name = name;
            this.location = location;
            this.isOpen = isOpen;
        }
    
        @Override
        public String getName() {
            return name;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/DefaultEclipseWorkspaceProject.java

        private final String name;
        private final File location;
        private final boolean isOpen;
    
        public DefaultEclipseWorkspaceProject(String name, File location, boolean isOpen) {
            this.name = name;
            this.location = location;
            this.isOpen = isOpen;
        }
    
        public DefaultEclipseWorkspaceProject(String name, File location) {
            this(name, location, true);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/LockOnDemandCrossProcessCacheAccessTest.groovy

            def action = Mock(Supplier)
            def onOpen = Mock(Consumer)
            def onClose = Mock(Consumer)
            def lock = Mock(FileLock)
            def cacheAccess = new LockOnDemandCrossProcessCacheAccess("<cache>", file, DefaultLockOptions.mode(FileLockManager.LockMode.Exclusive), lockManager, new ReentrantLock(), Stub(CacheInitializationAction), onOpen, onClose)
    
            when:
            cacheAccess.withFileLock(action)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/LockOnDemandCrossProcessCacheAccess.java

            this.cacheDisplayName = cacheDisplayName;
            this.lockTarget = lockTarget;
            this.lockOptions = lockOptions;
            this.lockManager = lockManager;
            this.stateLock = stateLock;
            this.initAction = initAction;
            this.onOpen = onOpen;
            this.onClose = onClose;
            unlocker = new UnlockAction();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. src/crypto/aes/aes_gcm.go

    	if g.tagSize < gcmMinimumTagSize {
    		panic("crypto/cipher: incorrect GCM tag size")
    	}
    
    	if len(ciphertext) < g.tagSize {
    		return nil, errOpen
    	}
    	if uint64(len(ciphertext)) > ((1<<32)-2)*uint64(BlockSize)+uint64(g.tagSize) {
    		return nil, errOpen
    	}
    
    	tag := ciphertext[len(ciphertext)-g.tagSize:]
    	ciphertext = ciphertext[:len(ciphertext)-g.tagSize]
    
    	// See GCM spec, section 7.1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/issue4029.c

    #include <stdint.h>
    #include <dlfcn.h>
    
    // Write our own versions of dlopen/dlsym/dlclose so that we represent
    // the opaque handle as a Go uintptr rather than a Go pointer to avoid
    // garbage collector confusion.  See issue 23663.
    
    uintptr_t dlopen4029(char* name, int flags) {
    	return (uintptr_t)(dlopen(name, flags));
    }
    
    uintptr_t dlsym4029(uintptr_t handle, char* name) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 15:41:19 UTC 2023
    - 781 bytes
    - Viewed (0)
  7. src/crypto/aes/gcm_ppc64x.go

    	return ret
    }
    
    // Open authenticates and decrypts ciphertext. See the [cipher.AEAD] interface
    // for details.
    func (g *gcmAsm) Open(dst, nonce, ciphertext, data []byte) ([]byte, error) {
    	if len(nonce) != g.nonceSize {
    		panic("cipher: incorrect nonce length given to GCM")
    	}
    	if len(ciphertext) < g.tagSize {
    		return nil, errOpen
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. src/debug/dwarf/open.go

    cui fliter <******@****.***> 1697179713 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. src/os/dirent_js.go

    	return 1, true
    }
    
    func direntReclen(buf []byte) (uint64, bool) {
    	return readInt(buf, unsafe.Offsetof(syscall.Dirent{}.Reclen), unsafe.Sizeof(syscall.Dirent{}.Reclen))
    }
    
    func direntNamlen(buf []byte) (uint64, bool) {
    	reclen, ok := direntReclen(buf)
    	if !ok {
    		return 0, false
    	}
    	return reclen - uint64(unsafe.Offsetof(syscall.Dirent{}.Name)), true
    }
    
    func direntType(buf []byte) FileMode {
    	return ^FileMode(0) // unknown
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 00:59:20 UTC 2020
    - 678 bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/ClosedProjectSubstitutionCrossVersionSpec.groovy

        }
    
        EclipseWorkspaceProject gradleProject(String name, boolean isOpen = true) {
            project(name, file(name), isOpen)
        }
    
        EclipseWorkspaceProject project(String name, File location, boolean isOpen = true) {
            new DefaultEclipseWorkspaceProject(name, location, isOpen)
        }
    
        EclipseWorkspaceProject externalProject(String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top