Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Pappas (0.17 sec)

  1. misc/ios/go_ios_exec.go

    		return "", fmt.Errorf("ideviceinstaller: -l -o xml %v", err)
    	}
    	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 30 11:13:12 GMT 2024
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 23.4K bytes
    - Viewed (0)
  2. istioctl/pkg/validate/validate_test.go

    metadata:
      name: productpage
    unexpected_junk:
       still_more_junk:
    spec:
      host: productpage`
    	versionLabelMissingDeployment = `
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: hello
    spec:`
    	skippedDeployment = `
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: hello
      namespace: istio-system
    spec: ~`
    	invalidIstioConfig = `
    apiVersion: install.istio.io/v1alpha1
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Jul 25 08:08:36 GMT 2023
    - 21.5K bytes
    - Viewed (0)
  3. 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"
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Jun 09 18:17:49 GMT 2023
    - 6.6K bytes
    - Viewed (0)
  4. 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 28 19:28:10 GMT 2024
    - Last Modified: Fri Jun 23 14:45:27 GMT 2023
    - 4.3K bytes
    - Viewed (0)
  5. cni/pkg/iptables/iptables.go

    	// healthcheck port, just like we used to. Otherwise, we can't assume it's local-node privileged traffic, and will capture and process it normally.
    	//
    	// All this is necessary because quite often apps use the same port for healthchecks as they do for reg. traffic, and
    	// we cannot make assumptions there.
    
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Apr 30 22:24:38 GMT 2024
    - 19.6K bytes
    - Viewed (0)
  6. cmd/sts-handlers_test.go

    				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",
    				ProviderURL:  openIDServer2,
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 85.7K bytes
    - Viewed (0)
  7. istioctl/pkg/precheck/precheck.go

    			version:   "v1",
    			resource:  "serviceaccounts",
    		},
    		{
    			namespace: istioNamespace,
    			version:   "v1",
    			resource:  "services",
    		},
    		{
    			namespace: istioNamespace,
    			group:     "apps",
    			version:   "v1",
    			resource:  "deployments",
    		},
    		{
    			namespace: istioNamespace,
    			version:   "v1",
    			resource:  "configmaps",
    		},
    		{
    			group:    "admissionregistration.k8s.io",
    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)
Back to top