Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for Greaves (0.18 sec)

  1. licenses/github.com/hashicorp/go-multierror/LICENSE

    Mozilla Public License, version 2.0
    
    1. Definitions
    
    1.1. “Contributor”
    
         means each individual or legal entity that creates, contributes to the
         creation of, or owns Covered Software.
    
    1.2. “Contributor Version”
    
         means the combination of the Contributions of others (if any) used by a
         Contributor and that particular Contributor’s Contribution.
    
    1.3. “Contribution”
    
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/core/v1/generated.proto

      // More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes
      repeated PersistentVolume items = 2;
    }
    
    // PersistentVolumeSource is similar to VolumeSource but meant for the
    // administrator who creates PVs. Exactly one of its members must be set.
    message PersistentVolumeSource {
      // gcePersistentDisk represents a GCE Disk resource that is attached to a
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  3. operator/cmd/mesh/test-util_test.go

    type ObjectSet struct {
    	objSlice object.K8sObjects
    	objMap   map[string]*object.K8sObject
    	keySlice []string
    }
    
    // NewObjectSet creates a new ObjectSet from objs and returns a pointer to it.
    func NewObjectSet(objs object.K8sObjects) *ObjectSet {
    	ret := &ObjectSet{}
    	for _, o := range objs {
    		ret.append(o)
    	}
    	return ret
    }
    
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Tue Oct 31 14:48:28 GMT 2023
    - 15.3K bytes
    - Viewed (0)
  4. cni/pkg/util/pluginutil.go

    	select {
    	case <-w.Events:
    		return nil
    	case err := <-w.Errors:
    		return err
    	case <-ctx.Done():
    		return ctx.Err()
    	}
    }
    
    func (w *Watcher) Close() {
    	_ = w.watcher.Close()
    }
    
    // Creates a file watcher that watches for any changes to the directory
    func CreateFileWatcher(paths ...string) (*Watcher, error) {
    	watcher, err := fsnotify.NewWatcher()
    	if err != nil {
    		return nil, fmt.Errorf("watcher create: %v", err)
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Jan 26 20:34:28 GMT 2024
    - 3.6K bytes
    - Viewed (0)
  5. istioctl/pkg/workload/workload.go

    	return entryCmd
    }
    
    func createCommand(ctx cli.Context) *cobra.Command {
    	createCmd := &cobra.Command{
    		Use:   "create",
    		Short: "Creates a WorkloadGroup resource that provides a template for associated WorkloadEntries",
    		Long: `Creates a WorkloadGroup resource that provides a template for associated WorkloadEntries.
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Apr 17 20:06:41 GMT 2024
    - 25.5K bytes
    - Viewed (0)
  6. common/scripts/setup_env.sh

    fi
    
    # echo ${CONDITIONAL_HOST_MOUNTS}
    
    # This function checks if the file exists. If it does, it creates a randomly named host location
    # for the file, adds it to the host KUBECONFIG, and creates a mount for it. Note that we use a copy
    # of the original file, so that the container can write to it.
    add_KUBECONFIG_if_exists () {
      if [[ -f "$1" ]]; then
    Shell Script
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Apr 23 19:52:28 GMT 2024
    - 7.6K bytes
    - Viewed (0)
  7. istioctl/pkg/multicluster/remote_secret.go

    	configSecretKey    = "config"
    )
    
    func remoteSecretNameFromClusterName(clusterName string) string {
    	return remoteSecretPrefix + clusterName
    }
    
    // NewCreateRemoteSecretCommand creates a new command for joining two contexts
    // together in a multi-cluster mesh.
    func NewCreateRemoteSecretCommand(ctx cli.Context) *cobra.Command {
    	opts := RemoteSecretOptions{
    		AuthType:         RemoteSecretAuthTypeBearerToken,
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Oct 11 01:43:17 GMT 2023
    - 24K bytes
    - Viewed (0)
  8. cni/pkg/cmd/root.go

    		udsLogger := udsLog.NewUDSLogger()
    		if err = udsLogger.StartUDSLogServer(cfg.InstallConfig.LogUDSAddress, ctx.Done()); err != nil {
    			log.Errorf("Failed to start up UDS Log Server: %v", err)
    			return
    		}
    
    		// Creates a basic health endpoint server that reports health status
    		// based on atomic flag, as set by installer
    		// TODO nodeagent watch server should affect this too, and drop atomic flag
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Apr 30 22:24:38 GMT 2024
    - 12.5K bytes
    - Viewed (0)
  9. licenses/github.com/hashicorp/go-version/LICENSE

    Mozilla Public License, version 2.0
    
    1. Definitions
    
    1.1. “Contributor”
    
         means each individual or legal entity that creates, contributes to the
         creation of, or owns Covered Software.
    
    1.2. “Contributor Version”
    
         means the combination of the Contributions of others (if any) used by a
         Contributor and that particular Contributor’s Contribution.
    
    1.3. “Contribution”
    
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  10. istioctl/pkg/authz/analyzer.go

    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    )
    
    // Analyzer that can be used to check authorization policy.
    type Analyzer struct {
    	listenerDump *envoy_admin.ListenersConfigDump
    }
    
    // NewAnalyzer creates a new analyzer for a given pod based on its envoy config.
    func NewAnalyzer(envoyConfig *configdump.Wrapper) (*Analyzer, error) {
    	listeners, err := envoyConfig.GetDynamicListenerDump(true)
    	if err != nil {
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Jul 13 01:59:17 GMT 2022
    - 2.1K bytes
    - Viewed (0)
Back to top