Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 101 for apps (0.16 sec)

  1. internal/config/identity/openid/help.go

    		},
    		config.HelpKV{
    			Key:         ClientID,
    			Description: `unique public identifier for apps e.g. "292085223830.apps.googleusercontent.com"` + defaultHelpPostfix(ClientID),
    			Type:        "string",
    		},
    		config.HelpKV{
    			Key:         ClientSecret,
    			Description: `secret for the unique public identifier for apps` + defaultHelpPostfix(ClientSecret),
    			Sensitive:   true,
    			Type:        "string",
    			Secret:      true,
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Jun 23 14:45:27 GMT 2023
    - 4.3K bytes
    - Viewed (0)
  2. istioctl/pkg/validate/validate_test.go

    	"regexp"
    	"strings"
    	"testing"
    
    	"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
    	"sigs.k8s.io/yaml"
    
    	"istio.io/istio/istioctl/pkg/cli"
    	"istio.io/istio/pkg/test/util/assert"
    )
    
    const (
    	validDeploymentList = `
    apiVersion: v1
    items:
    - apiVersion: apps/v1
      kind: Deployment
      metadata:
        labels:
          app: hello
          version: v1
        name: hello-v1
      spec:
        replicas: 1
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Jul 25 08:08:36 GMT 2023
    - 21.5K bytes
    - Viewed (0)
  3. misc/ios/go_ios_exec.go

    	}
    	var list struct {
    		Apps []struct {
    			Data []byte `xml:",innerxml"`
    		} `xml:"array>dict"`
    	}
    	if err := xml.Unmarshal(out, &list); err != nil {
    		return "", fmt.Errorf("failed to parse ideviceinstaller output: %v", err)
    	}
    	for _, app := range list.Apps {
    		values, err := parsePlistDict(app.Data)
    		if err != nil {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 23.4K bytes
    - Viewed (0)
  4. cni/pkg/iptables/iptables.go

    		"-p", "tcp",
    		"-m", "mark",
    		"--mark", inpodTproxyMark,
    		"-j", "ACCEPT",
    	)
    
    	// Do not redirect app calls to back itself via Ztunnel when using the endpoint address
    	// e.g. appN => appN by lo
    	iptablesBuilder.AppendVersionedRule("127.0.0.1/32", "::1/128",
    		iptableslog.UndefinedCommand, ChainInpodOutput, iptablesconstants.NAT,
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 12 01:42:30 GMT 2024
    - 19.2K bytes
    - Viewed (0)
  5. cmd/sts-handlers_test.go

    				ClientSecret: "minio-client-app-secret",
    				ProviderURL:  openIDServer,
    				RedirectURL:  "http://127.0.0.1:10000/oauth_callback",
    			})
    			m[testRoleARNs[len(apps)-1]] = apps[len(apps)-1]
    		}
    
    		openIDServer2 := os.Getenv(EnvTestOpenIDServer2)
    		if openIDServer2 != "" {
    			apps = append(apps, OpenIDClientAppParams{
    				ClientID:     "minio-client-app-2",
    				ClientSecret: "minio-client-app-secret-2",
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 18 19:09:19 GMT 2024
    - 84.7K bytes
    - Viewed (0)
  6. istioctl/pkg/util/handlers/handlers_test.go

    // limitations under the License.
    
    package handlers
    
    import (
    	"fmt"
    	"net/http"
    	"sort"
    	"strings"
    	"testing"
    	"time"
    
    	appsv1 "k8s.io/api/apps/v1"
    	corev1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	corev1client "k8s.io/client-go/kubernetes/typed/core/v1"
    	"k8s.io/client-go/rest/fake"
    	cmdtesting "k8s.io/kubectl/pkg/cmd/testing"
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jun 09 18:17:49 GMT 2023
    - 6.6K bytes
    - Viewed (0)
  7. istioctl/pkg/precheck/precheck.go

    	"github.com/spf13/cobra"
    	"gopkg.in/yaml.v2"
    	authorizationapi "k8s.io/api/authorization/v1"
    	corev1 "k8s.io/api/core/v1"
    	crd "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
    	kerrors "k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	"istio.io/api/label"
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/istioctl/pkg/cli"
    	"istio.io/istio/istioctl/pkg/clioptions"
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 12 02:57:30 GMT 2024
    - 19.3K bytes
    - Viewed (0)
  8. istioctl/pkg/util/ambient/util.go

    // limitations under the License.
    
    package ambient
    
    import (
    	"context"
    	"strings"
    
    	corev1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	"istio.io/api/label"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/kube"
    )
    
    func IsZtunnelPod(client kube.CLIClient, podName, podNamespace string) bool {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jan 04 03:08:06 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  9. cni/pkg/plugin/plugin_test.go

    	cniConf := buildMockConf(true, url)
    
    	pod, ns := buildFakePodAndNSForClient()
    
    	proxy := corev1.Container{Name: "istio-proxy"}
    	app := corev1.Container{Name: "app"}
    
    	pod.Spec.Containers = []corev1.Container{app, proxy}
    	pod.ObjectMeta.Annotations = map[string]string{annotation.SidecarStatus.Name: "true"}
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Feb 10 00:31:55 GMT 2024
    - 17.5K bytes
    - Viewed (0)
  10. cni/pkg/nodeagent/net_test.go

    		iptablesConfigurator: iptablesConfigurator,
    		nlDeps:               nlDeps,
    		ipsetDeps:            fakeIPSetDeps,
    	}
    }
    
    func buildConvincingPod() *corev1.Pod {
    	app1 := corev1.Container{
    		Name: "app1",
    		Ports: []corev1.ContainerPort{
    			{
    				Name:          "foo-port",
    				ContainerPort: 8010,
    			},
    			{
    				Name:          "foo-2-port",
    				ContainerPort: 8020,
    			},
    		},
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 12 21:47:31 GMT 2024
    - 14.3K bytes
    - Viewed (0)
Back to top