Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,018 for allDocs (0.27 sec)

  1. src/cmd/go/alldocs.go

    // default, and a program named go_$GOOS_$GOARCH_exec can be found
    // on the current search path, 'go run' invokes the binary using that program,
    // for example 'go_js_wasm_exec a.out arguments...'. This allows execution of
    // cross-compiled programs when a simulator or other execution method is
    // available.
    //
    // By default, 'go run' compiles the binary without generating the information
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. src/cmd/go/help_test.go

    		t.Fatalf("%v: %v\n%s", cmd, err, cmd.Stderr)
    	}
    
    	alldocs, err := format.Source(out)
    	if err != nil {
    		t.Fatalf("format.Source($(%v)): %v", cmd, err)
    	}
    
    	const srcPath = `alldocs.go`
    	old, err := os.ReadFile(srcPath)
    	if err != nil {
    		t.Fatalf("error reading %s: %v", srcPath, err)
    	}
    	diff := diff.Diff(srcPath, old, "go help documentation | gofmt", alldocs)
    	if diff == nil {
    		t.Logf("%s is up to date.", srcPath)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 28 15:45:49 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/bestPractices/taskDefinition/tests/taskDefinition.sample.conf

    executable: gradle
    args: allDocs
    flags: "--quiet"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 91 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/bestPractices/taskDefinition/kotlin/build.gradle.kts

        group = JavaBasePlugin.DOCUMENTATION_GROUP
        description = "Generates the HTML documentation for this project."
        title = "Project docs"
        outputDir = layout.buildDirectory.dir("docs")
    }
    
    tasks.register("allDocs") {
        group = JavaBasePlugin.DOCUMENTATION_GROUP
        description = "Generates all documentation for this project."
        dependsOn("generateHtmlDocs")
    
        doLast {
            logger.quiet("Generating all documentation...")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 538 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/bestPractices/taskDefinition/groovy/build.gradle

        group = JavaBasePlugin.DOCUMENTATION_GROUP
        description = 'Generates the HTML documentation for this project.'
        title = 'Project docs'
        outputDir = layout.buildDirectory.dir('docs')
    }
    
    tasks.register('allDocs') {
        group = JavaBasePlugin.DOCUMENTATION_GROUP
        description = 'Generates all documentation for this project.'
        dependsOn generateHtmlDocs
    
        doLast {
            logger.quiet('Generating all documentation...')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 558 bytes
    - Viewed (0)
  6. src/testing/allocs.go

    	var memstats runtime.MemStats
    	runtime.ReadMemStats(&memstats)
    	mallocs := 0 - memstats.Mallocs
    
    	// Run the function the specified number of times
    	for i := 0; i < runs; i++ {
    		f()
    	}
    
    	// Read the final statistics
    	runtime.ReadMemStats(&memstats)
    	mallocs += memstats.Mallocs
    
    	// Average the mallocs over the runs (not counting the warm-up).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 02 00:13:47 UTC 2016
    - 1.4K bytes
    - Viewed (0)
  7. pkg/registry/core/service/storage/alloc.go

    	if len(el) > 0 {
    		return errors.NewInvalid(api.Kind("Service"), service.Name, el)
    	}
    
    	// Special-case: headless + selectorless.  This has to happen before other
    	// checks because it explicitly allows combinations of inputs that would
    	// otherwise be errors.
    	if service.Spec.ClusterIP == api.ClusterIPNone && len(service.Spec.Selector) == 0 {
    		// If IPFamilies was not set by the user, start with the default
    		// family.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 37.3K bytes
    - Viewed (0)
  8. test/codegen/alloc.go

    Iskander Sharipov <******@****.***> 1546022404 +0300
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 26 23:08:15 UTC 2019
    - 902 bytes
    - Viewed (0)
  9. src/runtime/metrics_test.go

    		t.Error("allocs-by-size and frees-by-size counts don't match in length")
    	} else {
    		for i := range objects.alloc.Buckets {
    			ba := objects.alloc.Buckets[i]
    			bf := objects.free.Buckets[i]
    			if ba != bf {
    				t.Errorf("bucket %d is different for alloc and free hists: %f != %f", i, ba, bf)
    			}
    		}
    		if !t.Failed() {
    			var gotAlloc, gotFree uint64
    			want := objects.total
    			for i := range objects.alloc.Counts {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  10. src/testing/allocs_test.go

    		if allocs := testing.AllocsPerRun(100, tt.fn); allocs != tt.allocs {
    			t.Errorf("AllocsPerRun(100, %s) = %v, want %v", tt.name, allocs, tt.allocs)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 817 bytes
    - Viewed (0)
Back to top