Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 663 for alternate (0.23 sec)

  1. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/variants/GradlePluginWithVariantsPublicationIntegrationTest.groovy

                }
    
                group = "com.example"
                version = "1.0"
    
                // Add an alternate variant
                def alternate = sourceSets.create('alternate')
                java {
                    registerFeature(alternate.name) {
                        usingSourceSet(alternate)
                        capability(project.group.toString(), project.name, project.version.toString())
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/arch/arch.go

    	instructions["JNBE"] = x86.AJHI /* alternate */
    	instructions["JNC"] = x86.AJCC  /* alternate */
    	instructions["JNE"] = x86.AJNE  /* not equal (ZF = 0) */
    	instructions["JNG"] = x86.AJLE  /* alternate */
    	instructions["JNGE"] = x86.AJLT /* alternate */
    	instructions["JNL"] = x86.AJGE  /* alternate */
    	instructions["JNLE"] = x86.AJGT /* alternate */
    	instructions["JNO"] = x86.AJOC  /* alternate */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 06:51:28 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. okhttp/src/test/java/okhttp3/RequestCommonTest.kt

            .url("https://square.com")
            .build()
        assertThat(request.tag<Any>()).isNull()
        assertThat(request.tag(Any::class)).isNull()
        assertThat(request.tag(String::class)).isNull()
    
        // Alternate access APIs also work.
        assertThat(request.tag<String>()).isNull()
        assertThat(request.tag(String::class)).isNull()
      }
    
      @Test
      fun defaultTag() {
        val tag = "1234"
        val request =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top