Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for backsteps (0.22 sec)

  1. pkg/kubelet/kubelet_pods_linux_test.go

    		},
    		"invalid SubPath with backsteps": {
    			podVolumes: kubecontainer.VolumeMap{
    				"disk": kubecontainer.VolumeInfo{Mounter: &stubVolume{path: "/mnt/disk"}},
    			},
    			container: v1.Container{
    				VolumeMounts: []v1.VolumeMount{
    					{
    						MountPath: "/mnt/path3",
    						SubPath:   "no/backsteps/../allowed",
    						Name:      "disk",
    						ReadOnly:  true,
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 18:00:59 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. pkg/volume/hostpath/host_path_test.go

    	}
    	pod := &v1.Pod{ObjectMeta: metav1.ObjectMeta{UID: types.UID("poduid")}}
    	mounter, err := plug.NewMounter(volume.NewSpecFromVolume(spec), pod, volume.VolumeOptions{})
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	err = mounter.SetUp(volume.MounterArgs{})
    	expectedMsg := "invalid HostPath `/no/backsteps/allowed/..`: must not contain '..'"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  3. pkg/volume/local/local_test.go

    	pod := &v1.Pod{ObjectMeta: metav1.ObjectMeta{UID: types.UID("poduid")}}
    	mounter, err := plug.NewMounter(getTestVolume(false, "/no/backsteps/allowed/..", false, nil), pod, volume.VolumeOptions{})
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	err = mounter.SetUp(volume.MounterArgs{})
    	expectedMsg := "invalid path: /no/backsteps/allowed/.. must not contain '..'"
    	if err.Error() != expectedMsg {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 10:53:39 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KDocReferenceResolver.kt

                }
                val goBackSteps = fullFqName.pathSegments().size - selectedFqName.pathSegments().size
                check(goBackSteps > 0) {
                    "Selected FqName ($selectedFqName) should be smaller than the whole FqName ($fullFqName)"
                }
                return fullSymbolsResolved.mapNotNullTo(mutableSetOf()) { findParentSymbol(it, goBackSteps, selectedFqName) }
            }
        }
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  5. src/embed/embed.go

    	if !fs.ValidPath(name) {
    		// The compiler should never emit a file with an invalid name,
    		// so this check is not strictly necessary (if name is invalid,
    		// we shouldn't find a match below), but it's a good backstop anyway.
    		return nil
    	}
    	if name == "." {
    		return dotFile
    	}
    	if f.files == nil {
    		return nil
    	}
    
    	// Binary search to find where name would be in the list,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:42:51 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    		plState.queues = plState.qsCompleter.Complete(fq.DispatchingConfig{ConcurrencyLimit: currentCL, ConcurrencyDenominator: concurrencyDenominator})
    	}
    	metrics.SetFairFrac(float64(fairFrac))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
Back to top