Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

    John Howard <******@****.***> 1704863403 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  2. src/math/rand/example_test.go

    	defer w.Flush()
    	show := func(name string, v1, v2, v3 any) {
    		fmt.Fprintf(w, "%s\t%v\t%v\t%v\n", name, v1, v2, v3)
    	}
    
    	// Float32 and Float64 values are in [0, 1).
    	show("Float32", r.Float32(), r.Float32(), r.Float32())
    	show("Float64", r.Float64(), r.Float64(), r.Float64())
    
    	// ExpFloat64 values have an average of 1 but decay exponentially.
    	show("ExpFloat64", r.ExpFloat64(), r.ExpFloat64(), r.ExpFloat64())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 16:24:57 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  3. src/math/rand/v2/example_test.go

    	defer w.Flush()
    	show := func(name string, v1, v2, v3 any) {
    		fmt.Fprintf(w, "%s\t%v\t%v\t%v\n", name, v1, v2, v3)
    	}
    
    	// Float32 and Float64 values are in [0, 1).
    	show("Float32", r.Float32(), r.Float32(), r.Float32())
    	show("Float64", r.Float64(), r.Float64(), r.Float64())
    
    	// ExpFloat64 values have an average of 1 but decay exponentially.
    	show("ExpFloat64", r.ExpFloat64(), r.ExpFloat64(), r.ExpFloat64())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 17:09:26 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  4. 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)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/resource/BrokenCompressedResourceIntegrationTest.groovy

            def file = file('compressed')
            buildFile << """
    def resource = resources.bzip2("compressed")
    
    task show {
        doLast {
            resource.read()
        }
    }
    """
    
            when:
            fails "show"
    
            then:
            failure.assertHasCause("Could not read '$file' as it does not exist.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 14 12:12:47 UTC 2016
    - 2.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ScalarCollectionIntegrationTest.groovy

        }
    
        @Mutate
        void tasks(ModelMap<Task> tasks, @Path("strings") def strings) {
            tasks.create("show") {
                doLast {
                    println "strings: \$strings"
                }
            }
        }
    }
    
    apply plugin: Rules
    """
    
            when:
            run("show")
    
            then:
            output.contains("strings: []")
    
            where:
            type << [Set, List]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. 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)
  8. .github/ISSUE_TEMPLATE/config.yml

        url: https://github.com/tiangolo/fastapi/discussions/categories/questions
      - name: Show and tell
        about: Show what you built with FastAPI or to be used with FastAPI.
        url: https://github.com/tiangolo/fastapi/discussions/categories/show-and-tell
      - name: Translations
        about: Coordinate translations in GitHub Discussions.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 31 14:02:52 UTC 2023
    - 930 bytes
    - Viewed (0)
  9. src/cmd/go/internal/doc/doc.go

    		Show documentation for json.Number's Int64 method.
    	go doc cmd/doc
    		Show package docs for the doc command.
    	go doc -cmd cmd/doc
    		Show package docs and exported symbols within the doc command.
    	go doc template.new
    		Show documentation for html/template's New function.
    		(html/template is lexically before text/template)
    	go doc text/template.new # One argument
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:52:29 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  10. 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)
Back to top