Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for freemark (0.13 sec)

  1. src/runtime/heapdump.go

    var freemark [_PageSize / 8]bool
    
    func dumpobjs() {
    	// To protect mheap_.allspans.
    	assertWorldStopped()
    
    	for _, s := range mheap_.allspans {
    		if s.state.get() != mSpanInUse {
    			continue
    		}
    		p := s.base()
    		size := s.elemsize
    		n := (s.npages << _PageShift) / size
    		if n > uintptr(len(freemark)) {
    			throw("freemark array doesn't have enough entries")
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaIntegrationTest.groovy

                'flexmark-ext-autolink', 'flexmark-ext-emoji', 'flexmark-ext-gfm-strikethrough', 'flexmark-ext-gfm-tables',
                'flexmark-ext-gfm-tasklist', 'flexmark-ext-wikilink', 'flexmark-ext-yaml-front-matter', 'liqp', 'jsoup', 'jackson-dataformat-yaml',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/tests/analysis/cost_analysis.mlir

        // expected-remark@+1 {{Cost: 1}}
        %9 = "tf.Const"() {value = dense<> : tensor<0x!tf_type.string>} : () -> tensor<0x!tf_type.string>
        // expected-remark@+1 {{Cost: 1}}
        %10 = "tf.Const"() {value = dense<1> : tensor<i32>} : () -> tensor<i32>
        // expected-remark@+1 {{Cost: 1}}
        %11 = "tf.Const"() {value = dense<-1> : tensor<i32>} : () -> tensor<i32>
        // expected-remark@+1 {{Cost: 19}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. tensorflow/compiler/mlir/tensorflow/tests/resource-alias-analysis-test.mlir

      // expected-remark@below {{Result #0, ID 8 : Unknown}}
      // expected-remark@below {{Result #1, ID 9 : 1, 8, 9, 10, 12, 13}}
      // expected-remark@below {{Result #2, ID 10 : 1, 8, 9, 10, 12, 13}}
      // expected-remark@below {{Region #0, Arg #0, ID 2 : 1, 2, 8}}
      // expected-remark@below {{Region #0, Arg #1, ID 3 : 1, 3, 8}}
      // expected-remark@below {{Region #0, Arg #2, ID 4 : 1, 4, 8}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 21 17:19:47 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/side-effect-analysis-test.mlir

          // expected-remark@above {{ID: 8}}
          // expected-remark@above {{Predecessors: {5,6}}}
          // expected-remark@above {{Successors: {9}}}
          tf_executor.yield
          // expected-remark@above {{ID: 9}}
          // expected-remark@above {{Predecessors: {7,8}}}
        }
        tf_executor.fetch %island : !tf_executor.control
        // expected-remark@above {{ID: 11}}
        // expected-remark@above {{Predecessors: {10}}}
      }
      func.return
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 129.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top