Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 584 for alternate (0.35 sec)

  1. guava/src/com/google/common/base/PatternCompiler.java

    import com.google.errorprone.annotations.RestrictedApi;
    
    /**
     * Pluggable interface for compiling a regex pattern. By default this package uses the {@code
     * java.util.regex} library, but an alternate implementation can be supplied using the {@link
     * java.util.ServiceLoader} mechanism.
     */
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    interface PatternCompiler {
      /**
       * Compiles the given pattern.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/tasks/ExtractSymbolsIntegrationTest.groovy

            succeeds ":extractSymbolsDebug"
    
            then:
            executedAndNotSkipped":extractSymbolsDebug"
            fixture("build/symbols").assertHasDebugSymbolsFor(withoutHeaders(app.alternate))
        }
    
        NativeBinaryFixture fixture(String path) {
            return new NativeBinaryFixture(file(path), toolChain)
        }
    
        List<String> withoutHeaders(SourceElement sourceElement) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/tasks/StripSymbolsIntegrationTest.groovy

            succeeds ":stripSymbolsDebug"
    
            then:
            executedAndNotSkipped":stripSymbolsDebug"
            binary("build/stripped").assertDoesNotHaveDebugSymbolsFor(withoutHeaders(app.alternate))
        }
    
        NativeBinaryFixture binary(String path) {
            return new NativeBinaryFixture(file(path), toolChain)
        }
    
        List<String> withoutHeaders(SourceElement sourceElement) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. 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)
  5. maven-compat/src/main/java/org/apache/maven/artifact/deployer/ArtifactDeployer.java

         * @throws ArtifactDeploymentException if an error occurred deploying the artifact
         * @deprecated to be removed before 2.0 after the install/deploy plugins use the alternate
         *             method
         */
        @Deprecated
        void deploy(
                String basedir,
                String finalName,
                Artifact artifact,
                ArtifactRepository deploymentRepository,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/SocksProxyServer.groovy

     * but it is _not_ automatically started.
     *
     * To use the proxy with a build, you must call configureProxy(GradleExecuter) before
     * starting the proxy.
     *
     * Use {@link #start(SocksServer)} to start the proxy with an alternate implementation of {@link SocksServer} (for instance,
     * a {@link TestRecordingSocksServer}, which can record connections which would have been made).
     */
    class SocksProxyServer extends ExternalResource {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. src/time/zoneinfo_plan9.go

    	}
    
    	var zones [2]zone
    
    	// standard timezone offset
    	o, err := atoi(f[1])
    	if err != nil {
    		return nil, errBadData
    	}
    	zones[0] = zone{name: f[0], offset: o, isDST: false}
    
    	// alternate timezone offset
    	o, err = atoi(f[3])
    	if err != nil {
    		return nil, errBadData
    	}
    	zones[1] = zone{name: f[2], offset: o, isDST: true}
    
    	// transition time pairs
    	var tx []zoneTrans
    	f = f[4:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 16 23:09:19 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. src/encoding/xml/read_test.go

    </title><link href="http://codereview.appspot.com/126085" rel="alternate"></link><updated>2009-10-04T01:35:58+00:00</updated><author><name>email-address-removed</name></a...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  9. src/cmd/objdump/main.go

    //
    // Objdump prints a disassembly of all text symbols (code) in the binary.
    // If the -s option is present, objdump only disassembles
    // symbols with names matching the regular expression.
    //
    // Alternate usage:
    //
    //	go tool objdump binary start end
    //
    // In this mode, objdump disassembles the binary starting at the start address and
    // stopping at the end address. The start and end addresses are program
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/upgrades/UpgradedProperty.java

         * can be removed once base version will be the one that also uses 'replacedAccessors'.
         */
        @SerializedName(value = "replacedAccessors", alternate = {"upgradedAccessors", "upgradedMethods"})
        private final List<ReplacedAccessor> replacedAccessors;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top