Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 367 for alternate (0.24 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. 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)
  4. okhttp/src/test/java/okhttp3/RequestTest.kt

        assertThat(request.tag()).isNull()
        assertThat(request.tag(Any::class.java)).isNull()
        assertThat(request.tag(UUID::class.java)).isNull()
        assertThat(request.tag(String::class.java)).isNull()
    
        // Alternate access APIs also work.
        assertThat(request.tag<String>()).isNull()
        assertThat(request.tag(String::class)).isNull()
      }
    
      @Test
      fun defaultTag() {
        val tag = UUID.randomUUID()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

                    .longOpt("settings")
                    .desc("Alternate path for the user settings file")
                    .hasArg()
                    .build());
            options.addOption(Option.builder(ALTERNATE_PROJECT_SETTINGS)
                    .longOpt("project-settings")
                    .desc("Alternate path for the project settings file")
                    .hasArg()
                    .build());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. pkg/controller/garbagecollector/graph_builder.go

    				// this alternate is the first following verifiedAbsentIdentity lexically
    				firstFollowing = &ref
    			}
    		}
    	}
    
    	// return the first alternate identity following the verified absent identity, if there is one
    	if firstFollowing != nil {
    		return firstFollowing
    	}
    	// otherwise return the first alternate identity
    	return first
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftIncrementalBuildIntegrationTest.groovy

            } else {
                outputs.recompiledClasses('greeter', 'renamed-sum', 'main')
            }
    
            outputDirectory.assertContainsDescendants(expectedIntermediateDescendants(app.alternate))
            installation("build/install/main/debug").exec().out == app.expectedAlternateOutput
        }
    
        def "removes stale object files for library"() {
            def lib = new IncrementalSwiftStaleCompileOutputLib()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  8. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishFeaturesJavaIntegTest.groovy

                    if (it.configurationVariant.name != 'alternate') {
                        skip()
                    } else {
                        mapToMavenScope('compile')
                        mapToOptional()
                    }
                }
    
                def alt = configurations.optionalFeatureRuntimeElements.outgoing.variants.create("alternate")
                alt.attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  9. src/runtime/signal_unix.go

    // thread's alternate signal stack and signal mask.
    func minitSignals() {
    	minitSignalStack()
    	minitSignalMask()
    }
    
    // minitSignalStack is called when initializing a new m to set the
    // alternate signal stack. If the alternate signal stack is not set
    // for the thread (the normal case) then set the alternate signal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  10. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishFeaturesJavaIntegTest.groovy

                    if (it.configurationVariant.name != 'alternate') {
                        skip()
                    } else {
                        mapToOptional()
                    }
                }
    
                def alt = configurations.optionalFeatureRuntimeElements.outgoing.variants.create("alternate")
                alt.attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.7K bytes
    - Viewed (0)
Back to top