Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 725 for alternate (0.21 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/NtlmAuthenticator.groovy

        // but those are test fixtures and I couldn't find a better way to do this
        // without deeper understanding of the Jetty APIs. Feel free to provide an
        // alternate solution
        private final Map<HttpConnection, NtlmConnectionAuthentication> connections = [:]
    
        @Override
        String getAuthMethod() {
            return NTLM_AUTH_METHOD
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/bbottema/javasocksproxyserver/TestRecordingSocksServer.java

    import java.io.InterruptedIOException;
    import java.net.InetAddress;
    import java.net.ServerSocket;
    import java.net.Socket;
    import java.util.List;
    import java.util.concurrent.CopyOnWriteArrayList;
    
    /**
     * Alternate implementation of {@link SocksServer} that records connections which would have been
     * made, but does not actually make them.
     *
     * Must live in same package as {@link SocksServer}.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. testing/architecture-test/src/test/java/org/gradle/architecture/test/ConfigurationCreationTest.java

         * This test will ensure that calls into {@code DefaultConfgurationContainer#doCreate(String)} in non-test code
         * begin with a call from a method in {@code RoleBasedConfigurationContainerInternal}.
         * (The banned alternate {@code create} methods are defined in {@code ConfigurationContainer} and
         * implemented in {@code AbstractNamedDomainObjectContainer}.)
         */
        @ArchTest
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. pilot/pkg/status/distribution/reporter_test.go

    			},
    		},
    		{
    			Meta: config.Meta{
    				Namespace:       "default",
    				Name:            "bar",
    				ResourceVersion: "1",
    			},
    		},
    		{
    			Meta: config.Meta{
    				Namespace:       "alternate",
    				Name:            "boo",
    				ResourceVersion: "1",
    			},
    		},
    	}
    	// cast our model.Configs to Resource because these types aren't compatible
    	var myResources []status.Resource
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/FileUtilsTest.groovy

            toRoots(files("a/a/a/a/a/a/a/a/a", "a/b", "b/a/a/a/a/a/a/a/a/a/a/a", "b/a/a/a/a")) == files("a/a/a/a/a/a/a/a/a", "a/b", "b/a/a/a/a")
        }
    
        def "can transform filenames to alternate extensions"() {
            expect:
            withExtension("foo", ".bar") == "foo.bar"
            withExtension("/some/path/to/foo", ".bar") == "/some/path/to/foo.bar"
            withExtension("foo.baz", ".bar") == "foo.bar"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/netbios/Lmhosts.java

                    }
                    else if ( line.startsWith("#BEGIN_ALTERNATE") ) {}
                    else if ( line.startsWith("#END_ALTERNATE") && this.alt > 0 ) {
                        throw new IOException("no lmhosts alternate includes loaded");
                    }
                }
                else if ( Character.isDigit(line.charAt(0)) ) {
                    char[] data = line.toCharArray();
                    int ip, i, j;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/BiMap.java

       *     #forcePut} instead.
       */
      @CanIgnoreReturnValue
      @Override
      @CheckForNull
      V put(@ParametricNullness K key, @ParametricNullness V value);
    
      /**
       * An alternate form of {@code put} that silently removes any existing entry with the value {@code
       * value} before proceeding with the {@link #put} operation. If the bimap previously contained the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. docs/features/calls.md

    Calls are executed in one of two ways:
    
     * **Synchronous:** your thread blocks until the response is readable.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/plan9/mkall.sh

    # part about preparing this file is figuring out which headers to
    # include and which symbols need to be #defined to get the
    # actual data structures that pass through to the kernel system calls.
    # Some C libraries present alternate versions for binary compatibility
    # and translate them on the way in and out of system calls, but
    # there is almost always a #define that can get the real ones.
    # See types_darwin.c and types_linux.c for examples.
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  10. src/runtime/os_darwin.go

    func minit() {
    	// iOS does not support alternate signal stack.
    	// The signal handler handles it directly.
    	if !(GOOS == "ios" && GOARCH == "arm64") {
    		minitSignalStack()
    	}
    	minitSignalMask()
    	getg().m.procid = uint64(pthread_self())
    }
    
    // Called from dropm to undo the effect of an minit.
    //
    //go:nosplit
    func unminit() {
    	// iOS does not support alternate signal stack.
    	// See minit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top