Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 332 for submatch (0.14 sec)

  1. src/internal/zstd/block.go

    	matchState, err := rbr.val(r.seqTableBits[seqMatch])
    	if err != nil {
    		return err
    	}
    
    	// Read and perform all the sequences. RFC 3.1.1.4.
    
    	seq := 0
    	for seq < seqCount {
    		if len(r.buffer)+len(litbuf) > 128<<10 {
    			return rbr.makeError("uncompressed size too big")
    		}
    
    		ptoffset := &r.seqTables[seqOffset][offsetState]
    		ptmatch := &r.seqTables[seqMatch][matchState]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 17:57:43 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  2. pkg/volume/util/atomic_writer.go

    	for file := range payload {
    		// add all subpaths for the payload to the set of new paths
    		// to avoid attempting to remove non-empty dirs
    		for subPath := file; subPath != ""; {
    			newPaths.Insert(subPath)
    			subPath, _ = filepath.Split(subPath)
    			subPath = strings.TrimSuffix(subPath, string(os.PathSeparator))
    		}
    	}
    	klog.V(5).Infof("%s: new paths:       %+v", w.targetDir, sets.List(newPaths))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/arguments_test.go

    			},
    			overrides: []kubeadmapi.Arg{
    				{Name: "tls-sni-cert-key", Value: "/some/new/path"},
    				{Name: "tls-sni-cert-key", Value: "/some/new/path/subpath"},
    			},
    			expected: []string{
    				"--tls-sni-cert-key=/some/new/path",
    				"--tls-sni-cert-key=/some/new/path/subpath",
    				"--token-auth-file=/token",
    			},
    		},
    		{
    			name: "override all duplicate arguments from base",
    			base: []kubeadmapi.Arg{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 10:27:05 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  4. helm/minio/templates/deployment.yaml

                  readOnly: true
                - name: export
                  mountPath: {{ .Values.mountPath }}
                  {{- if and .Values.persistence.enabled .Values.persistence.subPath }}
                  subPath: "{{ .Values.persistence.subPath }}"
                  {{- end }}
                {{- if .Values.extraSecret }}
                - name: extra-secret
                  mountPath: "/tmp/minio-config-env"
                {{- end }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 03 17:50:39 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/custom-template.iop.yaml

                    value: "true"
                  - name: SOME_FILE
                    value: /var/lib/data/foo.json
                  volumeMounts:
                  - mountPath: /var/lib/data/foo.json
                    subPath: foo.json
                    name: some-injected-file
                {{- end}}
                volumes:
                - name: some-injected-file
                  downwardAPI:
                    items:
                    - path: foo.json
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 06 23:34:59 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods_windows_test.go

    	"github.com/stretchr/testify/require"
    	v1 "k8s.io/api/core/v1"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    	"k8s.io/kubernetes/pkg/volume/util/hostutil"
    	"k8s.io/kubernetes/pkg/volume/util/subpath"
    )
    
    func TestMakeMountsWindows(t *testing.T) {
    	// TODO: remove skip once the failing test has been fixed.
    	t.Skip("Skip failing test on Windows.")
    	container := v1.Container{
    		VolumeMounts: []v1.VolumeMount{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/request/requestinfo_test.go

    		{"GET", "/api/v1/proxy/namespaces/other/pods/foo", "proxy", "api", "", "v1", "other", "pods", "", "foo", []string{"pods", "foo"}},
    		{"GET", "/api/v1/proxy/namespaces/other/pods/foo/subpath/not/a/subresource", "proxy", "api", "", "v1", "other", "pods", "", "foo", []string{"pods", "foo", "subpath", "not", "a", "subresource"}},
    		{"GET", "/api/v1/watch/pods", "watch", "api", "", "v1", namespaceAll, "pods", "", "", []string{"pods"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 15 12:19:21 UTC 2018
    - 11.3K bytes
    - Viewed (0)
  8. pkg/kubelet/container/helpers_test.go

    		expectedMountPath string
    		expectedOk        bool
    	}{
    		{
    			name: "subpath with no expansion",
    			container: &v1.Container{
    				VolumeMounts: []v1.VolumeMount{{SubPathExpr: "foo"}},
    			},
    			expectedSubPath:   "foo",
    			expectedMountPath: "",
    			expectedOk:        true,
    		},
    		{
    			name: "volumes with expanded subpath",
    			container: &v1.Container{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 01:55:46 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  9. operator/pkg/manifest/shared.go

    			if !ok {
    				return outYAML, nil
    			}
    
    			for index, subPath := range subPaths {
    				if _, ok := originMap[subPath].(map[string]any); !ok {
    					return outYAML, fmt.Errorf("can not convert subPath %s in setFlag path %s",
    						subPath, setFlagConvertPath)
    				}
    
    				if index == len(subPaths)-1 {
    					for key, value := range originMap[subPath].(map[string]any) {
    						if reflect.TypeOf(value).Kind() == reflect.Int {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 06:27:07 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/initialization/DefaultSettings.java

            for (String projectPath : projectPaths) {
                String subPath = "";
                String[] pathElements = removeTrailingColon(projectPath).split(":");
                DefaultProjectDescriptor parentProjectDescriptor = rootProjectDescriptor;
                for (String pathElement : pathElements) {
                    subPath = subPath + ":" + pathElement;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 18:31:24 UTC 2023
    - 14.3K bytes
    - Viewed (0)
Back to top