Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 234 for Turing (0.2 sec)

  1. common/scripts/metallb-native.yaml

        - jsonPath: .spec.ipAddressPools
          name: IPAddressPools
          type: string
        - jsonPath: .spec.ipAddressPoolSelectors
          name: IPAddressPool Selectors
          type: string
        - jsonPath: .spec.peers
          name: Peers
          type: string
        - jsonPath: .spec.nodeSelectors
          name: Node Selectors
          priority: 10
          type: string
        name: v1beta1
        schema:
          openAPIV3Schema:
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Feb 23 23:56:31 GMT 2024
    - 63.9K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/storage/v1/generated.proto

      // +optional
      map<string, string> attachmentMetadata = 2;
    
      // attachError represents the last error encountered during attach operation, if any.
      // This field must only be set by the entity completing the attach
      // operation, i.e. the external-attacher.
      // +optional
      optional VolumeError attachError = 3;
    
      // detachError represents the last error encountered during detach operation, if any.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 24.7K bytes
    - Viewed (0)
  3. cni/pkg/install/cniconfig.go

    )
    
    type pluginConfig struct {
    	mountedCNINetDir string
    	cniConfName      string
    	chainedCNIPlugin bool
    }
    
    type cniConfigTemplate struct {
    	cniNetworkConfigFile string
    	cniNetworkConfig     string
    }
    
    type cniConfigVars struct {
    	cniNetDir          string
    	kubeconfigFilename string
    	logLevel           string
    	k8sServiceHost     string
    	k8sServicePort     string
    	k8sNodeName        string
    	logUDSAddress      string
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jan 26 20:34:28 GMT 2024
    - 10.4K bytes
    - Viewed (0)
  4. cni/test/install_cni.go

      }
    }
    `
    )
    
    func getEnv(key, fallback string) string {
    	if value, ok := os.LookupEnv(key); ok {
    		return value
    	}
    	return fallback
    }
    
    func setEnv(key, value string, t *testing.T) {
    	t.Helper()
    	err := os.Setenv(key, value)
    	if err != nil {
    		t.Fatalf("Couldn't set environment variable, err: %v", err)
    	}
    }
    
    func mktemp(dir, prefix string, t *testing.T) string {
    	t.Helper()
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jan 26 20:34:28 GMT 2024
    - 12.5K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string initiatorName = 12;
    }
    
    // Maps a string key to a path within a volume.
    message KeyToPath {
      // key is the key to project.
      optional string key = 1;
    
      // path is the relative path of the file to map the key to.
      // May not be an absolute path.
      // May not contain the path element '..'.
      // May not start with the string '..'.
      optional string path = 2;
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/autoscaling/v2beta2/generated.proto

      optional string kind = 1;
    
      // name is the name of the referent; More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
      optional string name = 2;
    
      // apiVersion is the API version of the referent
      // +optional
      optional string apiVersion = 3;
    }
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 21K bytes
    - Viewed (0)
  7. istioctl/pkg/tag/tag_test.go

    			}
    		})
    	}
    }
    
    func TestSetTagErrors(t *testing.T) {
    	tcs := []struct {
    		name           string
    		tag            string
    		revision       string
    		webhooksBefore admitv1.MutatingWebhookConfigurationList
    		namespaces     corev1.NamespaceList
    		outputMatches  []string
    		error          string
    	}{
    		{
    			name:     "TestErrorWhenRevisionWithNameCollision",
    			tag:      "revision",
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Nov 17 22:41:06 GMT 2023
    - 8.7K bytes
    - Viewed (0)
  8. istioctl/pkg/completion/completion.go

    			podsName = append(podsName, pod.Name)
    		}
    	}
    
    	return podsName, nil
    }
    
    func ValidPodsNameArgs(ctx cli.Context) func(_ *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
    	return func(_ *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
    		if len(args) != 0 {
    			return nil, cobra.ShellCompDirectiveNoFileComp
    		}
    
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 4.9K bytes
    - Viewed (0)
  9. manifests/charts/gateway/values.schema.json

                      "type": "string"
                    },
                    "memory": {
                      "type": "string"
                    }
                  }
                },
                "requests": {
                  "type": "object",
                  "properties": {
                    "cpu": {
                      "type": "string"
                    },
                    "memory": {
                      "type": "string"
                    }
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jan 18 16:33:33 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  10. cni/pkg/plugin/plugin_test.go

    	type args struct {
    		ports []string
    	}
    	tests := []struct {
    		name string
    		args args
    		want []string
    	}{
    		{
    			name: "No duplicates",
    			args: args{ports: []string{"1234", "2345"}},
    			want: []string{"1234", "2345"},
    		},
    		{
    			name: "Sequential Duplicates",
    			args: args{ports: []string{"1234", "1234", "2345", "2345"}},
    			want: []string{"1234", "2345"},
    		},
    		{
    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)
Back to top