Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 177 for alternate (0.52 sec)

  1. src/cmd/go/testdata/script/modfile_flag.txt

    # 'go list -m' should print the effective go.mod file as GoMod though.
    go list -m -f '{{.GoMod}}'
    stdout '^go.alt.mod$'
    
    # go mod edit should operate on the alternate file
    go mod edit -require rsc.io/quote@v1.5.2
    grep rsc.io/quote go.alt.mod
    
    # 'go list -m' should add sums to the alternate go.sum.
    go list -m -mod=mod all
    grep '^rsc.io/quote v1.5.2/go.mod ' go.alt.sum
    ! grep '^rsc.io/quote v1.5.2 ' go.alt.sum
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:16 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-toml/groovy/gradle/test-libs.versions.toml

    my-lib-no-version.module = "com.mycompany:mylib"
    my-other-lib = { module = "com.mycompany:other", version = "1.4" }
    my-other-lib2 = { group = "com.mycompany", name = "alternate", version = "1.4" }
    mylib-full-format = { group = "com.mycompany", name = "alternate", version = { require = "1.4" } }
    
    [plugins]
    short-notation = "some.plugin.id:1.4"
    long-notation = { id = "some.plugin.id", version = "1.4" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 03:39:11 UTC 2024
    - 549 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-toml/kotlin/gradle/test-libs.versions.toml

    my-lib-no-version.module = "com.mycompany:mylib"
    my-other-lib = { module = "com.mycompany:other", version = "1.4" }
    my-other-lib2 = { group = "com.mycompany", name = "alternate", version = "1.4" }
    mylib-full-format = { group = "com.mycompany", name = "alternate", version = { require = "1.4" } }
    
    [plugins]
    short-notation = "some.plugin.id:1.4"
    long-notation = { id = "some.plugin.id", version = "1.4" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 03:39:11 UTC 2024
    - 549 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_overlay.txt

    package module
    -- overlay-and-dash-modfile/go.mod --
    -- overlay-and-dash-modfile/overlay.json --
    {
    	"Replace": {
    		"alternate.mod": "../../../overlay/overlay-and-dash-modfile-alternate-mod"
    	}
    }
    -- $WORK/overlay/overlay-and-dash-modfile-alternate-mod --
    module found.the/module
    -- carve/go.mod --
    module carve
    -- carve/overlay_carve_module.json --
    {
    	"Replace": {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 7.7K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testcarchive/testdata/main4.c

    		die("sigaction");
    	}
    }
    
    // Test raising SIGIO on a C thread with an alternate signal stack
    // when there is a Go signal handler for SIGIO.
    static void* thread1(void* arg __attribute__ ((unused))) {
    	stack_t ss;
    	int i;
    	stack_t nss;
    	struct timespec ts;
    
    	// Set up an alternate signal stack for this thread.
    	memset(&ss, 0, sizeof ss);
    	ss.ss_sp = malloc(CSIGSTKSZ);
    	if (ss.ss_sp == NULL) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. releasenotes/notes/47444.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 47444
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 19 07:22:08 UTC 2023
    - 206 bytes
    - Viewed (0)
  7. doc/next/6-stdlib/99-minor/runtime/debug/42888.md

    The [SetCrashOutput] function allows the user to specify an alternate
    file to which the runtime should write its fatal crash report.
    It may be used to construct an automated reporting mechanism for all
    unexpected crashes, not just those in goroutines that explicitly use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 20:49:22 UTC 2024
    - 282 bytes
    - Viewed (0)
  8. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppIncrementalBuildStaleOutputsIntegrationTest.groovy

            result.assertTasksNotSkipped(tasks.debug.allToInstall, ":assemble")
    
            file("build/obj/main/debug").assertHasDescendants(expectIntermediateDescendants(app.alternate))
            executable("build/exe/main/debug/app").assertExists()
            installation("build/install/main/debug").exec().out == app.expectedOutput
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalElement.java

    public abstract class IncrementalElement {
        public final OriginalElement original = new OriginalElement();
        public final AlternateElement alternate = new AlternateElement();
    
        protected abstract List<Transform> getIncrementalChanges();
    
        /**
         * Transforms the app element into the alternate app element in the given project.
         */
        public void applyChangesToProject(TestFile projectDir) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. src/internal/testlog/exit.go

    // with calls to os.Exit
    var panicOnExit0 struct {
    	mu  sync.Mutex
    	val bool
    }
    
    // SetPanicOnExit0 sets panicOnExit0 to v.
    //
    // SetPanicOnExit0 should be an internal detail,
    // but alternate implementations of go test in other
    // build systems may need to access it using linkname.
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname SetPanicOnExit0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top