Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 213 for alternate (0.46 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. staging/src/k8s.io/apiserver/pkg/storage/names/generate.go

    // name (63 characters)
    var SimpleNameGenerator NameGenerator = simpleNameGenerator{}
    
    const (
    	// TODO: make this flexible for non-core resources with alternate naming rules.
    	maxNameLength          = 63
    	randomLength           = 5
    	MaxGeneratedNameLength = maxNameLength - randomLength
    )
    
    func (simpleNameGenerator) GenerateName(base string) string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  3. 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)
  4. src/internal/nettrace/nettrace.go

    // TraceKey is a context.Context Value key. Its associated value should
    // be a *Trace struct.
    type TraceKey struct{}
    
    // LookupIPAltResolverKey is a context.Context Value key used by tests to
    // specify an alternate resolver func.
    // It is not exposed to outsider users. (But see issue 12503)
    // The value should be the same type as lookupIP:
    //
    //	func lookupIP(ctx context.Context, host string) ([]IPAddr, error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:57:14 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. src/runtime/testdata/testprogcgo/sigstack.go

    #define CSIGSTKSZ 0x4000
    #else
    #define CSIGSTKSZ SIGSTKSZ
    #endif
    
    extern void SigStackCallback();
    
    static void* WithSigStack(void* arg __attribute__((unused))) {
    	// Set up an alternate system stack.
    	void* base = mmap(0, CSIGSTKSZ, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANON, -1, 0);
    	if (base == MAP_FAILED) {
    		perror("mmap failed");
    		abort();
    	}
    	stack_t st = {}, ost = {};
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/addresses.go

    	CIDRRules []CIDRRule
    
    	// DefaultAddress is the address (hostname or IP and port) that should be used in
    	// if no CIDR matches more specifically.
    	DefaultAddress string
    }
    
    // CIDRRule is a rule for adding an alternate path to the master based on matching CIDR
    type CIDRRule struct {
    	IPRange net.IPNet
    
    	// Address is the address (hostname or IP and port) that should be used in
    	// if this CIDR matches
    	Address string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 12:50:43 UTC 2017
    - 2.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. maven-compat/src/main/java/org/apache/maven/artifact/installer/ArtifactInstaller.java

         * @throws ArtifactInstallationException if an error occurred installing the artifact
         * @deprecated to be removed before 2.0 after the install/deploy plugins use the alternate
         *             method
         */
        @Deprecated
        void install(String basedir, String finalName, Artifact artifact, ArtifactRepository localRepository)
                throws ArtifactInstallationException;
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/context/CIFSContextCredentialWrapper.java

    import jcifs.smb.NtlmAuthenticator;
    import jcifs.smb.NtlmPasswordAuthenticator;
    import jcifs.smb.SmbAuthException;
    import jcifs.smb.SmbRenewableCredentials;
    
    
    /**
     * Context wrapper supplying alternate credentials
     * 
     * @author mbechler
     *
     */
    public final class CIFSContextCredentialWrapper extends CIFSContextWrapper implements CIFSContext {
    
        private Credentials creds;
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Aug 02 08:32:29 UTC 2018
    - 2.7K bytes
    - Viewed (0)
Back to top