Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,536 for pcds (0.07 sec)

  1. cmd/kubeadm/test/resources/pods.go

    }
    
    // CreateWithPodSuffix creates a fake static pod using the provided
    // client and suffix
    func (p *FakeStaticPod) CreateWithPodSuffix(client clientset.Interface, suffix string) error {
    	_, err := client.CoreV1().Pods(metav1.NamespaceSystem).Create(context.TODO(), p.Pod(suffix), metav1.CreateOptions{})
    	return err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/grpcgen/cds.go

    	var port *model.Port
    	svc := push.ServiceForHostname(node, hostname)
    	if svc == nil {
    		return nil, fmt.Errorf("cds gen for %s: did not find service for cluster %s", node.ID, defaultClusterName)
    	}
    
    	port, ok := svc.Ports.GetByPort(portNum)
    	if !ok {
    		return nil, fmt.Errorf("cds gen for %s: did not find port %d in service for cluster %s", node.ID, portNum, defaultClusterName)
    	}
    
    	return &clusterBuilder{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. pilot/pkg/xds/cds.go

    // Map of all configs that do not impact CDS
    var skippedCdsConfigs = sets.New(
    	kind.Gateway,
    	kind.WorkloadEntry,
    	kind.WorkloadGroup,
    	kind.AuthorizationPolicy,
    	kind.RequestAuthentication,
    	kind.Secret,
    	kind.Telemetry,
    	kind.WasmPlugin,
    	kind.ProxyConfig,
    	kind.DNSName,
    
    	kind.KubernetesGateway,
    )
    
    // Map all configs that impact CDS for gateways when `PILOT_FILTER_GATEWAY_CLUSTER_CONFIG = true`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 21:27:52 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. pilot/pkg/xds/testdata/ecds.yaml

    Pengyuan Bian <******@****.***> 1611178734 +0000
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 20 21:38:54 UTC 2021
    - 606 bytes
    - Viewed (0)
  5. istioctl/pkg/writer/pilot/status.go

    				continue
    			}
    			cds, lds, eds, rds, ecds := getSyncStatus(&clientConfig)
    			cp := multixds.CpInfo(dr)
    			fullStatus = append(fullStatus, &xdsWriterStatus{
    				proxyID:               clientConfig.GetNode().GetId(),
    				clusterID:             meta.ClusterID.String(),
    				istiodID:              cp.ID,
    				istiodVersion:         meta.IstioVersion,
    				clusterStatus:         cds,
    				listenerStatus:        lds,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 04:16:55 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. istioctl/pkg/proxystatus/proxystatus_test.go

    			args:           []string{},
    			noIstiod:       true,
    			expectedOutput: "Error: no running Istio pods in \"istio-system\"\n",
    			wantException:  true,
    		},
    		{ // case 1, with Istiod instance
    			args:           []string{},
    			expectedString: "NAME     CLUSTER     CDS     LDS     EDS     RDS     ECDS     ISTIOD",
    		},
    		{ // case 2: supplying nonexistent pod name should result in error with flag
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 08:28:50 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. pkg/adsc/adsc_test.go

    			}
    			if ecds := readFile(base+"_ecds.json", t); ecds != tt.expectedJSON["_ecds"] {
    				t.Errorf("AdscSave() => %s expected ecds %s", ecds, tt.expectedJSON["_ecds"])
    			}
    			if cds := readFile(base+"_cds.json", t); cds != tt.expectedJSON["_cds"] {
    				t.Errorf("AdscSave() => %s expected cds %s", cds, tt.expectedJSON["_cds"])
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  8. src/runtime/netpoll_aix.go

    	pd.user = uint32(len(pfds))
    	pfds = append(pfds, pollfd{fd: int32(fd)})
    	pds = append(pds, pd)
    	unlock(&mtxset)
    	return 0
    }
    
    func netpollclose(fd uintptr) int32 {
    	lock(&mtxpoll)
    	netpollwakeup()
    
    	lock(&mtxset)
    	unlock(&mtxpoll)
    
    	for i := 0; i < len(pfds); i++ {
    		if pfds[i].fd == int32(fd) {
    			pfds[i] = pfds[len(pfds)-1]
    			pfds = pfds[:len(pfds)-1]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. releasenotes/notes/cds-cache.yaml

    John Howard <******@****.***> 1625772841 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 08 19:34:01 UTC 2021
    - 245 bytes
    - Viewed (0)
  10. releasenotes/notes/push-cds-and-eds-on-virtualservice-update.yaml

    ---
    apiVersion: release-notes/v2
    kind: bug-fix
    area: networking
    issue:
      - 27650
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 02 00:07:10 UTC 2020
    - 176 bytes
    - Viewed (0)
Back to top