Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 43 for abbreviated (1.52 sec)

  1. buildscripts/gen-ldflags.go

    		panic(err)
    	}
    	relTag = strings.Replace(relTag, ",", "", -1)
    	relTag = relPrefix + "." + relTag
    	if relSuffix != "" {
    		relTag += "." + relSuffix
    	}
    
    	return relTag, t
    }
    
    // commitID returns the abbreviated commit-id hash of the last commit.
    func commitID() string {
    	// git log --format="%H" -n1
    	var (
    		commit []byte
    		err    error
    	)
    	cmdName := "git"
    	cmdArgs := []string{"log", "--format=%H", "-n1"}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 16 23:10:48 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/overview/userguide.adoc

    In this User Manual, Gradle Build Tool is abbreviated **Gradle**.
    
    == Why Gradle?
    
    Gradle is a widely used and mature tool with an active community and a strong developer ecosystem.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/execution/DefaultTaskSelector.java

            if (actualName == null) {
                throw throwTaskSelectionException(context, targetProject, taskName, includeSubprojects, matcher);
            }
            LOGGER.info("Abbreviated task name '{}' matched '{}'", taskName, actualName);
            return new TaskSelection(targetProject.getProjectPath().getPath(), taskName, tasksByName.get(actualName));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    ----
    No exact project with name ':mAL' has been found. Checking for abbreviated names.
    Found exactly one project that matches the abbreviated name ':mAL': ':my-awesome-library'.
    No exact task with name ':cT' has been found. Checking for abbreviated names.
    Found exactly one task name, that matches the abbreviated name ':cT': ':compileTest'.
    ----
    
    == Common tasks
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  5. internal/event/name.go

    	Everything
    )
    
    // The number of single names should not exceed 64.
    // This will break masking. Use bit 63 as extension.
    var _ = uint64(1 << objectSingleTypesEnd)
    
    // Expand - returns expanded values of abbreviated event type.
    func (name Name) Expand() []Name {
    	switch name {
    
    	case ObjectAccessedAll:
    		return []Name{
    			ObjectAccessedGet, ObjectAccessedHead,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 01:11:10 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. src/time/zoneinfo.go

    	// to lookup.
    	cacheStart int64
    	cacheEnd   int64
    	cacheZone  *zone
    }
    
    // A zone represents a single time zone such as CET.
    type zone struct {
    	name   string // abbreviated name, "CET"
    	offset int    // seconds east of UTC
    	isDST  bool   // is this zone Daylight Savings Time?
    }
    
    // A zoneTrans represents a single time zone transition.
    type zoneTrans struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/interactive.go

    func parseCommandLine(input []string) ([]string, config, error) {
    	cmd, args := input[:1], input[1:]
    	name := cmd[0]
    
    	c := pprofCommands[name]
    	if c == nil {
    		// Attempt splitting digits on abbreviated commands (eg top10)
    		if d := tailDigitsRE.FindString(name); d != "" && d != name {
    			name = name[:len(name)-len(d)]
    			cmd[0], args = name, append([]string{d}, args...)
    			c = pprofCommands[name]
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    To focus on the information about one dependency configuration, provide the optional parameter `--configuration`.
    Just like <<command_line_interface#sec:name_abbreviation, project and task names>>, Gradle accepts abbreviated names to select a dependency configuration.
    For example, you can specify `tRC` instead of `testRuntimeClasspath` if the pattern matches to a single dependency configuration.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/composite_builds.adoc

    You can call a task in an included build using a fully qualified path, for example, `:included-build-name:project-name:taskName`.
    Project and task names can be <<command_line_interface.adoc#sec:name_abbreviation,abbreviated>>.
    
    ----
    $ ./gradlew :included-build:subproject-a:compileJava
    > Task :included-build:subproject-a:compileJava
    
    $ ./gradlew :i-b:sA:cJ
    > Task :included-build:subproject-a:compileJava
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 02:23:19 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_server.go

    	c.buffering = true
    	if err := hs.checkForResumption(); err != nil {
    		return err
    	}
    	if hs.sessionState != nil {
    		// The client has included a session ticket and so we do an abbreviated handshake.
    		if err := hs.doResumeHandshake(); err != nil {
    			return err
    		}
    		if err := hs.establishKeys(); err != nil {
    			return err
    		}
    		if err := hs.sendSessionTicket(); err != nil {
    			return err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top