Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for Ap (0.22 sec)

  1. pilot/pkg/model/authorization.go

    	Annotations map[string]string           `json:"annotations"`
    	Spec        *authpb.AuthorizationPolicy `json:"spec"`
    }
    
    func (ap *AuthorizationPolicy) NamespacedName() types.NamespacedName {
    	return types.NamespacedName{Name: ap.Name, Namespace: ap.Namespace}
    }
    
    // AuthorizationPolicies organizes AuthorizationPolicy by namespace.
    type AuthorizationPolicies struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. src/crypto/sha512/sha512.go

    	d.Reset()
    	d.Write(data)
    	sum := d.checkSum()
    	ap := (*[Size384]byte)(sum[:])
    	return *ap
    }
    
    // Sum512_224 returns the Sum512/224 checksum of the data.
    func Sum512_224(data []byte) [Size224]byte {
    	d := digest{function: crypto.SHA512_224}
    	d.Reset()
    	d.Write(data)
    	sum := d.checkSum()
    	ap := (*[Size224]byte)(sum[:])
    	return *ap
    }
    
    // Sum512_256 returns the Sum512/256 checksum of the data.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. pkg/kube/krt/internal.go

    	// We should have a way to opt-in to RV comparison, but not default to it.
    
    	ap, ok := any(a).(proto.Message)
    	if ok {
    		if reflect.TypeOf(ap.ProtoReflect().Interface()) == reflect.TypeOf(ap) {
    			return proto.Equal(ap, any(b).(proto.Message))
    		}
    		// If not, this is an embedded proto most likely... Sneaky.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. src/net/ipsock_posix.go

    	}
    	return nil, &AddrError{Err: "invalid address family", Addr: ip.String()}
    }
    
    func addrPortToSockaddrInet4(ap netip.AddrPort) (syscall.SockaddrInet4, error) {
    	// ipToSockaddrInet4 has special handling here for zero length slices.
    	// We do not, because netip has no concept of a generic zero IP address.
    	addr := ap.Addr()
    	if !addr.Is4() {
    		return syscall.SockaddrInet4{}, &AddrError{Err: "non-IPv4 address", Addr: addr.String()}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/pgen.go

    	// Sort pointer-typed before non-pointer types.
    	// Keeps the stack's GC bitmap compact.
    	ap := a.Type().HasPointers()
    	bp := b.Type().HasPointers()
    	if ap != bp {
    		return ap
    	}
    
    	// Group variables that need zeroing, so we can efficiently zero
    	// them altogether.
    	ap = a.Needzero()
    	bp = b.Needzero()
    	if ap != bp {
    		return ap
    	}
    
    	// Sort variables in descending alignment order, so we can optimally
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. pkg/kube/util.go

    	for k, auths := range config.AuthInfos {
    		if ap := auths.AuthProvider; ap != nil {
    			// We currently are importing 5 authenticators: gcp, azure, exec, and openstack
    			switch ap.Name {
    			case "oidc":
    				// OIDC is safe as it doesn't read files or execute code.
    				// create-remote-secret specifically supports OIDC so its probably important to not break this.
    			default:
    				if !allowlist.Contains(ap.Name) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. src/crypto/sha256/sha256.go

    func Sum224(data []byte) [Size224]byte {
    	if boring.Enabled {
    		return boring.SHA224(data)
    	}
    	var d digest
    	d.is224 = true
    	d.Reset()
    	d.Write(data)
    	sum := d.checkSum()
    	ap := (*[Size224]byte)(sum[:])
    	return *ap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. src/crypto/tls/key_schedule.go

    	clientEarlyTrafficLabel       = "c e traffic"
    	clientHandshakeTrafficLabel   = "c hs traffic"
    	serverHandshakeTrafficLabel   = "s hs traffic"
    	clientApplicationTrafficLabel = "c ap traffic"
    	serverApplicationTrafficLabel = "s ap traffic"
    	exporterLabel                 = "exp master"
    	resumptionLabel               = "res master"
    	trafficUpdateLabel            = "traffic upd"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	if skip(ap) {
    		return nil
    	}
    	args := make([]AST, len(ap.Args))
    	changed := false
    	for i, a := range ap.Args {
    		ac := a.Copy(fn, skip)
    		if ac == nil {
    			args[i] = a
    		} else {
    			args[i] = ac
    			changed = true
    		}
    	}
    	if !changed {
    		return fn(ap)
    	}
    	ap = &ArgumentPack{Args: args}
    	if r := fn(ap); r != nil {
    		return r
    	}
    	return ap
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  10. src/make.bash

    fi
    export GOROOT_BOOTSTRAP
    
    bootstrapenv() {
    	GOROOT="$GOROOT_BOOTSTRAP" GO111MODULE=off GOENV=off GOOS= GOARCH= GOEXPERIMENT= GOFLAGS= "$@"
    }
    
    export GOROOT="$(cd .. && pwd)"
    IFS=$'\n'; for go_exe in $(type -ap go); do
    	if [[ ! -x "$GOROOT_BOOTSTRAP/bin/go" ]]; then
    		goroot_bootstrap=$GOROOT_BOOTSTRAP
    		GOROOT_BOOTSTRAP=""
    		goroot=$(bootstrapenv "$go_exe" env GOROOT)
    		GOROOT_BOOTSTRAP=$goroot_bootstrap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top