Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 337 for SHOW (0.04 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/GroovyClasspathIntegrationTest.groovy

            buildFile << """
    tasks.register('show') {
      outputs.dir('build/test')
      doLast {
              // Now setup the writer
              def pw = new File(projectDir, "build/test/test-file.txt").toPath().newPrintWriter('UTF-8')
      }
    }
    """
    
            expect:
            succeeds("show")
        }
    
        def "script can use dateutil extensions"() {
            buildFile << """
    tasks.register('show') {
      doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. platforms/jvm/jvm-services/src/integTest/groovy/org/gradle/jvm/toolchain/JavaInstallationRegistryIntegrationTest.groovy

                    @Inject
                    abstract JavaInstallationRegistry getRegistry()
    
                    void apply(Project project) {
                        project.tasks.register("show") {
                            def installations = registry.listInstallations()
                            assert installations.size() == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:29:03 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_list_deprecated.txt

    # 'go list pkg' does not show deprecation.
    go list example.com/deprecated/a
    stdout '^example.com/deprecated/a$'
    
    # 'go list -m' does not show deprecation.
    go list -m example.com/deprecated/a
    stdout '^example.com/deprecated/a v1.9.0$'
    
    # 'go list -m -versions' does not show deprecation.
    go list -m -versions example.com/deprecated/a
    stdout '^example.com/deprecated/a v1.0.0 v1.9.0$'
    
    # 'go list -m -u' shows deprecation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.html

      </div>
      <div id="action-menu" class="submenu">
        <span id="action-title"></span>
        <hr>
        <a title="{{.Help.list}}" id="action-source" href="./source">Show source code</a>
        <a title="{{.Help.list}}" id="action-source-tab" href="./source" target="_blank">Show source in new tab</a>
        <hr>
        <a title="{{.Help.focus}}" id="action-focus" href="?">Focus</a>
        <a title="{{.Help.ignore}}" id="action-ignore" href="?">Ignore</a>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 1K bytes
    - Viewed (1)
  5. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceGraph.js

            const plot = plots[chartId];
            const plotData = plot.getData();
            $.each(plotData, function (index, value) {
                if (value.label == label) {
                    value.points.show = value.lines.show = !value.lines.show;
                }
            });
            plot.setData(plotData);
            plot.draw();
        };
    
        function renderGraphs(allDataJson, charts) {
            charts.forEach(chart => {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/html/header.html

          <a title="{{.Help.ignore}}" href="?" id="ignore">Ignore</a>
          <a title="{{.Help.hide}}" href="?" id="hide">Hide</a>
          <a title="{{.Help.show}}" href="?" id="show">Show</a>
          <a title="{{.Help.show_from}}" href="?" id="show-from">Show from</a>
          <hr>
          <a title="{{.Help.reset}}" href="?">Reset</a>
        </div>
      </div>
    
      <div id="config" class="menu-item">
        <div class="menu-name">
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolvedFilesApiIntegrationTest.groovy

            }
        }
        ${freeAndPaidFlavoredJars('b')}
    }
    
    task show {
        inputs.files ${expression}
        doLast {
            println "files: " + ${expression}.collect { it.name }
        }
    }
    """
            expect:
            2.times { maybeExpectDeprecation(expression) }
            succeeds("show")
            output.contains("files: [a-free.jar, b-paid.jar]")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  8. testing/integ-test/src/integTest/groovy/org/gradle/integtests/environment/BuildEnvironmentIntegrationTest.groovy

            }
    
            when:
            executer.withArguments("-Dprop1=some-value")
            run("show")
    
            then:
            output.count("prop1=some-value") == 2
            outputContains("prop2=null")
    
            when:
            executer.withArguments("-Dprop1=new-value", "-Dprop2=other-value")
            run("show")
    
            then:
            output.count("prop1=new-value") == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/composableFunctionMultiModules2.kt

    import p3.setContent
    
    fun test(): Int {
        return setContent {
            Greeting("test")
        }
    }
    
    @MyComposable
    fun Greeting(name: String) {
        show("hi $name!")
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Feb 26 21:57:23 UTC 2024
    - 542 bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/flot.selection.min.js

    on.mode=="x")pos.y=pos==selection.first?0:plot.height()}function updateSelection(pos){if(pos.pageX==null)return;setSelectionPos(selection.second,pos);if(selectionIsSane()){selection.show=true;plot.triggerRedrawOverlay()}else clearSelection(true)}function clearSelection(preventEvent){if(selection.show){selection.show=false;plot.triggerRedrawOverlay();if(!preventEvent)plot.getPlaceholder().trigger("plotunselected",[])}}function extractRange(ranges,coord){var axis,from,to,key,axes=plot.getAxes();for(var...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top