Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 425 for begins (0.15 sec)

  1. src/cmd/doc/main.go

    //
    // The first item in this list that succeeds is the one whose documentation
    // is printed. If there is a symbol but no package, the package in the current
    // directory is chosen. However, if the argument begins with a capital
    // letter it is always assumed to be a symbol in the current directory.
    //
    // Two arguments:
    //
    //	go doc <pkg> <sym>[.<methodOrField>]
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. JavadocStyleGuide.md

    - Insert a blank comment line between the description and the list of tags, as shown.
    - The first line that begins with an `@` character ends the description; you cannot continue the description following block tags.
    - Block tags must be added in order.
    - The last line contains the end-comment delimiter ( `*/`).
    
    So lines won't wrap, limit any doc-comment lines to 120 characters.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/api/groovy_build_script_primer.adoc

    file("$projectDir/src")
    println "Destination: ${myCopyTask.destinationDir}"
    ----
    
    A property represents some state of an object. The presence of an `=` sign is a clear indicator that you're looking at a property. Otherwise, a qualified name — it begins with `<obj>.` — without any other decoration is also a property.
    
    If the name is unqualified, then it may be one of the following:
    
     * A task instance with that name.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/README

    In general script files should have short names: a few words, not whole sentences.
    The first word should be the general category of behavior being tested,
    often the name of a go subcommand (list, build, test, ...) or concept (vendor, pattern).
    
    Each script is a text archive (go doc internal/txtar).
    The script begins with an actual command script to run
    followed by the content of zero or more supporting files to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. src/runtime/pprof/pprof.go

    // and controls where the stack trace begins. Passing skip=0 begins the
    // trace in the function calling Add. For example, given this
    // execution stack:
    //
    //	Add
    //	called from rpc.NewClient
    //	called from mypkg.Run
    //	called from main.main
    //
    // Passing skip=0 begins the stack trace at the call to Add inside rpc.NewClient.
    // Passing skip=1 begins the stack trace at the call to NewClient inside mypkg.Run.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

            # args, so each arg winds up back in the position where it started, but
            # possibly modified.
            #
            # NB: a `for` loop captures its iteration list before it begins, so
            # changing the positional parameters here affects neither the number of
            # iterations, nor the values presented in `arg`.
            shift                   # remove old arg
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/ConsumerProvidedVariantFinder.java

            }
        }
    
        /**
         * The algorithm itself. Performs a breadth-first search on the set of potential transform solutions in order to find
         * all solutions at a given transform chain depth. The search begins at the final node of the chain. At each depth, a candidate
         * transform is applied to the beginning of the chain. Then, if a source variant can be used as a root of that chain,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  8. src/log/slog/logger.go

    // Log, Debug, Info, Warn, and Error methods.
    // For each call, it creates a [Record] and passes it to a [Handler].
    //
    // To create a new Logger, call [New] or a Logger method
    // that begins "With".
    type Logger struct {
    	handler Handler // for structured logging
    }
    
    func (l *Logger) clone() *Logger {
    	c := *l
    	return &c
    }
    
    // Handler returns l's Handler.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 18:26:18 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/tasks/SourceSet.java

     * <p>
     * The following example shows how you can configure the 'main' source set, which in this
     * case involves excluding classes whose package begins 'some.unwanted.package' from
     * compilation of the source files in the 'java' {@link SourceDirectorySet}:
     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'java'
     * }
     *
     * sourceSets {
     *   main {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/script/engine.go

    // Adding single quotes around text keeps spaces in that text from being treated
    // as word separators and also disables environment variable expansion.
    // Inside a single-quoted block of text, a repeated single quote indicates
    // a literal single quote, as in:
    //
    //	'Don''t communicate by sharing memory.'
    //
    // A line beginning with # is a comment and conventionally explains what is
    // being done or tested at the start of a new section of the script.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
Back to top