Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for u_size (0.15 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDocMethodsBuilder.java

            Set<String> signatures = new HashSet<String>();
    
            for (Element tr : children(classDoc.getMethodsTable(), "tr")) {
                List<Element> cells = children(tr, "td");
                if (cells.size() != 1) {
                    throw new RuntimeException(String.format("Expected 1 cell in <tr>, found: %s", tr));
                }
                String methodName = cells.get(0).getTextContent().trim();
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 4.2K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/JapicmpTask.java

        }
    
        private static List<JApiCmpWorkerAction.Archive> toArchives(FileCollection fc) {
            Set<File> files = fc.getFiles();
            List<JApiCmpWorkerAction.Archive> archives = new ArrayList<>(files.size());
            for (File file : files) {
                archives.add(new JApiCmpWorkerAction.Archive(file, "1.0"));
            }
            return archives;
        }
    
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Apr 26 10:58:32 GMT 2023
    - 13.3K bytes
    - Viewed (0)
Back to top