Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 63 for nmap (0.14 sec)

  1. istioctl/pkg/analyze/analyze.go

    	for _, e := range fileExtensions {
    		if e == ext {
    			return true
    		}
    	}
    	return false
    }
    
    func AnalyzersAsString(analyzers []analysis.Analyzer) string {
    	nameToAnalyzer := make(map[string]analysis.Analyzer)
    	analyzerNames := make([]string, len(analyzers))
    	for i, a := range analyzers {
    		analyzerNames[i] = a.Metadata().Name
    		nameToAnalyzer[a.Metadata().Name] = a
    	}
    	sort.Strings(analyzerNames)
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Apr 02 08:32:06 GMT 2024
    - 17K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/apps/v1/generated.proto

    // Identities are defined as:
    //   - Network: A single stable DNS and hostname.
    //   - Storage: As many VolumeClaims as requested.
    //
    // The StatefulSet guarantees that a given network identity will always
    // map to the same storage identity.
    message StatefulSet {
      // Standard object's metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 34.5K bytes
    - Viewed (0)
  3. operator/cmd/mesh/test-util_test.go

    	out := make(map[string]any)
    	if hostname != "" {
    		out["hostname"] = hostname
    	}
    	if ip != "" {
    		out["ip"] = ip
    	}
    	if nodeName != "" {
    		out["nodeName"] = nodeName
    	}
    	return out
    }
    
    // portVal returns a map having service port type. A value of -1 for port or targetPort leaves those keys unset.
    func portVal(name string, port, targetPort int64) map[string]any {
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Oct 31 14:48:28 GMT 2023
    - 15.3K bytes
    - Viewed (0)
  4. istioctl/pkg/multicluster/remote_secret_test.go

    				ObjectMeta: metav1.ObjectMeta{
    					Name: remoteSecretNameFromClusterName(fakeClusterName),
    					Annotations: map[string]string{
    						clusterNameAnnotationKey: fakeClusterName,
    					},
    					Labels: map[string]string{
    						multicluster.MultiClusterSecretLabel: "true",
    					},
    				},
    				Data: map[string][]byte{
    					fakeClusterName: []byte(kubeconfig),
    				},
    			},
    		},
    		{
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Oct 31 14:48:28 GMT 2023
    - 20.6K bytes
    - Viewed (0)
  5. istioctl/pkg/workload/workload.go

    }
    
    // Because we are placing into an Unstructured, place as a map instead
    // of structured Istio types.  (The go-client can handle the structured data, but the
    // fake go-client used for mocking cannot.)
    func unstructureIstioType(spec any) (map[string]any, error) {
    	b, err := yaml.Marshal(spec)
    	if err != nil {
    		return nil, err
    	}
    	iSpec := map[string]any{}
    	err = yaml.Unmarshal(b, &iSpec)
    	if err != nil {
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed Apr 17 20:06:41 GMT 2024
    - 25.5K bytes
    - Viewed (0)
  6. istioctl/pkg/injector/injector-list.go

    	}
    	return retval, nil
    }
    
    // getInjectedImages() returns a map of revision->dockerimage
    func getInjectedImages(ctx context.Context, client kube.CLIClient) (map[string]string, error) {
    	retval := map[string]string{}
    
    	// All configs in all namespaces that are Istio revisioned
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu Jan 04 03:08:06 GMT 2024
    - 10.4K bytes
    - Viewed (0)
  7. cni/pkg/nodeagent/podcgroupns.go

    }
    
    func reSubMatchMap(r *regexp.Regexp, str string) map[string]string {
    	match := r.FindStringSubmatch(str)
    	if match == nil {
    		return nil
    	}
    	subMatchMap := make(map[string]string)
    	for i, name := range r.SubexpNames() {
    		if i != 0 {
    			subMatchMap[name] = match[i]
    		}
    	}
    	return subMatchMap
    }
    
    func isValidCGroupPathMatches(matches map[string]string) bool {
    	if matches == nil {
    		return false
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Fri Apr 12 21:47:31 GMT 2024
    - 11K bytes
    - Viewed (0)
  8. istioctl/pkg/tag/generate.go

    	Revision       string
    	URL            string
    	Path           string
    	CABundle       string
    	IstioNamespace string
    	Labels         map[string]string
    	Annotations    map[string]string
    	// FailurePolicy records the failure policy to use for the webhook.
    	FailurePolicy map[string]*admitv1.FailurePolicyType
    }
    
    // GenerateOptions is the group of options needed to generate a tag webhook.
    type GenerateOptions struct {
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Jan 16 17:43:49 GMT 2024
    - 13.2K bytes
    - Viewed (0)
  9. cni/pkg/install/cniconfig_test.go

    		expectedFailure      bool
    		existingConfFilename string
    		newConfFilename      string
    	}{
    		{
    			name:                 "invalid existing config format (map)",
    			expectedFailure:      true,
    			existingConfFilename: "invalid-map.conflist",
    			newConfFilename:      "istio-cni.conf",
    		},
    		{
    			name:                 "invalid new config format (arr)",
    			expectedFailure:      true,
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed May 17 02:22:22 GMT 2023
    - 15.4K bytes
    - Viewed (0)
  10. istioctl/pkg/multicluster/remote_secret.go

    		key = configSecretKey
    	}
    	out := &v1.Secret{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: secName,
    			Annotations: map[string]string{
    				clusterNameAnnotationKey: clusterName,
    			},
    			Labels: map[string]string{
    				multicluster.MultiClusterSecretLabel: "true",
    			},
    		},
    		Data: map[string][]byte{
    			key: data.Bytes(),
    		},
    	}
    	return out, nil
    }
    
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed Oct 11 01:43:17 GMT 2023
    - 24K bytes
    - Viewed (0)
Back to top