Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 47 for freemark (0.13 sec)

  1. 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)
  2. 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)
  3. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-customTaskClass/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)
  4. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-incrementalBuildAdvanced/groovy/build.gradle

        testImplementation group: 'junit', name: 'junit', version: '4.+'
    }
    
    // tag::custom-task-class[]
    tasks.register('processTemplates', ProcessTemplates) {
        templateEngine = TemplateEngineType.FREEMARKER
        templateData.name = 'test'
        templateData.variables = [year: '2012']
        outputDir = file(layout.buildDirectory.dir('genOutput'))
    
        sources fileTree('src/templates')
    }
    // end::custom-task-class[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-incrementalBuildAdvanced/kotlin/build.gradle.kts

        testImplementation(group = "junit", name = "junit", version = "4.+")
    }
    
    // tag::custom-task-class[]
    tasks.register<ProcessTemplates>("processTemplates") {
        templateEngine = TemplateEngineType.FREEMARKER
        templateData.name = "test"
        templateData.variables = mapOf("year" to "2012")
        outputDir = layout.buildDirectory.dir("genOutput")
    
        sources(fileTree("src/templates"))
    }
    // end::custom-task-class[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_activity_listener.cc

    Status BroadcastOptimizationRemark(
        XlaOptimizationRemark::Warning optimization_warning,
        string debug_information) {
      XlaOptimizationRemark remark;
      remark.set_warning(optimization_warning);
      remark.set_debug_information(std::move(debug_information));
      return BroadcastOptimizationRemark(std::move(remark));
    }
    void RegisterXlaActivityListener(
        std::unique_ptr<XlaActivityListener> listener) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/resource_analyzer.mlir

    // assigned inside the function called by "tf.BatchFunction".
    
    module {
    // CHECK-LABEL: @serving_default
      func.func @serving_default() -> (tensor<*xi32>) {
        // expected-remark@below {{device: "", container: "", shared_name: "var_0", is_potentially_written: false}}
        %0 = "tf.VarHandleOp"() {shared_name = "var_0"} : () -> tensor<!tf_type.resource<tensor<2xi32>>>
        %1 = "tf.BatchFunction"(%0) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/swig/testdata/stdio/main.swig

    #include <stdio.h>
    #include <stdlib.h>
    %}
    
    %typemap(gotype) const char * "string"
    %typemap(in) const char * %{
    	$1 = malloc($input.n + 1);
    	memcpy($1, $input.p, $input.n);
    	$1[$input.n] = '\0';
    %}
    %typemap(freearg) const char * %{
    	free($1);
    %}
    
    FILE *fopen(const char *name, const char *mode);
    int fclose(FILE *);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:07 UTC 2023
    - 563 bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom

        <developer>
          <id>nat.pryce</id>
          <name>Nat Pryce</name>
          <roles>
            <role>Developer</role>
          </roles>
        </developer>
        <developer>
          <id>smgfreeman</id>
          <name>Steve Freeman</name>
          <roles>
            <role>Developer</role>
          </roles>
        </developer>
        <developer>
          <id>neildunn</id>
          <name>Neil Dunn</name>
          <roles>
            <role>Developer</role>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/tests/analysis/tensor_array_side_effect_analysis.mlir

    // RUN: tf-tfrt-opt -tfrt-test-tensor-array-effect -verify-diagnostics %s | FileCheck %s
    
    // CHECK-LABEL: @test_tensor_array_effect
    // expected-remark@+1 {{HasAtMostTensorArrayEffect: 1}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 12:41:10 UTC 2022
    - 1.7K bytes
    - Viewed (0)
Back to top