Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for pl (0.3 sec)

  1. istioctl/pkg/dashboard/dashboard.go

    	for _, ns := range []string{ctx.IstioNamespace(), ctx.NamespaceOrDefault(ctx.Namespace())} {
    		pl, err := client.PodsForSelector(context.TODO(), ns, labelSelector)
    		if err != nil {
    			continue
    		}
    		if len(pl.Items) > 0 {
    			return pl.Items[0].Name, pl.Items[0].Namespace, nil
    		}
    	}
    	return "", "", fmt.Errorf("no pods found with selector %s", labelSelector)
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Apr 15 01:29:35 GMT 2024
    - 20.5K bytes
    - Viewed (0)
  2. istioctl/pkg/admin/istiodconfig.go

    				}
    				pl, err := client.PodsForSelector(context.TODO(), ctx.NamespaceOrDefault(ctx.IstioNamespace()), istiodLabelSelector)
    				if err != nil {
    					return fmt.Errorf("not able to locate pod with selector %s: %v", istiodLabelSelector, err)
    				}
    
    				if len(pl.Items) < 1 {
    					return errors.New("no pods found")
    				}
    
    				if len(pl.Items) > 1 {
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  3. istioctl/pkg/precheck/precheck.go

    		sniImpacted = sniImpacted || checkSNI(dr.Spec.GetTrafficPolicy().GetTls())
    		for _, pl := range dr.Spec.GetTrafficPolicy().GetPortLevelSettings() {
    			verificationImpacted = verificationImpacted || checkVerify(pl.GetTls())
    			sniImpacted = sniImpacted || checkSNI(pl.GetTls())
    		}
    		for _, ss := range dr.Spec.Subsets {
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Apr 12 02:57:30 GMT 2024
    - 19.3K bytes
    - Viewed (0)
  4. istioctl/pkg/metrics/metrics.go

    	}
    
    	pl, err := client.PodsForSelector(context.TODO(), ctx.IstioNamespace(), "app.kubernetes.io/name=prometheus")
    	if err != nil {
    		return fmt.Errorf("not able to locate Prometheus pod: %v", err)
    	}
    
    	if len(pl.Items) < 1 {
    		return errors.New("no Prometheus pods found")
    	}
    
    	// only use the first pod in the list
    	promPod := pl.Items[0]
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 8.4K bytes
    - Viewed (0)
  5. docs/en/mkdocs.yml

        name: hu - magyar
      - link: /id/
        name: id - Bahasa Indonesia
      - link: /it/
        name: it - italiano
      - link: /ja/
        name: ja - 日本語
      - link: /ko/
        name: ko - 한국어
      - link: /pl/
        name: pl - Polski
      - link: /pt/
        name: pt - português
      - link: /ru/
        name: ru - русский язык
      - link: /tr/
        name: tr - Türkçe
      - link: /uk/
        name: uk - українська мова
      - link: /ur/
    Others
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu May 02 22:37:31 GMT 2024
    - 9.1K bytes
    - Viewed (0)
  6. istioctl/pkg/proxyconfig/proxyconfig.go

    		podNames []string
    		ns       string
    	)
    	pl, err := kubeClient.PodsForSelector(context.TODO(), ctx.NamespaceOrDefault(ctx.Namespace()), labelSelector)
    	if err != nil {
    		return nil, "", fmt.Errorf("not able to locate pod with selector %s: %v", labelSelector, err)
    	}
    	if len(pl.Items) < 1 {
    		return nil, "", errors.New("no pods found")
    	}
    	for _, pod := range pl.Items {
    		podNames = append(podNames, pod.Name)
    	}
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Apr 16 03:28:36 GMT 2024
    - 48K bytes
    - Viewed (0)
  7. cmd/iam-store.go

    			continue
    		}
    		pl, _ := cache.iamUserPolicyMap.Load(k)
    		result[k] = madmin.UserInfo{
    			PolicyName: pl.Policies,
    			Status: func() madmin.AccountStatus {
    				if v.IsValid() {
    					return madmin.AccountEnabled
    				}
    				return madmin.AccountDisabled
    			}(),
    			MemberOf:  cache.iamUserGroupMemberships[k].ToSlice(),
    			UpdatedAt: pl.UpdatedAt,
    		}
    	}
    
    	return result
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sat Apr 27 10:04:10 GMT 2024
    - 75.2K bytes
    - Viewed (2)
  8. src/main/resources/fess_config.properties

    gl=gl\n\
    gu=gu\n\
    he=he\n\
    hi=hi\n\
    hr=hr\n\
    hu=hu\n\
    hy=hy\n\
    id=id\n\
    it=it\n\
    ja=ja\n\
    ko=ko\n\
    lt=lt\n\
    lv=lv\n\
    mk=mk\n\
    ml=ml\n\
    nl=nl\n\
    no=no\n\
    pa=pa\n\
    pl=pl\n\
    pt=pt\n\
    pt-br=pt-br\n\
    pt_BR=pt-br\n\
    ro=ro\n\
    ru=ru\n\
    si=si\n\
    sq=sq\n\
    sv=sv\n\
    ta=ta\n\
    te=te\n\
    th=th\n\
    tl=tl\n\
    tr=tr\n\
    uk=uk\n\
    ur=ur\n\
    vi=vi\n\
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  9. maven-core/src/main/java/org/apache/maven/ReactorReader.java

                boolean projectCompiledDuringThisSession =
                        project.hasLifecyclePhase("compile") && COMPILE_PHASE_TYPES.contains(type);
    
                // Check if the project is part of the session (not filtered by -pl, -rf, etc). If so, we check
                // if a possible earlier Maven invocation produced some output for that project which we can use.
                boolean projectHasOutputFromPreviousSession =
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 16:33:18 GMT 2024
    - 21.3K bytes
    - Viewed (0)
  10. docs/hu/docs/index.md

    * **GraphQL** integráció <a href="https://strawberry.rocks" class="external-link" target="_blank">Strawberry</a>-vel és más könyvtárakkal.
    * több extra funkció (Starlette-nek köszönhetően) pl.:
        * **WebSockets**
        * rendkívül könnyű tesztek HTTPX és `pytest` alapokra építve
        * **CORS**
        * **Cookie Sessions**
        * ...és több.
    
    ## Teljesítmény
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Mon Apr 29 05:18:04 GMT 2024
    - 20.2K bytes
    - Viewed (0)
Back to top