Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 104 for addPass (0.23 sec)

  1. src/cmd/cgo/out.go

    	fmt.Fprintf(fgcc, "#include <stdlib.h>\n")
    	fmt.Fprintf(fgcc, "#include \"_cgo_export.h\"\n\n")
    
    	// We use packed structs, but they are always aligned.
    	// The pragmas and address-of-packed-member are only recognized as
    	// warning groups in clang 4.0+, so ignore unknown pragmas first.
    	fmt.Fprintf(fgcc, "#pragma GCC diagnostic ignored \"-Wunknown-pragmas\"\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_client_test.go

    	{"foo, bar, baz and qux", "foo, bar, baz and qux"},
    
    	// DNS hostname
    	{"golang.org", "golang.org"},
    	{"golang.org.", "golang.org"},
    
    	// Literal IPv4 address
    	{"1.2.3.4", ""},
    
    	// Literal IPv6 address
    	{"::1", ""},
    	{"::1%lo0", ""}, // with zone identifier
    	{"[::1]", ""},   // as per RFC 5952 we allow the [] style as IPv6 literal
    	{"[::1%lo0]", ""},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  3. src/runtime/asm_amd64.s

    	CMPQ	CX, $128
    	JBE	aes65to128
    	JMP	aes129plus
    
    aes0to15:
    	TESTQ	CX, CX
    	JE	aes0
    
    	ADDQ	$16, AX
    	TESTW	$0xff0, AX
    	JE	endofpage
    
    	// 16 bytes loaded at this address won't cross
    	// a page boundary, so we can load it directly.
    	MOVOU	-16(AX), X1
    	ADDQ	CX, CX
    	MOVQ	$masks<>(SB), AX
    	PAND	(AX)(CX*8), X1
    final1:
    	PXOR	X0, X1	// xor data with seed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  4. src/cmd/cgo/gcc.go

    //
    // to sbCheck, and returns true. If a is a simple variable or field reference,
    // it writes
    //
    //	_cgoIndexNN := &a
    //
    // and dereferences the uses of _cgoIndexNN. Taking the address avoids
    // making a copy of an array.
    //
    // This tells _cgoCheckPointer to check the complete contents of the
    // slice or array being indexed, but no other part of the memory allocation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/loong64/asm.go

    				otxt := p.To.Target().Pc - pc
    
    				// On loong64, the immediate value field of the conditional branch instructions
    				// BFPT and BFPT is 21 bits, and the others are 16 bits. The jump target address
    				// is to logically shift the immediate value in the instruction code to the left
    				// by 2 bits and then sign extend.
    				bound := int64(1 << (18 - 1))
    
    				switch p.As {
    				case ABFPT, ABFPF:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  6. cmd/kubelet/app/server.go

    	if enableServer {
    		go k.ListenAndServe(kubeCfg, kubeDeps.TLSOptions, kubeDeps.Auth, kubeDeps.TracerProvider)
    	}
    	if kubeCfg.ReadOnlyPort > 0 {
    		go k.ListenAndServeReadOnly(netutils.ParseIPSloppy(kubeCfg.Address), uint(kubeCfg.ReadOnlyPort), kubeDeps.TracerProvider)
    	}
    	go k.ListenAndServePodResources()
    }
    
    func createAndInitKubelet(kubeServer *options.KubeletServer,
    	kubeDeps *kubelet.Dependencies,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  7. pkg/controller/endpointslice/endpointslice_controller_test.go

    					NodeName:  pointer.StringPtr("node-1"),
    				},
    			},
    		},
    		{
    			// Any client reading EndpointSlices already has to handle deduplicating endpoints by IP address.
    			// If 2 pods are ready, something has gone wrong further up the stack, we shouldn't try to hide that.
    			name: "Two Ready pods with same IPs",
    			service: &v1.Service{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  8. src/go/types/expr.go

    		// requirement x may also be a composite literal."
    		if _, ok := ast.Unparen(e.X).(*ast.CompositeLit); !ok && x.mode != variable {
    			check.errorf(x, UnaddressableOperand, invalidOp+"cannot take address of %s", x)
    			x.mode = invalid
    			return
    		}
    		x.mode = value
    		x.typ = &Pointer{base: x.typ}
    		return
    
    	case token.ARROW:
    		u := coreType(x.typ)
    		if u == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  9. src/fmt/fmt_test.go

    	presentInMap(Sprintf("%v", m1), a, t)
    	presentInMap(Sprint(m1), a, t)
    	// Pointer to map prints the same but with initial &.
    	if !strings.HasPrefix(Sprint(&m1), "&") {
    		t.Errorf("no initial & for address of map")
    	}
    	presentInMap(Sprintf("%v", &m1), a, t)
    	presentInMap(Sprint(&m1), a, t)
    }
    
    func TestEmptyMap(t *testing.T) {
    	const emptyMapStr = "map[]"
    	var m map[string]int
    	s := Sprint(m)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  10. pkg/apis/admissionregistration/types.go

    	// the `service` field instead. The host might be resolved via external
    	// DNS in some apiservers (e.g., `kube-apiserver` cannot resolve
    	// in-cluster DNS as that would be a layering violation). `host` may
    	// also be an IP address.
    	//
    	// Please note that using `localhost` or `127.0.0.1` as a `host` is
    	// risky unless you take great care to run this webhook on all hosts
    	// which run an apiserver which might need to make calls to this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
Back to top