Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 783 for Seal (0.05 sec)

  1. 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)
  2. 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)
  3. .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)
  4. src/runtime/rt0_plan9_386.s

    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    TEXT _rt0_386_plan9(SB),NOSPLIT,$12
    	MOVL	AX, _tos(SB)
    	LEAL	8(SP), AX
    	MOVL	AX, _privates(SB)
    	MOVL	$1, _nprivates(SB)
    	CALL	runtime·asminit(SB)
    	MOVL	inargc-4(FP), AX
    	MOVL	AX, 0(SP)
    	LEAL	inargv+0(FP), AX
    	MOVL	AX, 4(SP)
    	JMP	runtime·rt0_go(SB)
    
    GLOBL _tos(SB), NOPTR, $4
    GLOBL _privates(SB), NOPTR, $4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 04:03:16 UTC 2017
    - 523 bytes
    - Viewed (0)
  5. src/cmd/vet/README

    rejected as not appropriate for the tool. The criteria applied when selecting which
    checks to add are:
    
    Correctness:
    
    Vet's checks are about correctness, not style. A vet check must identify real or
    potential bugs that could cause incorrect compilation or execution. A check that
    only identifies stylistic points or alternative correct approaches to a situation
    is not acceptable.
    
    Frequency:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 04:15:59 UTC 2017
    - 1.6K bytes
    - Viewed (0)
  6. 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)
  7. .github/workflows/mint/nginx-4-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: Wed May 15 16:52:29 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. src/path/path.go

    // Package path implements utility routines for manipulating slash-separated
    // paths.
    //
    // The path package should only be used for paths separated by forward
    // slashes, such as the paths in URLs. This package does not deal with
    // Windows paths with drive letters or backslashes; to manipulate
    // operating system paths, use the [path/filepath] package.
    package path
    
    import "internal/bytealg"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 23 17:33:57 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. src/go/constant/example_test.go

    	b := constant.MakeUint64(11)
    	c := constant.BinaryOp(a, token.MUL, b)
    
    	// Convert c into a complex128.
    	Ar, exact := constant.Float64Val(constant.Real(c))
    	if !exact {
    		fmt.Printf("Could not represent real part %s exactly as float64\n", constant.Real(c))
    	}
    	Ai, exact := constant.Float64Val(constant.Imag(c))
    	if !exact {
    		fmt.Printf("Could not represent imaginary part %s as exactly as float64\n", constant.Imag(c))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. tools/docker-builder/crane.go

    				// docker context is virtual, so we need to rewrite the "docker context source" to the real path of disk
    				plan := a.PlanFor(arch).Find(args.Name)
    				if plan == nil {
    					continue
    				}
    				// Plan is a list of real file paths, but we don't have a strong mapping from "docker context source"
    				// to "real path on disk". We do have a weak mapping though, by reproducing docker-copy.sh
    				for dest, src := range args.Files {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 6K bytes
    - Viewed (0)
Back to top