Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for hasTitle (0.3 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. maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java

            if (cached != null
                    // if the POM has no file, we cached a missing artifact, only return the cached data if no update forced
                    && (!request.isForceUpdate() || hasFile(cached.getPomArtifact()))) {
                return cached;
            }
    
            List<Dependency> dependencies;
    
            List<Dependency> managedDependencies = null;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 09:07:17 UTC 2023
    - 30.3K bytes
    - Viewed (0)
  4. 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