Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 489 for Tiller (0.3 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/base/KtKeywordRenderer.kt

            keywords: List<KtKeywordToken>,
            owner: KaAnnotated,
            keywordsRenderer: KaKeywordsRenderer,
            printer: PrettyPrinter,
        ) {
            val applicableKeywords = keywords.filter { keywordsRenderer.keywordFilter.filter(analysisSession, it, owner) }
            printer.printCollection(applicableKeywords, separator = " ") {
                renderKeyword(analysisSession, it, owner, keywordsRenderer, this)
            }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/workerApi/noIsolation/kotlin/build.gradle.kts

        override fun execute() {
            fileSystemOperations.copy {
                from(parameters.fileToReverse)
                into(parameters.destinationDir)
                filter { line: String -> line.reversed() }
            }
        }
    }
    // end::unit-of-work[]
    
    // tag::task-implementation[]
    // The WorkerExecutor will be injected by Gradle at runtime
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/project/ExtensionProperties.kt

        override fun extractProperties(kClass: KClass<*>, propertyNamePredicate: (String) -> Boolean): Iterable<CollectedPropertyInformation> =
            extensionPropertiesByClass[kClass]?.filter { propertyNamePredicate(it.name) } ?: emptyList()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 13:24:52 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts

            extension.enabled.convention(this.name == "main")
    
            project.dependencies.addProvider(
                annotationProcessorConfigurationName,
                extension.enabled.filter { it }.map { "com.google.errorprone:error_prone_core:2.24.1" }
            )
    
            project.tasks.named<JavaCompile>(this.compileJavaTaskName) {
                options.errorprone {
                    isEnabled = extension.enabled
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:36 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/cpp-sourcesets-compilation.dot

      }
    
      subgraph secondLine {
        includeRoot[style="rounded,filled", fillcolor="#bfffbf", label="Compilation include roots"]
      }
    
      subgraph thirdLine {
        {rank=same sourceFiles compileVariantCpp outputDirectory}
        includeRoot -> compileVariantCpp
        sourceFiles -> compileVariantCpp
        compileVariantCpp -> outputDirectory
    
        sourceFiles[style="rounded,filled", fillcolor="#bfffbf", label="Source files"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtScopeProvider.kt

         * order of their containing scopes, which are sorted according to their indexes in scope tower.
         */
        public fun KaScopeContext.getCompositeScope(filter: (KaScopeKind) -> Boolean = { true }): KaScope = withValidityAssertion {
            val subScopes = scopes.filter { filter(it.kind) }.map { it.scope }
            subScopes.asCompositeScope()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. src/main/assemblies/extension/kibana/README.md

    1. Click **Management**.
    1. Click **Index Patterns**.
    1. Click **Create index pattern** button
    1. Input "fess\_log\*" to the textbox of **index pattern**.
    1. Click **Next step**.
    1. Set "requestedAt" to the **Time Filter field name**.
    1. Click **Create index pattern**.
    1. Click **Saved Objects**.
    1. Click **Import** and select "fess\_log.ndjson" to import example settings.
    1. Click **Dashboard**.
    1. Select "fess\_log" dashboard.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Aug 12 01:26:21 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/files/fileTrees/groovy/build.gradle

    tree = fileTree(dir: 'src', include: '**/*.java', exclude: '**/*test*/**')
    // end::define[]
    
    // tag::use[]
    // Iterate over the contents of a tree
    tree.each {File file ->
        println file
    }
    
    // Filter a tree
    FileTree filtered = tree.matching {
        include 'org/gradle/api/**'
    }
    
    // Add trees together
    FileTree sum = tree + fileTree(dir: 'src/test')
    
    // Visit the elements of the tree
    tree.visit {element ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/resource_inlining.mlir

    // RUN: tf-opt -tf-standard-pipeline=enable-inliner %s | FileCheck %s --dump-input=always
    
    // Tests function with argument has no resource subtype but caller operand has a
    // resource subtype, and after shape inference, function argument is refined and
    // no `tf.Cast` ops are generated.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:47:26 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/layout_optimization_to_nhwc.mlir

                                 %arg2: tensor<256xf32>,          // batch_norm args
                                 %arg3: tensor<7x7x3x64xf32>,    // conv filter #0
                                 %arg4: tensor<1x1x64x256xf32>   // conv filter #1
                                ) -> tensor<?x256xf32> {
    
      // This is a simplified ResNet layer that gets input in NHWC format, converts
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top