Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 491 for Seal (0.05 sec)

  1. okhttp-testing-support/src/main/kotlin/okhttp3/SpecificHostSocketFactory.kt

    ) : DelegatingSocketFactory(getDefault()) {
      private val hostMapping = mutableMapOf<InetAddress, InetSocketAddress>()
    
      /** Sets the [real] address for [requested].  */
      operator fun set(
        requested: InetAddress,
        real: InetSocketAddress,
      ) {
        hostMapping[requested] = real
      }
    
      override fun createSocket(): Socket {
        return object : Socket() {
          override fun connect(
            endpoint: SocketAddress?,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. src/runtime/sys_freebsd_386.s

    	ADDL	$7, AX
    	MOVW	AX, GS
    	RET
    
    TEXT i386_set_ldt<>(SB),NOSPLIT,$16
    	LEAL	args+0(FP), AX	// 0(FP) == 4(SP) before SP got moved
    	MOVL	$0, 0(SP)	// syscall gap
    	MOVL	$1, 4(SP)
    	MOVL	AX, 8(SP)
    	MOVL	$SYS_sysarch, AX
    	INT	$0x80
    	JAE	2(PC)
    	INT	$3
    	RET
    
    TEXT runtime·sysctl(SB),NOSPLIT,$28
    	LEAL	mib+0(FP), SI
    	LEAL	4(SP), DI
    	CLD
    	MOVSL				// arg 1 - name
    	MOVSL				// arg 2 - namelen
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  3. .github/ISSUE_TEMPLATE/feature_enhancement_request.yaml

            Did you *actually* encounter the need for this enhancement in a real-world scenario, or does
            it just seem like a sensible behavior for the feature to have?
    
    
            Before we make significant changes to existing features in Guava, we really want to be sure
            that it's for a use case that actually comes up in the real world. We want to hear the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/SdkmanInstallationSupplierTest.groovy

            given:
            def real = candidates.createDir("java/11.0.6.hs-adpt")
            def symlink = candidates.file("java/symlink").createLink(real)
    
            when:
            def directories = supplier.get()
    
            then:
            directories.size() == 2
            directories*.location.containsAll(real, symlink)
            directories*.source.unique() == ["SDKMAN!"]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:17:53 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. .github/workflows/mint/nginx-1-node.conf

                proxy_set_header Host $http_host;
                proxy_set_header X-Real-IP $remote_addr;
                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                proxy_set_header X-Forwarded-Proto $scheme;
                proxy_set_header X-NginX-Proxy true;
    
                # This is necessary to pass the correct IP to be hashed
                real_ip_header X-Real-IP;
    
                proxy_connect_timeout 300;
                
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 31 21:38:10 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. src/internal/types/testdata/fixedbugs/issue50912.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    func Real[P ~complex128](x P) {
    	_ = real(x /* ERROR "not supported" */ )
    }
    
    func Imag[P ~complex128](x P) {
    	_ = imag(x /* ERROR "not supported" */ )
    }
    
    func Complex[P ~float64](x P) {
    	_ = complex(x /* ERROR "not supported" */ , 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 503 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/proxy/websocket.go

    }
    
    // readChannel returns wsstream.ReadChannel if real is true, or wsstream.IgnoreChannel.
    func readChannel(real bool) wsstream.ChannelType {
    	if real {
    		return wsstream.ReadChannel
    	}
    	return wsstream.IgnoreChannel
    }
    
    // writeChannel returns wsstream.WriteChannel if real is true, or wsstream.IgnoreChannel.
    func writeChannel(real bool) wsstream.ChannelType {
    	if real {
    		return wsstream.WriteChannel
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/toonew.go

    	// for compatibility shims. Consider:
    	//
    	//   //go:build go1.22
    	//   type T struct { F std.Real } // correct new API
    	//
    	//   //go:build !go1.22
    	//   type T struct { F fake } // shim
    	//   type fake struct { ... }
    	//   func (fake) M () {}
    	//
    	// These alternative declarations of T use either the std.Real
    	// type, introduced in go1.22, or a fake type, for the field
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. .github/workflows/mint/nginx.conf

                proxy_set_header Host $http_host;
                proxy_set_header X-Real-IP $remote_addr;
                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                proxy_set_header X-Forwarded-Proto $scheme;
                proxy_set_header X-NginX-Proxy true;
    
                # This is necessary to pass the correct IP to be hashed
                real_ip_header X-Real-IP;
    
                proxy_connect_timeout 300;
                
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 16:52:29 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. src/log/slog/internal/benchmarks/benchmarks.go

    //
    //   - The benchmarked code is run concurrently in multiple goroutines, to
    //     better simulate a real server (the most common environment for structured
    //     logs).
    //
    //   - Some handlers are optimistic versions of real handlers, doing real-world
    //     tasks as fast as possible (and sometimes faster, in that an
    //     implementation may not be concurrency-safe). This gives us an upper bound
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 25 12:14:46 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top