Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for freemark (0.19 sec)

  1. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-customTaskClass/groovy/build.gradle

    import org.example.*
    
    plugins {
        id 'base'
    }
    
    def processTemplates = tasks.register('processTemplates', ProcessTemplates) {
        templateEngine = TemplateEngineType.FREEMARKER
        sourceFiles.from fileTree('src/templates')
        templateData.name = 'test'
        templateData.variables = [year: '2012']
        outputDir = file(layout.buildDirectory.dir('genOutput'))
    }
    
    interface Injected {
        @Inject FileSystemOperations getFs()
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-customTaskClass/kotlin/build.gradle.kts

    import org.example.*
    
    plugins {
        base
    }
    
    val processTemplates by tasks.registering(ProcessTemplates::class) {
        templateEngine = TemplateEngineType.FREEMARKER
        sourceFiles.from(fileTree("src/templates"))
        templateData.name = "test"
        templateData.variables = mapOf("year" to "2012")
        outputDir = file(layout.buildDirectory.dir("genOutput"))
    }
    
    interface Injected {
        @get:Inject val fs: FileSystemOperations
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/RenderMarkdown.java

     * limitations under the License.
     */
    
    package gradlebuild.docs;
    
    import com.vladsch.flexmark.ext.tables.TablesExtension;
    import com.vladsch.flexmark.html.HtmlRenderer;
    import com.vladsch.flexmark.parser.Parser;
    import com.vladsch.flexmark.util.options.MutableDataSet;
    import org.gradle.api.DefaultTask;
    import org.gradle.api.UncheckedIOException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 3.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb1/net/SmbShareInfo.java

        protected int type;
        protected String remark;
    
    
        /**
         * 
         */
        public SmbShareInfo () {}
    
    
        /**
         * 
         * @param netName
         * @param type
         * @param remark
         */
        public SmbShareInfo ( String netName, int type, String remark ) {
            this.netName = netName;
            this.type = type;
            this.remark = remark;
        }
    
    
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Feb 17 09:30:57 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbShareInfo.java

        protected String netName;
        protected int type;
        protected String remark;
    
        public SmbShareInfo() {
        }
        public SmbShareInfo(String netName, int type, String remark)
        {
            this.netName = netName;
            this.type = type;
            this.remark = remark;
        }
        public String getName() {
            return netName;
        }
        public int getType() {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/experimental/tac/tests/tac-filter.mlir

    // expected-remark@below {{Tac filter (0): filter type: function filter SKIP_TARGET_ANNOTATION, filter_pattern: "^testFunction"}}
    // expected-remark@below {{Tac filter (1): filter type: function filter INCLUDE_TARGET_ANNOTATION, filter_pattern: "testFunctionInclude"}}
    // expected-remark@below {{Tac filter (1) specified but not applied to any op}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 24 01:08:29 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-customTaskClass/groovy/buildSrc/src/main/java/org/example/TemplateEngineType.java

    package org.example;
    
    public enum TemplateEngineType {
        FREEMARKER, MOUSTACHE, VELOCITY;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 94 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-incrementalBuildAdvanced/groovy/buildSrc/src/main/java/org/example/TemplateEngineType.java

    package org.example;
    
    public enum TemplateEngineType {
        FREEMARKER, MOUSTACHE, VELOCITY;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 94 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-incrementalBuildAdvanced/kotlin/buildSrc/src/main/java/org/example/TemplateEngineType.java

    package org.example;
    
    public enum TemplateEngineType {
        FREEMARKER, MOUSTACHE, VELOCITY;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 94 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/cluster_ops_by_policy.mlir

        -> (tensor<?x?xf32> { tf.constraint = "value"  }) {
      // expected-remark@below {{operand #0 constrained to: rank}}
      %0 = "test.OpA"(%arg0) : (tensor<?x?xf32>) -> tensor<?x?xf32>
      // expected-remark@below {{operand #0 constrained to: shape}}
      %1 = "test.OpB"(%0) : (tensor<?x?xf32>) -> tensor<?x?xf32>
      // expected-remark@below {{operand #0 constrained to: value}}
      func.return %1 : tensor<?x?xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:47:26 UTC 2022
    - 1.2K bytes
    - Viewed (0)
Back to top