Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/ModelMapDslIntegrationTest.groovy

            test(Thing) {
                value = "12"
            }
        }
    }
    '''
            when:
            succeeds "show"
    
            then:
            outputContains("value = 12")
        }
    
        def "nested configure rule is executed only as required"() {
            buildFile << '''
    model {
        tasks {
            show(Task) {
                doLast {
                    println "value = " + $.things.test.value
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolvedArtifactsApiIntegrationTest.groovy

                        }
                    }
                }
            }
        }
    }
    
    task show {
        def artifacts = configurations.compile.${expression}
        doLast {
            println "files: " + artifacts.collect { it.file.name }
            throw new RuntimeException()
        }
    }
    """
    
            when:
            fails 'show'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionLifecycleIntegrationTest.groovy

                thing.generatedFiles.from(generateFile)
                thing.generatedFiles.finalizeValueOnRead()
    
                task show {
                    dependsOn thing.generatedFiles
                }
            """
            when:
            run("show")
            then:
            result.assertTasksExecuted(":generate", ":show")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 10:55:07 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ExternalModuleVariantsIntegrationTest.groovy

                    compile 'test:test:1.2:util'
                    compile 'test:test:1.2:util@aar'
                    compile('test:test-api:1.2') { targetConfiguration = 'compile' }
                }
                task show {
                    def artifacts = configurations.compile.incoming.artifacts
                    inputs.files artifacts.artifactFiles
                    doLast {
                        artifacts.each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 21K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  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/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)
  9. 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)
  10. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyLifecycleIntegrationTest.groovy

                        thing.prop.get()
                    } catch(IllegalStateException e) {
                        println("get in afterEvaluate failed with: " + e.message)
                    }
                }
    
                task show {
                    def thing = thing
                    // Task graph calculation is ok
                    dependsOn {
                        println("value = " + thing.prop.get())
                        try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 14:00:52 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top