Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 957 for prepending (0.32 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/declaring_dependencies_between_subprojects.adoc

    image::structuring-builds-2.png[]
    
    This is a common use case for multi-project builds.
    Gradle offers <<declaring_dependencies.adoc#sub:project_dependencies,project dependencies>> for this.
    
    [[sec:project_jar_dependencies]]
    == Depending on another project
    
    Let's explore a theoretical multi-project build with the following layout:
    
    [.multi-language-sample]
    =====
    [source, kotlin]
    ----
    .
    ├── api
    │   ├── src
    │   │   └──...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 21:54:47 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_invalid_version.txt

    stderr 'go: example.com@v0.0.0 requires\n\tgolang.org/x/text@v1.999.999-0.20170915032832-14c0d48ead0c: invalid pseudo-version: preceding tag \(v1.999.998\) not found'
    cd ..
    ! go list -m golang.org/x/text
    stderr 'golang.org/x/text@v1.999.999-0.20170915032832-14c0d48ead0c: invalid pseudo-version: preceding tag \(v1.999.998\) not found'
    
    # A v1.0.0- pseudo-version that is not derived from a tag is invalid:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 02:54:20 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  3. src/cmd/internal/osinfo/os_js.go

    //go:build js
    
    package osinfo
    
    import (
    	"fmt"
    	"syscall/js"
    )
    
    // Version returns the OS version name/number.
    func Version() (string, error) {
    	// Version detection on Wasm varies depending on the underlying runtime
    	// (browser, node, etc), nor is there a standard via something like
    	// WASI (see https://go.dev/issue/31105). For now, attempt a few simple
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:43:17 UTC 2023
    - 1K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/test/stubtest_linux_ppc64le.S

    // A call stub is usually needed when the ELFv2 st_other attribute is different
    // between caller and callee.
    //
    // The type of call stub inserted will vary depending on GOPPC64 and the
    // buildmode (e.g pie builds shared code, default builds fixed-position code).
    // CI is set up to run for P8 and P10 machines, and this test is run in both
    // pie and default modes.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 15:06:17 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/AbstractHttpsRepoResolveIntegrationTest.groovy

            keyStore.configureServerAndClientCerts(executer)
            fails "libs"
    
            then:
            failure.assertHasCause("Could not GET '${server.uri}/repo1/my-group/my-module/1.0/")
            // exact error might vary depending on JVM version and OS
            failure.assertThatCause(matchesRegexp("Got (socket|SSL handshake) exception during request. It might be caused by SSL misconfiguration"))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. pkg/kube/kclient/clienttest/test_helpers.go

    // Reads may be cached or uncached, depending on the input client.
    func WrapReadWriter[T controllers.Object](t test.Failer, c kclient.ReadWriter[T]) TestClient[T] {
    	return TestClient[T]{
    		c: c,
    		t: t,
    		TestWriter: TestWriter[T]{
    			c: c,
    			t: t,
    		},
    	}
    }
    
    // Wrap returns a client that calls t.Fatal on errors.
    // Reads may be cached or uncached, depending on the input client.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/jpms/compile/JavaModuleCompileIntegrationTest.groovy

            when:
            fails ':compileJava'
    
            then:
            failure.assertHasErrorOutput '(package moda.internal is declared in module moda, which does not export it)'
        }
    
        def "compiles a module depending on an automatic module"() {
            given:
            publishAutoModule('moda')
            consumingModuleInfo('requires moda')
            consumingModuleClass('moda.ModaClass', 'moda.internal.ModaClassInternal')
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/comparison/ExhaustiveLinesSearcher.java

        private final boolean useUnifiedDiff;
    
        private ExhaustiveLinesSearcher(boolean useUnifiedDiff) {
            this.useUnifiedDiff = useUnifiedDiff;
        }
    
        /**
         * Uses the git diff algorithm for presenting matches.
         * <p>
         * Enabling this option will only show a single match, regardless of how many potential matches
         * containing the same number of matching lines are found.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileAccessTracker.java

        /**
         * Marks the supplied file as accessed.
         *
         * If the supplied file is unknown to this tracker, implementations must
         * simply ignore it instead of throwing an exception. However, depending
         * on the use case, implementations may throw an exception when marking a
         * known file fails.
         */
        void markAccessed(File file);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/ConditionalTemplateOperationSpec.groovy

     */
    
    package org.gradle.buildinit.plugins.internal
    
    import spock.lang.Specification
    
    
    class ConditionalTemplateOperationSpec extends Specification {
    
        def "triggers delegates depending on condition"(){
            TemplateOperation operation1 = Mock(TemplateOperation)
            TemplateOperation operation2 = Mock(TemplateOperation)
    
            Mock(org.gradle.internal.Factory).create() >> true
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top