Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 99 for printuint (0.15 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskServiceInjectionIntegrationTest.groovy

                    @Inject
                    CustomTask(WorkerExecutor executor) {
                        this.executor = executor
                    }
    
                    @TaskAction
                    void printIt() {
                        println(executor != null ? "got it" : "NOT IT")
                    }
                }
    
                task myTask(type: CustomTask)
            """
    
            when:
            run 'myTask'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 7.9K bytes
    - Viewed (0)
  2. src/testing/iotest/logger.go

    	} else {
    		log.Printf("%s %x", l.prefix, p[0:n])
    	}
    	return
    }
    
    // NewWriteLogger returns a writer that behaves like w except
    // that it logs (using [log.Printf]) each write to standard error,
    // printing the prefix and the hexadecimal data written.
    func NewWriteLogger(prefix string, w io.Writer) io.Writer {
    	return &writeLogger{prefix, w}
    }
    
    type readLogger struct {
    	prefix string
    	r      io.Reader
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. src/cmd/fix/main_test.go

    	file, err := parser.ParseFile(fset, desc, in, parserMode)
    	if err != nil {
    		t.Errorf("parsing: %v", err)
    		return
    	}
    
    	outb, err := gofmtFile(file)
    	if err != nil {
    		t.Errorf("printing: %v", err)
    		return
    	}
    	if s := string(outb); in != s && mustBeGofmt {
    		t.Errorf("not gofmt-formatted.\n--- %s\n%s\n--- %s | gofmt\n%s",
    			desc, in, desc, s)
    		tdiff(t, "want", in, "have", s)
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 05:31:47 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/print_flags.go

    	"github.com/spf13/cobra"
    
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/cli-runtime/pkg/printers"
    )
    
    // NoCompatiblePrinterError is a struct that contains error information.
    // It will be constructed when a invalid printing format is provided
    type NoCompatiblePrinterError struct {
    	OutputFormat   *string
    	AllowedFormats []string
    	Options        interface{}
    }
    
    func (e NoCompatiblePrinterError) Error() string {
    	output := ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 04 00:16:47 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/pkg/printers/managedfields.go

    import (
    	"io"
    
    	"k8s.io/apimachinery/pkg/api/meta"
    	"k8s.io/apimachinery/pkg/runtime"
    )
    
    // OmitManagedFieldsPrinter wraps an existing printer and omits the managed fields from the object
    // before printing it.
    type OmitManagedFieldsPrinter struct {
    	Delegate ResourcePrinter
    }
    
    var _ ResourcePrinter = (*OmitManagedFieldsPrinter)(nil)
    
    func omitManagedFields(o runtime.Object) runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 16 14:52:03 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/AbstractProjectBasedReportTask.java

                );
            }
            return new ProjectBasedReportModel<>(map);
        }
    
        protected abstract T calculateReportModelFor(Project project);
    
        /**
         * Provides a means of printing a customizable header section above the per-project details body
         * of the report.
         * <p>
         * By default, there is no header information printed.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/dump_graph.h

      MlirDumpConfig& elide_large_attributes(int large_element_limit = 16) {
        this->op_printing_flags.elideLargeElementsAttrs(large_element_limit);
        return *this;
      }
    
      // Enable printing of debug information. If 'pretty_form' is set to true,
      // debug information is printed in a more readable 'pretty' form but this
      // pretty form is not parsable (so only for human readability).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Dec 24 09:43:29 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/dumper.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file implements printing of syntax tree structures.
    
    package syntax
    
    import (
    	"fmt"
    	"io"
    	"reflect"
    	"unicode"
    	"unicode/utf8"
    )
    
    // Fdump dumps the structure of the syntax tree rooted at n to w.
    // It is intended for debugging purposes; no specific output format
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 08 17:32:14 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  9. test/deferprint.out

    printing: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 00:12:24 UTC 2012
    - 126 bytes
    - Viewed (0)
  10. test/fixedbugs/issue4326.go

    // compiledir
    
    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Printing local variables in inliner shadows global names.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 253 bytes
    - Viewed (0)
Back to top