Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 703 for SHOW (0.06 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/organizing_tasks.adoc

        dependsOn subprojects.collect { ":${it.name}:check" }
        dependsOn gradle.includedBuilds.collect { it.task(":checkAll") }
    }
    ----
    =====
    ====
    
    So we can now ask Gradle to show us the tasks for the root project and, by default, it will only show us the `qualityCheckAll` task (and optionally the `checkAll` task depending on the value of `displayGroups`).
    
    It should be clear what a user should run locally:
    
    [source, text]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 23:21:15 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. releasenotes/notes/48526.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 24 08:16:26 UTC 2023
    - 154 bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/benchmark.h

    // be used to test a model on android. See also code generation rules in
    // tfcompile.bzl.
    //
    // This is separate from the built-in micro-benchmarks, because we want to:
    // 1. show a binary with minimal dependencies, to show a close-to-lower-bound
    //    binary size.
    // 2. compile on Android.
    #ifndef TENSORFLOW_COMPILER_AOT_BENCHMARK_H_
    #define TENSORFLOW_COMPILER_AOT_BENCHMARK_H_
    
    #include <functional>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  4. docs/en/docs/how-to/general.md

    ## Documentation Summary and Description - OpenAPI
    
    To add a summary and description to your *path operations*, and show them in the docs UI, read the docs for [Tutorial - Path Operation Configurations - Summary and Description](../tutorial/path-operation-configuration.md#summary-and-description){.internal-link target=_blank}.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 19:54:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    	"compact_labels": "Show minimal headers",
    	"source_path":    "Search path for source files",
    	"trim_path":      "Path to trim from source paths before search",
    	"intel_syntax": helpText(
    		"Show assembly in Intel syntax",
    		"Only applicable to commands `disasm` and `weblist`"),
    
    	// Filtering options
    	"nodecount": helpText(
    		"Max number of nodes to show",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ClasspathDependenciesAttributesIntegrationTest.groovy

            def pluginModule = pluginBuilder.publishAs('test:plugin:1.0', mavenRepo, executer).pluginModule
            def pomFile = pluginModule.pom.file
            // Adds a dependency on the BOM to show that variant derivation is then available during project use
            pomFile.text = pomFile.text.replace('</project>', """
      <dependencies>
        <dependency>
          <groupId>test</groupId>
          <artifactId>bom</artifactId>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/plugins/customPlugin/readme.xml

    <sample>
        <para>A set of projects that show how to implement, test, publish and use a custom plugin and task.</para>
        <para>This sample contains the following projects:</para>
        <itemizedlist>
            <listitem>
                <para>The <filename>java-gradle-plugin</filename> directory contains the project that implements and publishes the plugin.</para>
            </listitem>
            <listitem>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 563 bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testerrors/testdata/issue18452.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 18452: show pos info in undefined name errors
    
    package p
    
    import (
    	"C"
    	"fmt"
    )
    
    func a() {
    	fmt.Println("Hello, world!")
    	C.function_that_does_not_exist() // ERROR HERE
    	C.pi                             // ERROR HERE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 390 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/providers/propertyConvention/groovy/build.gradle

    // tag::conventions[]
    tasks.register("show") {
        def property = objects.property(String)
    
        // Set a convention
        property.convention("convention 1")
    
        println("value = " + property.get())
    
        // Can replace the convention
        property.convention("convention 2")
        println("value = " + property.get())
    
        property.set("explicit value")
    
        // Once a value is set, the convention is ignored
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 540 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/providers/propertyConvention/kotlin/build.gradle.kts

    // tag::conventions[]
    tasks.register("show") {
        val property = objects.property(String::class)
    
        // Set a convention
        property.convention("convention 1")
    
        println("value = " + property.get())
    
        // Can replace the convention
        property.convention("convention 2")
        println("value = " + property.get())
    
        property.set("explicit value")
    
        // Once a value is set, the convention is ignored
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 547 bytes
    - Viewed (0)
Back to top