Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 73 for Ap (0.07 sec)

  1. maven-core/src/test/resources-project-builder/url-inheritance/another-parent/pom.xml

      <parent>
        <groupId>org.apache.maven.its.mng3846</groupId>
        <artifactId>parent</artifactId>
        <version>0.1</version>
      </parent>
    
      <artifactId>ap</artifactId>
      <packaging>pom</packaging>
      <name>Another Parent to test multi-level URL adjustment</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  2. 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)
  3. src/net/udpsock.go

    // used to manipulate IP-level socket options in oob.
    func (c *UDPConn) ReadMsgUDP(b, oob []byte) (n, oobn, flags int, addr *UDPAddr, err error) {
    	var ap netip.AddrPort
    	n, oobn, flags, ap, err = c.ReadMsgUDPAddrPort(b, oob)
    	if ap.IsValid() {
    		addr = UDPAddrFromAddrPort(ap)
    	}
    	return
    }
    
    // ReadMsgUDPAddrPort is like ReadMsgUDP but returns an netip.AddrPort instead of a UDPAddr.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 16:58:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/k8sgateway-selector.yaml

          gateway.networking.k8s.io/gateway-name: bookinfo-gateway
    ---
    # only selector is set, should be ineffective
    apiVersion: security.istio.io/v1
    kind: AuthorizationPolicy
    metadata:
      namespace: default
      name: ap-ineffective
    spec:
      selector:
        matchLabels:
          gateway.networking.k8s.io/gateway-name: bookinfo-gateway
    ---
    # only selector is set, should be ineffective
    apiVersion: extensions.istio.io/v1alpha1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 01:19:33 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/internal/dwarf/dwarf.go

    func PutAttrs(ctxt Context, s Sym, abbrev int, attr *DWAttr) {
    	abbrevs := Abbrevs()
    Outer:
    	for _, f := range abbrevs[abbrev].attr {
    		for ap := attr; ap != nil; ap = ap.Link {
    			if ap.Atr == f.attr {
    				putattr(ctxt, s, abbrev, int(f.form), int(ap.Cls), ap.Value, ap.Data)
    				continue Outer
    			}
    		}
    
    		putattr(ctxt, s, abbrev, int(f.form), 0, 0, nil)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  9. istioctl/pkg/validate/validate.go

    		for _, port := range ports {
    			p := port.(map[string]any)
    			if p["protocol"] != nil && strings.EqualFold(p["protocol"].(string), serviceProtocolUDP) {
    				continue
    			}
    			if ap := p["appProtocol"]; ap != nil {
    				if protocol.Parse(ap.(string)).IsUnsupported() {
    					errs = multierror.Append(errs, fmt.Errorf("service %q doesn't follow Istio protocol selection. "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 22 17:58:52 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. src/math/big/floatconv_test.go

    		{"3.25", defaultRound, 64, 'x', 0, "0x1p+02"},
    		{"-3.25", defaultRound, 64, 'x', 0, "-0x1p+02"},
    		{"3.25", defaultRound, 64, 'x', 1, "0x1.ap+01"},
    		{"-3.25", defaultRound, 64, 'x', 1, "-0x1.ap+01"},
    		{"3.25", defaultRound, 64, 'x', -1, "0x1.ap+01"},
    		{"-3.25", defaultRound, 64, 'x', -1, "-0x1.ap+01"},
    		{"1024.0", defaultRound, 64, 'x', 0, "0x1p+10"},
    		{"-1024.0", defaultRound, 64, 'x', 0, "-0x1p+10"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 24.3K bytes
    - Viewed (0)
Back to top