Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Graves (3.38 sec)

  1. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/ClassVisitorScope.java

         * Adds a getter that returns the value that the given code leaves on the top of the stack.
         */
        protected void addGetter(String methodName, Type returnType, String methodDescriptor, BytecodeFragment body) {
            addGetter(methodName, returnType, methodDescriptor, null, body);
        }
    
        /**
         * Adds a getter that returns the value that the given code leaves on the top of the stack.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:25 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/WindowsFileWatcherRegistryFactory.java

    public class WindowsFileWatcherRegistryFactory extends AbstractFileWatcherRegistryFactory<WindowsFileEventFunctions, WindowsFileWatcher> {
    
        // 64 kB is the limit for SMB drives
        // See https://docs.microsoft.com/en-us/windows/win32/api/winbase/nf-winbase-readdirectorychangesw#remarks:~:text=ERROR_INVALID_PARAMETER
        private static final int BUFFER_SIZE = 64 * 1024;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:33 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/client-services/src/main/java/org/gradle/internal/daemon/client/serialization/ClasspathInferer.java

                ClassReader reader;
                URLConnection urlConnection = resource.openConnection();
                if (urlConnection instanceof JarURLConnection) {
                    // Using the caches for these connections leaves the Jar files open. Don't use the cache, so that the Jar file is closed when the stream is closed below
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ClassLoaderUtils.java

            // Changes to jar files won't be noticed in all cases when caching is enabled.
            // sun.net.www.protocol.jar.JarURLConnection leaves the JarFile instance open if URLConnection caching is enabled.
            try {
                URL url = new URL("jar:file://valid_jar_url_syntax.jar!/");
                URLConnection urlConnection = url.openConnection();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top