Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 391 for alternate (0.13 sec)

  1. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/report.js

                    }
                });
            } else {
                row.find("td,th").each(function(index){
                    $(this).addClass(slices[index]);
                })
            }
        });
    
        // Add alternate row styles for tables
        $("table").each(function () {
            var counter = 0;
            var rows = $(this).find("tr");
            if (rows.length != 1) {
                rows.each(function () {
                    var e = $(this);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/bbottema/javasocksproxyserver/TestRecordingProxyHandler.java

     * limitations under the License.
     */
    
    package org.bbottema.javasocksproxyserver;
    
    import java.net.InetAddress;
    import java.net.Socket;
    import java.util.List;
    
    /**
     * Alternate implementation of {@link ProxyHandler} that records connections which would have been
     * made, but does not actually make them.
     *
     * Must live in same package as {@link Socks4Impl}.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. 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)
  4. android/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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top