Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 703 for SHOW (0.06 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/StacktraceIntegrationTest.groovy

        def setup () {
            buildFile << 'throw new RuntimeException("show stacktrace was " + gradle.startParameter.showStacktrace)'
            settingsFile << 'rootProject.name = "stacktrace-integration-test-sample"'
        }
    
        def "no stacktrace is present in the output by default"() {
            when:
            fails()
    
            then:
            assertCauseWithoutStacktrace('show stacktrace was INTERNAL_EXCEPTIONS')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/resource/CompressedResourceIntegrationTest.groovy

            sourceFile.bzip2To(compressedFile)
    
            buildFile << """
    def resource = resources.bzip2("compressed")
    
    task show {
        doLast {
            def stream = resource.read()
            try { println stream.text } finally { stream.close() }
        }
    }
    """
    
            when:
            run "show"
    
            then:
            output.contains("hello")
        }
    
        def "can read from gzip file"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 14 12:12:47 UTC 2016
    - 1.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/RuleSourceAppliedByRuleMethodIntegrationTest.groovy

                model {
                    tasks {
                        show(Task) {
                            doLast {
                                println "p1 = " + $.p1.name
                                println "p2 = " + $.p2.name
                            }
                        }
                    }
                }
            '''
    
            when:
            run 'show'
    
            then:
            output.contains("applying rules to Thing 'p1'")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/initScripts/plugins/groovy/build.gradle

    // tag::show-repos-task[]
    repositories{
        mavenCentral()
    }
    
    @Immutable
    class RepositoryData {
        String name
        URI url
    }
    
    tasks.register('showRepositories') {
        def repositoryData = repositories.collect { new RepositoryData(it.name, it.url) }
        doLast {
            repositoryData.each {
                println "repository: ${it.name} ('${it.url}')"
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 431 bytes
    - Viewed (0)
  5. src/main/assemblies/extension/kibana/fess_log.ndjson

    categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"type\":\"category\",\"position\":\"bottom\",\"show\":true,\"style\":{},\"scale\":{\"type\":\"linear\"},\"labels\":{\"show\":true,\"truncate\":100},\"title\":{}}],\"valueAxes\":[{\"id\":\"ValueAxis-1\",\"name\":\"LeftAxis-1\",\"type\":\"value\",\"position\":\"left\",\"show\":true,\"style\":{},\"scale\":{\"type\":\"linear\",\"mode\":\"normal\"},\"labels\":{\"show\":true,\"rotate\":0,\"filter\":false,\"truncate\":100},\"title\":{\"text\":\"Query Count\"}...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Aug 12 01:26:21 UTC 2019
    - 18.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/internal/transform/NestedModelRuleDslDetectionIntegrationTest.groovy

            someProp.conf {
                println "outer 2"
                // not a rule
                conf { println "inner 1" }
            }
        }
        tasks {
            show(Task) { doLast { println $.thing } }
        }
    }
    '''
    
            expect:
            succeeds "show"
            output.contains("outer 1")
            output.contains("outer 2")
            output.contains("inner 1")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. pkg/ctrlz/assets/static/js/bootstrap-4.0.0.min.js

    nterface},C}(e),H=function(t){var e="collapse",n="bs.collapse",i="."+n,o=t.fn[e],a={toggle:!0,parent:""},l={toggle:"boolean",parent:"(string|element)"},h={SHOW:"show"+i,SHOWN:"shown"+i,HIDE:"hide"+i,HIDDEN:"hidden"+i,CLICK_DATA_API:"click"+i+".data-api"},c="show",u="collapse",f="collapsing",d="collapsed",_="width",g="height",p={ACTIVES:".show, .collapsing",DATA_TOGGLE:'[data-toggle="collapse"]'},m=function(){function i(e,n){this._isTransitioning=!1,this._element=e,this._config=this._getConfig(n)...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 47.8K bytes
    - Viewed (0)
  8. src/main/webapp/css/admin/plugins/daterangepicker/daterangepicker.css

    font-weight: bold;
    L286:  padding: 4px 8px;
    L287:}
    L288:
    L289:.daterangepicker.show-ranges.single.rtl .drp-calendar.left {
    L290:  border-right: 1px solid #ddd;
    L291:}
    L292:
    L293:.daterangepicker.show-ranges.single.ltr .drp-calendar.left {
    L294:  border-left: 1px solid #ddd;
    L295:}
    L296:
    L297:.daterangepicker.show-ranges.rtl .drp-calendar.right {
    L298:  border-right: 1px solid #ddd;
    L299:}
    L300:
    L301:.daterangepicker.show-ranges.ltr .drp-calendar.left {
    L302:  border-left: 1px solid #ddd;
    L303:}
    ...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 7.9K bytes
    - Viewed (0)
  9. 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)
  10. src/strings/example_test.go

    	// Output:
    	// 3
    	// 5
    }
    
    func ExampleCut() {
    	show := func(s, sep string) {
    		before, after, found := strings.Cut(s, sep)
    		fmt.Printf("Cut(%q, %q) = %q, %q, %v\n", s, sep, before, after, found)
    	}
    	show("Gopher", "Go")
    	show("Gopher", "ph")
    	show("Gopher", "er")
    	show("Gopher", "Badger")
    	// Output:
    	// Cut("Gopher", "Go") = "", "pher", true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 22:05:38 UTC 2023
    - 10.7K bytes
    - Viewed (0)
Back to top