Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 65 for requirements (1.1 sec)

  1. src/cmd/go/internal/modload/vendor.go

    				}
    			}
    		}
    	})
    }
    
    // checkVendorConsistency verifies that the vendor/modules.txt file matches (if
    // go 1.14) or at least does not contradict (go 1.13 or earlier) the
    // requirements and replacements listed in the main module's go.mod file.
    func checkVendorConsistency(indexes []*modFileIndex, modFiles []*modfile.File, modRoots []string) {
    	// readVendorList only needs the main module to get the directory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 18:09:22 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_tidy_compat_implicit.txt

    # default preserve enough checksums for the module to be used by Go 1.16.
    #
    # We don't have a copy of Go 1.16 handy, but we can simulate it by editing the
    # 'go' version in the go.mod file to 1.16, without actually updating the
    # requirements to match.
    
    [short] skip
    
    env MODFMT='{{with .Module}}{{.Path}} {{.Version}}{{end}}'
    
    
    # For this module, Go 1.16 selects the same versions of all explicit dependencies
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_install_pkg_version.txt

    # when -short is set.
    [short] stop
    
    
    # 'go install pkg@version' works on a module that doesn't have a go.mod file
    # and with a module whose go.mod file has missing requirements.
    # With a proxy, the two cases are indistinguishable.
    go install rsc.io/fortune@v1.0.0
    stderr '^go: found rsc.io/quote in rsc.io/quote v1.5.2$'
    exists $GOPATH/bin/fortune$GOEXE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/Requirement.java

     */
    package org.apache.maven.plugin.descriptor;
    
    /**
     * Describes a component requirement.
     *
     */
    public class Requirement implements Cloneable {
        private final String role;
    
        private final String roleHint;
    
        public Requirement(String role) {
            this.role = role;
            this.roleHint = null;
        }
    
        public Requirement(String role, String roleHint) {
            this.role = role;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/WorkerDaemonFactoryTest.groovy

        def options = Stub(DaemonForkOptions)
        def requirement = new ForkedWorkerRequirement(workingDir, projectCacheDir, options)
        def spec = Stub(IsolatedParametersActionExecutionSpec)
    
        def setup() {
            _ * buildOperationRunner.getCurrentOperation() >> buildOperation
        }
    
        def "getting a worker daemon does not assume client use"() {
            when:
            factory.getWorker(requirement);
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:57:50 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/toolchain/RequirementMatcherFactory.java

            private ExactMatcher(String provides) {
                this.provides = provides;
            }
    
            @Override
            public boolean matches(String requirement) {
                return provides.equalsIgnoreCase(requirement);
            }
    
            @Override
            public String toString() {
                return provides;
            }
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/Parameter.java

            return "Mojo parameter [name: '" + getName() + "'; alias: '" + getAlias() + "']";
        }
    
        public Requirement getRequirement() {
            return requirement;
        }
    
        public void setRequirement(Requirement requirement) {
            this.requirement = requirement;
        }
    
        public String getImplementation() {
            return implementation;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_list_direct_work.txt

    # In this test, the workspace contains modules example.com/a and
    # example.com/b. Module example.com/a has a direct requirement
    # on rsc.io/sampler, and an indirect requirement on golang.org/x/text
    # through rsc.io/isampler. Module example.com/b has a direct
    # requirement on example.com/c which is incorrectly marked as indirect
    # in module example.com/b's go.mod file.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ChangingOutputsContext.java

     * limitations under the License.
     */
    
    package org.gradle.internal.execution.steps;
    
    /**
     * Context necessary for steps that change the outputs.
     *
     * This context doesn't add any new information, it encodes a requirement
     * in the type system that a step can change the outputs.
     */
    public class ChangingOutputsContext extends InputChangesContext {
        public ChangingOutputsContext(InputChangesContext parent) {
            super(parent);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1023 bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/toolchain/RequirementMatcher.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.toolchain;
    
    /**
     *
     */
    public interface RequirementMatcher {
    
        boolean matches(String requirement);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 938 bytes
    - Viewed (0)
Back to top