Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 395 for printssa (0.2 sec)

  1. pkg/printers/interface.go

    import (
    	"io"
    
    	"k8s.io/apimachinery/pkg/runtime"
    )
    
    // ResourcePrinter is an interface that knows how to print runtime objects.
    type ResourcePrinter interface {
    	// Print receives a runtime object, formats it and prints it to a writer.
    	PrintObj(runtime.Object, io.Writer) error
    }
    
    // ResourcePrinterFunc is a function that can print objects
    type ResourcePrinterFunc func(runtime.Object, io.Writer) error
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 23 06:45:08 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/op_stat_pass.h

    #include <memory>
    #include <string>
    
    #include "mlir/Pass/Pass.h"  // from @llvm-project
    
    namespace mlir {
    namespace odml {
    
    // Creates a pass which prints out a detailed report of conversion stats with:
    // success or not, % of Ops non-converted, list of non-converted Ops, etc.
    std::unique_ptr<Pass> createPrintOpStatsPass(
        std::vector<std::string> accepted_dialects);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 24 21:06:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. src/os/signal/example_unix_test.go

    	if err := p.Signal(os.Interrupt); err != nil {
    		log.Fatal(err)
    	}
    
    	select {
    	case <-neverReady:
    		fmt.Println("ready")
    	case <-ctx.Done():
    		fmt.Println(ctx.Err()) // prints "context canceled"
    		stop()                 // stop receiving signal notifications as soon as possible.
    	}
    
    	// Output:
    	// context canceled
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 15:34:56 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/templates/build-src-plugin-java-module-transform/application/src/main/java/org/gradle/sample/app/Main.java

    public class Main {
    
        public static void main(String[] args) throws Exception {
            Options options = new Options();
            options.addOption("json", true, "data to parse");
            options.addOption("debug", false, "prints module infos");
            CommandLineParser parser = new DefaultParser();
            CommandLine cmd = parser.parse(options, args);
    
            if (cmd.hasOption("debug")) {
                printModuleDebug(Main.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/compare/listener.go

    import (
    	"bytes"
    	"fmt"
    
    	"github.com/pmezard/go-difflib/difflib"
    
    	// Force import protos
    	_ "istio.io/istio/pilot/pkg/xds/filters"
    	"istio.io/istio/pkg/util/protomarshal"
    )
    
    // ListenerDiff prints a diff between Istiod and Envoy listeners to the passed writer
    func (c *Comparator) ListenerDiff() error {
    	envoyBytes, istiodBytes := &bytes.Buffer{}, &bytes.Buffer{}
    	envoyListenerDump, err := c.envoy.GetDynamicListenerDump(true)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. apache-maven/src/assembly/maven/conf/logging/simplelogger.properties

    org.slf4j.simpleLogger.cacheOutputStream=true
    org.slf4j.simpleLogger.levelInBrackets=true
    org.slf4j.simpleLogger.log.Sisu=info
    org.slf4j.simpleLogger.warnLevelString=WARNING
    
    # MNG-6181: mvn -X also prints all debug logging from HttpClient
    org.slf4j.simpleLogger.log.org.apache.http=off
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 16 16:19:23 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/serialize_mlir_module_utils.h

    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "mlir/IR/MLIRContext.h"  // from @llvm-project
    #include "tensorflow/core/platform/status.h"
    
    namespace tensorflow {
    
    // Prints a MLIR module `module_op` and returns it as a string.
    std::string SerializeMlirModule(mlir::ModuleOp module_op);
    
    // Parses a MLIR module from `mlir_module_string` into `mlir_module` with
    // context `mlir_context`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 22 14:25:57 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/WelcomeMessageActionTest.groovy

            return new WelcomeMessageAction(log, buildLayout, welcomeMessageConfiguration, gradleVersion, { welcomeMessage == null ? null : new ByteArrayInputStream(welcomeMessage.bytes) } as Function, delegateAction)
        }
    
        def "prints highlights when file exists and contains visible content"() {
            given:
            def action = createWelcomeMessage(GradleVersion.version("42.0"), """ - foo
     - bar
     """)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  9. istioctl/pkg/writer/pilot/status_test.go

    )
    
    func TestXdsStatusWriter_PrintAll(t *testing.T) {
    	tests := []struct {
    		name    string
    		input   map[string]*discovery.DiscoveryResponse
    		want    string
    		wantErr bool
    	}{
    		{
    			name: "prints multiple istiod inputs to buffer in alphabetical order by pod name",
    			input: map[string]*discovery.DiscoveryResponse{
    				"istiod1": xdsResponseInput("istiod1", []clientConfigInput{
    					{
    						proxyID:        "proxy1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 08 08:38:19 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. src/go/doc/comment/print.go

    // All blocks do, except for Lists that return false from x.BlankBefore().
    func blankBefore(x Block) bool {
    	if x, ok := x.(*List); ok {
    		return x.BlankBefore()
    	}
    	return true
    }
    
    // block prints the block x to out.
    func (p *commentPrinter) block(out *bytes.Buffer, x Block) {
    	switch x := x.(type) {
    	default:
    		fmt.Fprintf(out, "?%T", x)
    
    	case *Paragraph:
    		p.text(out, "", x.Text)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 7.6K bytes
    - Viewed (0)
Back to top