Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 804 for emits (0.1 sec)

  1. src/runtime/trace/trace.go

    //
    // Package trace provides user annotation APIs that can be used to
    // log interesting events during execution.
    //
    // There are three types of user annotations: log messages, regions,
    // and tasks.
    //
    // [Log] emits a timestamped message to the execution trace along with
    // additional information such as the category of the message and
    // which goroutine called [Log]. The execution tracer provides UIs to filter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/AbstractSourceDependencyIntegrationTest.groovy

            run("help")
    
            then:
            result.assertTasksExecuted(":dep:compileJava", ":dep:processResources", ":dep:classes", ":dep:jar", ":help")
            assertRepoCheckedOut()
        }
    
    
        def 'emits sensible error when bad vcs url'() {
            mappingFor("https://bad.invalid", "org.test:dep")
    
            expect:
            fails('assemble')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  3. src/runtime/print.go

    			n := copy(printBacklog[printBacklogIndex:], b[i:])
    			i += n
    			printBacklogIndex += n
    			printBacklogIndex %= len(printBacklog)
    		}
    	}
    
    	printunlock()
    }
    
    var debuglock mutex
    
    // The compiler emits calls to printlock and printunlock around
    // the multiple calls that implement a single Go print or println
    // statement. Some of the print helpers (printslice, for example)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 03:27:26 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  4. src/cmd/internal/test2json/test2json.go

    )
    
    // event is the JSON struct we emit.
    type event struct {
    	Time    *time.Time `json:",omitempty"`
    	Action  string
    	Package string     `json:",omitempty"`
    	Test    string     `json:",omitempty"`
    	Elapsed *float64   `json:",omitempty"`
    	Output  *textBytes `json:",omitempty"`
    }
    
    // textBytes is a hack to get JSON to emit a []byte as a string
    // without actually copying it to a string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/CatalogPluginsKotlinDSLIntegrationTest.groovy

            """
    
            when:
            succeeds('greet', 'greet2')
    
            then:
            outputContains 'Hello from first plugin!'
            outputContains 'Hello from second plugin!'
        }
    
        def "emits deprecation warning when #useCase from plugins block"() {
    
            String taskName = 'greet'
            String message = 'Hello from plugin!'
            String pluginId = 'com.acme.greeter'
            String pluginVersion = '1.5'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependencies/internal/JsonProjectDependencyRenderer.java

    import java.util.Date;
    import java.util.HashSet;
    import java.util.LinkedHashMap;
    import java.util.LinkedHashSet;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    
    /**
     * Renderer that emits a JSON tree containing the HTML dependency report structure for a given project. The structure is the following:
     *
     * <pre>
     *     {
     *          "gradleVersion" : "...",
     *          "generationDate" : "...",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/facts/facts.go

    //
    // The handling of facts in the analysis system parallels the handling
    // of type information in the compiler: during compilation of package P,
    // the compiler emits an export data file that describes the type of
    // every object (named thing) defined in package P, plus every object
    // indirectly reachable from one of those objects. Thus the downstream
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestTaskToolchainIntegrationTest.groovy

            "executable"    | "when configured"                    | null     | "other"        | "other"
            "assigned tool" | "when configured"                    | "other"  | null           | "other"
        }
    
        def "emits deprecation warning if executable specified as relative path"() {
            given:
            def executable = TextUtil.normaliseFileSeparators(Jvm.current().javaExecutable.toString())
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    All test classes are based on the use of Spock, though it should be relatively easy to adapt the code to a different test framework.
    
    [[unit-tests]]
    === Implementing unit tests
    
    The URL verifier plugin emits HTTP GET calls to check if a URL can be resolved successfully.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. platforms/jvm/war/src/integTest/groovy/org/gradle/api/tasks/bundling/WarTaskIntegrationTest.groovy

            war.assertFileContent('WEB-INF/web.xml', webXml.text)
    
            when:
            withBuildCache().run "clean", "war"
    
            then:
            skipped ":war"
        }
    
        def "emits deprecation message when war convention is accessed"() {
            setup:
            buildFile << '''
                plugins {
                    id 'war'
                }
    
                tasks.register('custom') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:20:44 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top