Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 3,031 for CONTENT (0.16 sec)

  1. src/main/java/org/codelibs/fess/es/config/bsentity/BsRelatedContent.java

        public String getContent() {
            checkSpecifiedProperty("content");
            return convertEmptyToNull(content);
        }
    
        public void setContent(String value) {
            registerModifiedProperty("content");
            this.content = value;
        }
    
        public String getCreatedBy() {
            checkSpecifiedProperty("createdBy");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tasks/incrementalTask/groovy/build.gradle

    tasks.register('originalInputs') {
        def inputsDir = layout.projectDirectory.dir('inputs')
        outputs.dir(inputsDir)
        doLast {
            inputsDir.file('1.txt').asFile.text = 'Content for file 1.'
            inputsDir.file('2.txt').asFile.text = 'Content for file 2.'
            inputsDir.file('3.txt').asFile.text = 'Content for file 3.'
        }
    }
    
    // tag::updated-inputs[]
    tasks.register('updateInputs') {
        def inputsDir = layout.projectDirectory.dir('inputs')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. tests/test_tutorial/test_bigger_applications/test_main_an_py39.py

                                "description": "Successful Response",
                                "content": {"application/json": {"schema": {}}},
                            },
                            "422": {
                                "description": "Validation Error",
                                "content": {
                                    "application/json": {
                                        "schema": {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  4. tests/test_tutorial/test_sql_databases/test_sql_databases_middleware.py

                "/users/": {
                    "get": {
                        "responses": {
                            "200": {
                                "description": "Successful Response",
                                "content": {
                                    "application/json": {
                                        "schema": {
                                            "title": "Response Read Users Users  Get",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:07:10 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/css/base.css

          navigates directly to section anchors.
         */
        #content h2[id], #content h3[id], #content h4[id] {
            padding-top: 60px;
        }
    
        #content h2[id] {
            /* Little extra room above h2s */
            margin-top: -1em;
        }
    
        #content h3[id], #content h4[id] {
            margin-top: -60px;
        }
    
        .site-header__navigation {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  6. test-site/public/index.html

    <html>
    <meta charset="utf-8">
    <meta http-equiv="content-style-type" content="text/css"/>
    <meta http-equiv="content-script-type" content="text/javascript"/>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>fess-suggest-test</title>
    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css"/>
    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.9K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/SourceFile.java

    import org.gradle.test.fixtures.file.TestFile;
    
    public class SourceFile {
        private final String path;
        private final String name;
        private final String content;
    
        public SourceFile(String path, String name, String content) {
            this.content = content;
            this.path = path;
            this.name = name;
        }
    
        public String getPath() {
            return path;
        }
    
        public String getName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishPomPackagingIntegTest.groovy

        }
    
        def "uses 'pom' packaging where multiple artifacts are unclassified"() {
            given:
            createBuildScripts """
                artifact("content.txt")
                artifact("content.txt") {
                    extension "rtf"
                }
    """
    
            when:
            succeeds "publish"
    
            then:
            mavenModule.assertPublished()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  9. subprojects/core/src/testFixtures/groovy/org/gradle/api/tasks/TasksWithInputsAndOutputs.groovy

                    DirProducer() {
                        content.convention("content")
                    }
    
                    @TaskAction
                    def go() {
                        def dir = output.get().asFile
                        def content = this.content.get()
                        if (content.empty) {
                            fs.delete { delete(dir) }
                        } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/archive/impl/StreamZipInputTest.groovy

        }
    
        def "cannot read zip entry content a second time"() {
            def zipInput = new StreamZipInput(makeZip("foo.zip").newInputStream())
    
            when:
            def zipEntry = zipInput.iterator().next()
            def content = zipEntry.content
    
            then:
            content == ZIP_ENTRY_CONTENT.bytes
            noExceptionThrown()
    
            when:
            zipEntry.content
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top