Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for hasTitle (0.12 sec)

  1. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

                    documentHelper.getDigest(responseData, bodyBase, dataMap, fessConfig.getCrawlerDocumentFileMaxDigestLengthAsInteger()));
            // title
            if (!hasTitle(dataMap)) {
                final String titleField = fessConfig.getIndexFieldTitle();
                dataMap.remove(titleField);
                if (url.endsWith("/")) {
                    if (StringUtil.isNotBlank(content)) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/model/ModelReportIntegrationTest.groovy

        unsetNumbers(Numbers) { }
    }
    
    """
            buildFile
            when:
            run "model"
    
            then:
            def modelReportOutput = ModelReportOutput.from(output)
            modelReportOutput.hasTitle("Root project 'test'")
    
            and:
            modelReportOutput.nodeContentEquals('''
    + nullCredentials
          | Type:   \tPasswordCredentials
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 22K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/sftp/SFTPServer.groovy

                boolean authenticate(String username, PublicKey key, ServerSession session) {
                    return true
                }
            })
            return sshServer
        }
    
    
        boolean hasFile(String filePathToCheck) {
            new File(baseDir, filePathToCheck).exists()
        }
    
        TestFile file(String expectedPath) {
            new TestFile(new File(baseDir, expectedPath))
        }
    
        URI getUri() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top