Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 128 for printuint (0.2 sec)

  1. platforms/core-configuration/declarative-dsl-provider/src/testFixtures/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeFixture.groovy

                    }
    
                    @Override
                    public String toString() {
                        return super.toString() +
                            "\\nlist = " + printList(getList().get()) +
                            "\\nbaz = " + printList(getBar().getBaz().get()) +
                            "\\napi = " + printDependencies(getDependencies().getApi()) +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:26 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/stream_executor/stream_executor.h

      // here.
      void* device_handle;
    
      // [Optional]
      // Device hardware name. Used for printing.
      // Must be null-terminated.
      const char* hardware_name;
    
      // [Optional]
      // Device vendor name. Used for printing.
      // Must be null-terminated.
      const char* device_vendor;
    
      // [Optional]
      // Returns the PCI bus identifier for this device, of the form
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 24 08:40:35 UTC 2022
    - 21.6K bytes
    - Viewed (0)
  3. internal/logger/logger.go

    	FatalKind   = madmin.LogKindFatal
    	WarningKind = madmin.LogKindWarning
    	ErrorKind   = madmin.LogKindError
    	EventKind   = madmin.LogKindEvent
    	InfoKind    = madmin.LogKindInfo
    )
    
    var (
    	// DisableErrorLog avoids printing error/event/info kind of logs
    	DisableErrorLog = false
    	// Output allows configuring custom writer, defaults to os.Stderr
    	Output io.Writer = os.Stderr
    )
    
    var trimStrings []string
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/token.go

    		},
    	}
    
    	options.AddConfigFlag(createCmd.Flags(), &cfgPath)
    	createCmd.Flags().BoolVar(&printJoinCommand,
    		"print-join-command", false, "Instead of printing only the token, print the full 'kubeadm join' flag needed to join the cluster using the token.")
    	createCmd.Flags().StringVar(&certificateKey,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  5. src/internal/pkgbits/decoder.go

    	writerPCs := make([]int, r.rawUvarint())
    	for i := range writerPCs {
    		writerPCs[i] = int(r.rawUvarint())
    	}
    
    	if mHave == mWant {
    		return
    	}
    
    	// There's some tension here between printing:
    	//
    	// (1) full file paths that tools can recognize (e.g., so emacs
    	//     hyperlinks the "file:line" text for easy navigation), or
    	//
    	// (2) short file paths that are easier for humans to read (e.g., by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 20:58:46 UTC 2022
    - 13.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/pkg/printers/tableprinter.go

    // more elegant output. It is not threadsafe, but you may call PrintObj repeatedly; headers
    // will only be printed if the object type changes. This makes it useful for printing items
    // received from watches.
    type HumanReadablePrinter struct {
    	options        PrintOptions
    	lastType       interface{}
    	lastColumns    []metav1.TableColumnDefinition
    	printedHeaders bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 30 15:08:43 UTC 2022
    - 16.7K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildIntegrationTest.groovy

                    outputs.dir(layout.buildDirectory.dir('myDir'))
                    ${actionMethodName}('myAction') { println("printing from action") }
                }
            """
    
            when:
            run ':myTask'
            then:
            executedAndNotSkipped(':myTask')
            outputContains("printing from action")
    
            when:
            buildFile << """
                tasks.register('other')
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/ThreadOutputMuxer.java

        private volatile ProjectSegment currentBuild;
    
        private final PrintStream originalSystemOUtStream;
    
        private final ConsolePrinter printer;
    
        /**
         * A simple but safe solution for printing to the console.
         */
        class ConsolePrinter implements Runnable {
            private volatile boolean running;
    
            private final ProjectBuildList projectBuildList;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  9. src/fmt/format.go

    		}
    	} else if f.zero && !f.minus && f.widPresent { // Zero padding is allowed only to the left.
    		prec = f.wid
    		if negative || f.plus || f.space {
    			prec-- // leave room for sign
    		}
    	}
    
    	// Because printing is easier right-to-left: format u into buf, ending at buf[i].
    	// We could make things marginally faster by splitting the 32-bit case out
    	// into a separate block but it's not worth the duplication, so u has 64 bits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskDefinitionIntegrationTest.groovy

                @Inject
                CustomTask(String message, int number) {
                    this.message = message
                    this.number = number
                }
    
                @TaskAction
                void printIt() {
                    println("\$message \$number")
                }
            }
        """
    
        def "can define tasks using task keyword and identifier"() {
            buildFile << """
                task nothing
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 14:43:53 UTC 2024
    - 21.6K bytes
    - Viewed (0)
Back to top