Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 67 for printuint (0.2 sec)

  1. testing/integ-test/src/integTest/groovy/org/gradle/integtests/ParallelStaleOutputIntegrationTest.groovy

                    Set<File> classpath = project.configurations["myconf"].files
                    BadTask() {
                        println("creating bad task")
                    }
                    @TaskAction
                    void printIt() {
                        def outputFile = getOutputFile().get().asFile
                        outputFile.text = "bad"
                    }
                }
    
                abstract class GoodTask extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tasks/taskConstructorArgs-onTaskContainer/groovy/build.gradle

        @Inject
        CustomTask(String message, int number) {
            this.message = message
            this.number = number
        }
    // end::inject-task-constructor[]
    
        @TaskAction
        void printIt() {
            println("$message $number")
        }
    // tag::inject-task-constructor[]
    }
    // end::inject-task-constructor[]
    
    // tag::on-task-container[]
    tasks.register('myTask', CustomTask, 'hello', 42)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 559 bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/modfile/print.go

    	// remove trailing blank lines
    	b := pr.Bytes()
    	for len(b) > 0 && b[len(b)-1] == '\n' && (len(b) == 1 || b[len(b)-2] == '\n') {
    		b = b[:len(b)-1]
    	}
    	return b
    }
    
    // A printer collects the state during printing of a file or expression.
    type printer struct {
    	bytes.Buffer           // output buffer
    	comment      []Comment // pending end-of-line comments
    	margin       int       // left margin (indent), a number of tabs
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 00:48:59 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/problems/failure/FailurePrinterListener.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.problems.failure;
    
    /**
     * Listener for steps in the process of printing a failure by {@link FailurePrinter}.
     */
    public interface FailurePrinterListener {
    
        FailurePrinterListener NO_OP = new FailurePrinterListener() {
            @Override
            public void beforeFrames() {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:45:41 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. hack/lib/logging.sh

      # expansions and subshells
      set -o errtrace
    }
    
    # Print out the stack trace
    #
    # Args:
    #   $1 The number of stack frames to skip when printing.
    kube::log::stack() {
      local stack_skip=${1:-0}
      stack_skip=$((stack_skip + 1))
      if [[ ${#FUNCNAME[@]} -gt ${stack_skip} ]]; then
        echo "Call stack:" >&2
        local i
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 06 14:40:08 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/JavadocOutputLevel.java

         * messages appear for loading the source files, generating the documentation (one message per source file), and sorting.
         * The verbose option causes the printing of additional messages specifying the number of milliseconds to parse each java source file.
         */
        VERBOSE,
        /**
         * -quiet
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/tasks/Exec.java

     *   workingDir '../tomcat/bin'
     *
     *   //on windows:
     *   commandLine 'cmd.exe', '/d', '/c', 'stop.bat'
     *
     *   //on linux
     *   commandLine './stop.sh'
     *
     *   //store the output instead of printing to the console:
     *   standardOutput = new ByteArrayOutputStream()
     *
     *   //extension method stopTomcat.output() can be used to obtain the output:
     *   ext.output = {
     *     return standardOutput.toString()
     *   }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/test/TestOutputEvent.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.events.test;
    
    import org.gradle.tooling.events.ProgressEvent;
    
    /**
     * An event that informs about a test printing text to the standard output or to the standard error.
     * <p>
     * A new test output event instance is created for each line of text printed by the test.
     *
     * @since 6.0
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/TestOutputListener.java

    import org.gradle.internal.DeprecatedInGradleScope;
    import org.gradle.internal.service.scopes.EventScope;
    import org.gradle.internal.service.scopes.Scope;
    
    /**
     * Listens to the output events like printing to standard output or error
     */
    @EventScope(Scope.Build.class)
    @DeprecatedInGradleScope
    public interface TestOutputListener {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. istioctl/pkg/writer/pilot/status.go

    	"istio.io/istio/istioctl/pkg/multixds"
    	"istio.io/istio/pilot/pkg/model"
    	xdsresource "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pkg/log"
    )
    
    // XdsStatusWriter enables printing of sync status using multiple xdsapi.DiscoveryResponse Istiod responses
    type XdsStatusWriter struct {
    	Writer                 io.Writer
    	Namespace              string
    	InternalDebugAllIstiod bool
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 04:16:55 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top