Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 291 for SHOW (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. .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)
  6. 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)
  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. 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)
  9. 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)
  10. src/cmd/go/testdata/script/mod_get_deprecated.txt

    # 'go get pkg' should not show a deprecation message for an unrelated module.
    go get ./use/nothing
    ! stderr 'module.*is deprecated'
    
    # 'go get pkg' should show a deprecation message for the module providing pkg.
    go get example.com/deprecated/a
    stderr '^go: module example.com/deprecated/a is deprecated: in example.com/deprecated/a@v1.9.0$'
    go get example.com/deprecated/a@v1.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.9K bytes
    - Viewed (0)
Back to top