Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,558 for Seal (0.04 sec)

  1. docs/orchestration/docker-compose/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: Sat Mar 05 06:32:39 UTC 2022
    - 3K bytes
    - Viewed (0)
  2. hack/README.md

    For details, refer to the following guidelines.
    
    ## Key scripts
    
    * [`verify-all.sh`](verify-all.sh): This script is a vestigial redirection, Please do not add "real" logic. It is equivalent to `make verify`.
    * [`update-all.sh`](update-all.sh): This script is a vestigial redirection, Please do not add "real" logic. 
    The `true` target of this makerule is `hack/make-rules/update.sh`.It is equivalent to `make update`.
    
    ## Attention
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 16 02:12:18 UTC 2020
    - 1K bytes
    - Viewed (0)
  3. .github/ISSUE_TEMPLATE/feature_addition_request.yaml

    
            Did you *actually* encounter the need for this feature in a real-world scenario, or is it
            just a feature that seems like a sensible addition to Guava?
    
    
            Before new features get added to 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 real-world use case so the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. src/crypto/md5/md5block_386.s

    // in the public domain.
    
    #define ROUND1(a, b, c, d, index, const, shift) \
    	XORL	c, BP; \
    	LEAL	const(a)(DI*1), a; \
    	ANDL	b, BP; \
    	XORL d, BP; \
    	MOVL (index*4)(SI), DI; \
    	ADDL BP, a; \
    	ROLL $shift, a; \
    	MOVL c, BP; \
    	ADDL b, a
    
    #define ROUND2(a, b, c, d, index, const, shift) \
    	LEAL	const(a)(DI*1),a; \
    	MOVL	d,		DI; \
    	ANDL	b,		DI; \
    	MOVL	d,		BP; \
    	NOTL	BP; \
    	ANDL	c,		BP; \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. test/typeparam/absdiff3.go

    	switch z := x.(type) {
    	case complex64:
    		re = float64(real(z))
    		im = float64(imag(z))
    	case complex128:
    		re = real(z)
    		im = imag(z)
    	default:
    		panic("unknown complex type")
    	}
    	return
    }
    
    func ComplexAbs[T Complex](a T) T {
    	// TODO use direct conversion instead of realimag once #50937 is fixed
    	r, i := realimag(a)
    	// r := float64(real(a))
    	// i := float64(imag(a))
    	d := math.Sqrt(r*r + i*i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  6. test/typeparam/absdiffimp2.dir/a.go

    	switch z := x.(type) {
    	case complex64:
    		re = float64(real(z))
    		im = float64(imag(z))
    	case complex128:
    		re = real(z)
    		im = imag(z)
    	default:
    		panic("unknown complex type")
    	}
    	return
    }
    
    func (a complexAbs[T]) Abs() T {
    	// TODO use direct conversion instead of realimag once #50937 is fixed
    	r, i := realimag(a.Value_)
    	// r := float64(real(a.Value))
    	// i := float64(imag(a.Value))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 09 21:26:42 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  7. src/crypto/internal/bigmod/nat_386.s

    TEXT ·addMulVVW2048(SB), $0-16
    	MOVL	$64, BX
    	JMP		addMulVVWx(SB)
    
    TEXT addMulVVWx(SB), NOFRAME|NOSPLIT, $0
    	MOVL z+0(FP), DI
    	MOVL x+4(FP), SI
    	MOVL y+8(FP), BP
    	LEAL (DI)(BX*4), DI
    	LEAL (SI)(BX*4), SI
    	NEGL BX			// i = -n
    	MOVL $0, CX		// c = 0
    	JMP E6
    
    L6:	MOVL (SI)(BX*4), AX
    	MULL BP
    	ADDL CX, AX
    	ADCL $0, DX
    	ADDL AX, (DI)(BX*4)
    	ADCL $0, DX
    	MOVL DX, CX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 22:37:58 UTC 2023
    - 936 bytes
    - Viewed (0)
  8. test/rename.go

    			false +
    			float32 +
    			float64 +
    			imag +
    			int +
    			int8 +
    			int16 +
    			int32 +
    			int64 +
    			len +
    			make +
    			new +
    			nil +
    			panic +
    			print +
    			println +
    			real +
    			recover +
    			rune +
    			string +
    			true +
    			uint +
    			uint8 +
    			uint16 +
    			uint32 +
    			uint64 +
    			uintptr +
    			iota
    	if n != NUM*(NUM-1)/2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.5K bytes
    - Viewed (0)
  9. tests/integration/security/fuzz/README.md

    The test backend uses real Web servers (`apache`, `nginx` and `tomcat`) configured to serve at the above predefined path.
    If a fuzzer generated request successfully gets the data at the predefined path, it means a policy bypass has happened
    otherwise it should have been rejected with 403 by the policy.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 09 02:34:11 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  10. pkg/test/framework/telemetry.go

    	TelemetryRetryDelay time.Duration
    	// TelemetryRetryTimeout is the retry timeout used in tests.
    	TelemetryRetryTimeout time.Duration
    	// UseRealStackdriver controls whether to use real stackdriver backend for testing or not.
    	UseRealStackdriver bool
    )
    
    func init() {
    	flag.DurationVar(&TelemetryRetryDelay, "istio.test.telemetry.retryDelay", time.Second*2, "Default retry delay used in tests")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 07 19:57:17 UTC 2022
    - 1.4K bytes
    - Viewed (0)
Back to top