Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for PA (0.02 sec)

  1. istioctl/pkg/describe/describe.go

    	}
    
    	allPAs := append(rootPAList.Items, workloadPAList.Items...)
    
    	var cfgs []*config.Config
    	for _, pa := range allPAs {
    		pa := pa
    		cfg := crdclient.TranslateObject(pa, config.GroupVersionKind(pa.GroupVersionKind()), "")
    		cfgs = append(cfgs, &cfg)
    	}
    
    	matchedPA := findMatchedConfigs(podsLabels, cfgs)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    				pa := podActions{
    					SandboxID:          podStatus.SandboxStatuses[0].Id,
    					ContainersToKill:   getKillMap(pod, podStatus, []int{}),
    					ContainersToStart:  []int{},
    					ContainersToUpdate: map[v1.ResourceName][]containerToUpdateInfo{},
    				}
    				return &pa
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    		[]string{fmt.Sprintf("istio-system/%s", staticStrictPolicyName)})
    
    	// Now remove the namespace and global policies along with the pods
    	s.pa.Delete("namespace", testNS)
    	s.pa.Delete("global", systemNS)
    	s.deletePod(t, "pod2")
    	s.assertEvent(t, s.podXdsName("pod2"), s.podXdsName("pod1"), xdsConvertedStaticStrict, s.podXdsName("waypoint-ns-pod"), s.podXdsName("waypoint2-sa"))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  4. src/net/http/transport.go

    			conn.Close()
    			return nil, err
    		}
    	case cm.targetScheme == "http":
    		pconn.isProxy = true
    		if pa := cm.proxyAuth(); pa != "" {
    			pconn.mutateHeaderFunc = func(h Header) {
    				h.Set("Proxy-Authorization", pa)
    			}
    		}
    	case cm.targetScheme == "https":
    		conn := pconn.conn
    		var hdr Header
    		if t.GetProxyConnectHeader != nil {
    			var err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  5. src/net/url/url_test.go

    		&URL{
    			Path: "a/b/c",
    		},
    		"a/b/c",
    	},
    	// escaped '?' in username and password
    	{
    		"http://%3Fam:******@****.***",
    		&URL{
    			Scheme: "http",
    			User:   UserPassword("?am", "pa?sword"),
    			Host:   "google.com",
    		},
    		"",
    	},
    	// host subcomponent; IPv4 address in RFC 3986
    	{
    		"http://192.168.0.1/",
    		&URL{
    			Scheme: "http",
    			Host:   "192.168.0.1",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top