Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 78 for specifying (0.5 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Execute.java

    @Target(ElementType.TYPE)
    @Inherited
    public @interface Execute {
        /**
         * Lifecycle phase to fork. Note that specifying a phase overrides specifying a goal.
         * @return the phase
         */
        @Nonnull
        String phase() default "";
    
        /**
         * Goal to fork. Note that specifying a phase overrides specifying a goal. The specified <code>goal</code> must be
         * another goal of the same plugin.
         * @return the goal
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_get_fossil.txt

    
    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    
    # 'go get' for the fossil repo will fail if fossil
    # is unable to determine your fossil user. Easiest
    # way to set it for use by 'go get' is specifying
    # a any non-empty $USER; the value doesn't otherwise matter.
    env USER=fossiluser
    env FOSSIL_HOME=$WORK/home
    
    # Attempt to get the latest version of a fossil repo.
    go get vcs-test.golang.org/fossil/hello.fossil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 773 bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-plugins/src/main/kotlin/org/gradle/kotlin/dsl/plugins/dsl/KotlinDslCompilerPlugins.kt

                        "-XXLanguage:-TypeEnhancementImprovementsInStrictMode",
                    )))
                    // Set this back to a warning for now, as this plugin is frequently used without toolchains specifying a JVM target, and it causes errors when using newer JDKs.
                    // This can be removed when https://youtrack.jetbrains.com/issue/KT-66919 is fixed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 18:03:28 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. doc/next/7-ports.md

    Go 1.23 introduces a new `GOARM64` environment variable, which specifies the minimum target version of the ARM64 architecture at compile time. Allowed values are `v8.{0-9}` and `v9.{0-5}`. This may be followed by an option specifying extensions implemented by target hardware. Valid options are `,lse` and `,crypto`.
    
    The `GOARM64` environment variable defaults to `v8.0`.
    
    ### RISC-V {#riscv}
    
    <!-- go.dev/issue/61476, CL 541135 -->
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/IncludesArtifactFilter.java

            boolean matched = false;
            for (Iterator<String> i = patterns.iterator(); i.hasNext() & !matched; ) {
                // TODO what about wildcards? Just specifying groups? versions?
                if (id.equals(i.next())) {
                    matched = true;
                }
            }
            return matched;
        }
    
        public List<String> getPatterns() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/fmtcmd/fmt.go

    	Long: `
    Fmt runs the command 'gofmt -l -w' on the packages named
    by the import paths. It prints the names of the files that are modified.
    
    For more about gofmt, see 'go doc cmd/gofmt'.
    For more about specifying packages, see 'go help packages'.
    
    The -n flag prints commands that would be executed.
    The -x flag prints commands as they are executed.
    
    The -mod flag's value sets which module download mode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 12:16:35 UTC 2022
    - 3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/fix/fix.go

    The -fix flag sets a comma-separated list of fixes to run.
    The default is all known fixes.
    (Its value is passed to 'go tool fix -r'.)
    
    For more about fix, see 'go doc cmd/fix'.
    For more about specifying packages, see 'go help packages'.
    
    To run fix with other options, run 'go tool fix'.
    
    See also: go fmt, go vet.
    	`,
    }
    
    var fixes = CmdFix.Flag.String("fix", "", "comma-separated list of fixes to apply")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:52:29 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/assignment/internal/KotlinDslAssignment.kt

            DeprecationLogger.deprecate("Internal class ${KotlinDslAssignment::class.java.name}")
                .withAdvice("The class was most likely loaded from `kotlin-dsl` plugin version 4.1.0 or earlier version used in the build: avoid specifying a version for `kotlin-dsl` plugin.")
                .willBeRemovedInGradle9()
                .undocumented()
                .nagUser()
        }
    
        fun isAssignmentOverloadEnabled(): Boolean {
            return true
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/fmahash_test.go

    	source := filepath.Join("testdata", "fma.go")
    	output := filepath.Join(tmpdir, "fma.exe")
    	cmd := testenv.Command(t, gocmd, "build", "-o", output, source)
    	// The hash-dependence on file path name is dodged by specifying "all hashes ending in 1" plus "all hashes ending in 0"
    	// i.e., all hashes.  This will print all the FMAs; this test is only interested in one of them (that should appear near the end).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 21:57:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Parameter.java

         * configurations, as in the case where you want to use the artifact's final name as a parameter. In this case, you
         * want the user to modify <code>&lt;build&gt;&lt;finalName/&gt;&lt;/build&gt;</code> rather than specifying a value
         * for finalName directly in the plugin configuration section. It is also useful to ensure that - for example - a
         * List-typed parameter which expects items of type Artifact doesn't get a List full of Strings.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:45:47 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top