Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 48 for parentEl (0.06 seconds)

  1. src/test/java/org/codelibs/fess/exception/ContentNotFoundExceptionTest.java

            // Test with normal URLs
            String parentUrl = "http://example.com/parent";
            String url = "http://example.com/child";
            ContentNotFoundException exception = new ContentNotFoundException(parentUrl, url);
    
            assertNotNull(exception);
            assertEquals("Not Found: http://example.com/child Parent: http://example.com/parent", exception.getMessage());
            assertNull(exception.getCause());
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 7.9K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/exception/ContentNotFoundException.java

        /**
         * Constructs a new ContentNotFoundException with the specified parent URL and URL.
         *
         * @param parentUrl the URL of the parent document
         * @param url the URL of the content that was not found
         */
        public ContentNotFoundException(final String parentUrl, final String url) {
            super("Not Found: " + url + " Parent: " + parentUrl, false, false);
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.3K bytes
    - Click Count (0)
  3. .teamcity/scripts/FindCommits.java

            List<String> parents =
                Arrays.stream(stdout("git", "show", "--no-patch", "--format=%P", headSha).trim().split("\\s+"))
                    .map(String::trim)
                    .filter(s -> !s.isEmpty())
                    .collect(Collectors.toList());
    
            String prHead = headSha;
            if (parents.size() >= 2) {
                String p1 = parents.get(0);
                String p2 = parents.get(1);
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Jan 20 03:53:25 GMT 2026
    - 5.5K bytes
    - Click Count (0)
  4. .teamcity/scripts/CheckBadMerge.java

            // 1. It's a merge commit.
            // 2. One of its parent commits is from master only.
            // 3. Another parent commit is not from master but from release branch.
            // Otherwise, skip this commit.
            List<String> p1Branches = branchesOf(parentCommits.get(0));
            List<String> p2Branches = branchesOf(parentCommits.get(1));
    
            System.out.println(commit + " parents: " + parentCommits);
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 16:25:09 GMT 2026
    - 9K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/entity/ParamMap.java

        private final Map<K, V> parent;
    
        /**
         * Creates a new parameter map.
         *
         * @param parent the parent map
         */
        public ParamMap(final Map<K, V> parent) {
            this.parent = parent;
        }
    
        /**
         * Gets the parent map.
         *
         * @return the parent map
         */
        public Map<K, V> getParent() {
            return parent;
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 5.8K bytes
    - Click Count (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDescriptionRenderer.java

        public void renderTo(ClassDoc classDoc, Element parent) {
            Document document = parent.getOwnerDocument();
    
            Element title = document.createElement("title");
            parent.appendChild(title);
            title.appendChild(document.createTextNode(classDoc.getSimpleName()));
    
            addApiDocumentationLink(classDoc, parent, document);
            addSubtypeLinks(classDoc, parent, document);
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 4.1K bytes
    - Click Count (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/DomBuilder.groovy

        Document document
        Node parent
        List elements = []
    
        def DomBuilder(Document document) {
            this.document = document
            this.parent = document
        }
    
        def DomBuilder(Node parent) {
            this.document = parent.ownerDocument
            this.parent = parent
        }
    
        def DomBuilder(Document document, Node parent) {
            this.document = document
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.7K bytes
    - Click Count (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/BuildableDOMCategory.groovy

        }
    
        public static def leftShift(Node parent, Closure cl) {
            DomBuilder builder = new DomBuilder(parent)
            cl.delegate = builder
            cl.call()
            return builder.elements[0]
        }
    
        public static void leftShift(Node parent, Node node) {
            parent.appendChild(parent.ownerDocument.importNode(node, true))
        }
    
        public static void addFirst(Node parent, Closure cl) {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Aug 11 15:32:19 GMT 2022
    - 2.8K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/util/DocMap.java

        /** The underlying map that this DocMap wraps */
        private final Map<String, Object> parent;
    
        /**
         * Constructor that creates a DocMap wrapping the given parent map.
         *
         * @param parent the map to wrap and delegate operations to
         */
        public DocMap(final Map<String, Object> parent) {
            this.parent = parent;
        }
    
        /**
         * Returns the number of key-value mappings in this map.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 5.7K bytes
    - Click Count (0)
  10. .github/workflows/maven.yml

            restore-keys: |
              ${{ runner.os }}-maven-
        - name: Checkout fess-parent
          uses: actions/checkout@v4
          with:
            repository: codelibs/fess-parent
            ref: ${{ env.PARENT_BRANCH }}
            path: fess-parent
        - name: Install fess-parent
          run: |
            cd fess-parent
            mvn install -Dgpg.skip=true
        - name: Download Plugins with Maven
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 15 12:54:47 GMT 2026
    - 1.5K bytes
    - Click Count (0)
Back to Top