Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 785 for printhex (0.2 sec)

  1. src/text/template/examplefunc_test.go

    		"title": strings.Title,
    	}
    
    	// A simple template definition to test our function.
    	// We print the input text several ways:
    	// - the original
    	// - title-cased
    	// - title-cased and then printed with %q
    	// - printed with %q and then title-cased.
    	const templateText = `
    Input: {{printf "%q" .}}
    Output 0: {{title .}}
    Output 1: {{title . | printf "%q"}}
    Output 2: {{printf "%q" . | title}}
    `
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/config/cluster.go

    func FetchInitConfigurationFromCluster(client clientset.Interface, printer output.Printer, logPrefix string, newControlPlane, skipComponentConfigs bool) (*kubeadmapi.InitConfiguration, error) {
    	if printer == nil {
    		printer = &output.TextPrinter{}
    	}
    	printer.Printf("[%s] Reading configuration from the cluster...\n", logPrefix)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. src/encoding/gob/type_test.go

    	if a3int == a3bool {
    		t.Errorf("registration of [3]bool creates same type as [3]int")
    	}
    	str := a3bool.string()
    	expected := "[3]bool"
    	if str != expected {
    		t.Errorf("array printed as %q; expected %q", str, expected)
    	}
    }
    
    func TestSliceType(t *testing.T) {
    	var s []int
    	sint := getTypeUnlocked("slice", reflect.TypeOf(s))
    	var news []int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:26:13 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  4. platforms/jvm/toolchains-jvm/src/crossVersionTest/groovy/org/gradle/jvm/toolchain/internal/install/ProvisionedJdkReuseCrossVersionIntegrationTest.groovy

                java.toolchain.languageVersion = JavaLanguageVersion.of(${differentVersion.javaVersion.majorVersion})
                application.mainClass = 'printer.JavaHomePrinter'
            """
            file('src/main/java/printer/JavaHomePrinter.java').text = """
                package printer;
                public class JavaHomePrinter {
                    public static void main(String[] args) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/asm_test.go

    			t.Errorf("%s reg0 mismatch: have %d, want %d",
    				test.printed, reg0, test.reg0)
    		}
    		if int16(reg1) != test.reg1 {
    			t.Errorf("%s reg1 mismatch: have %d, want %d",
    				test.printed, reg1, test.reg1)
    		}
    		wantPrinted := test.printed
    		if rlconv(enc) != wantPrinted {
    			t.Errorf("%s string mismatch: have %s, want %s",
    				test.printed, rlconv(enc), wantPrinted)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 28 19:39:51 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  6. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/symbols/AbstractMultiModuleSymbolByPsiTest.kt

    import org.jetbrains.kotlin.analysis.test.framework.project.structure.ktTestModuleStructure
    import org.jetbrains.kotlin.analysis.utils.printer.PrettyPrinter
    import org.jetbrains.kotlin.analysis.utils.printer.parentsOfType
    import org.jetbrains.kotlin.psi.KtDeclaration
    import org.jetbrains.kotlin.test.services.TestServices
    import org.jetbrains.kotlin.test.services.assertions
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. src/cmd/pack/doc.go

    Adding the letter v to an operation, as in pv or rv, enables verbose operation:
    For the c and r commands, names are printed as files are added.
    For the p command, each file is prefixed by the name on a line by itself.
    For the t command, the listing includes additional file metadata.
    For the x command, names are printed as files are extracted.
    */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  8. test/fixedbugs/bug414.dir/p1.go

    package p1
    
    import "fmt"
    
    type Fer interface {
    	f() string
    }
    
    type Object struct{}
    
    func (this *Object) f() string {
    	return "Object.f"
    }
    
    func PrintFer(fer Fer) {
    	fmt.Sprintln(fer.f())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 349 bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/AbstractProjectBasedReportTask.java

        /**
         * 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.
         *
         * @param modelsByProjectDetails information about the projects under report
         * @since 8.9
         */
        @Incubating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/dump_graph.h

        kTFG,
      };
    
      // The limit of element size that gets printed.
      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
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Dec 24 09:43:29 UTC 2022
    - 2.6K bytes
    - Viewed (0)
Back to top