Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for findMin (0.11 sec)

  1. pkg/api/pod/util_test.go

    		t.Logf("Missing expected secret paths:\n%s", strings.Join(sets.List[string](missingPaths), "\n"))
    		t.Error("Missing expected secret paths. Verify VisitPodSecretNames() is correctly finding the missing paths, then correct expectedSecretPaths")
    	}
    	if extraPaths := secretPaths.Difference(expectedSecretPaths); len(extraPaths) > 0 {
    		t.Logf("Extra secret paths:\n%s", strings.Join(sets.List[string](extraPaths), "\n"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  2. pkg/volume/util/operationexecutor/operation_generator.go

    	volumeSpec := volume.NewSpecFromPersistentVolume(pv, false)
    
    	volumePlugin, err := og.volumePluginMgr.FindExpandablePluginBySpec(volumeSpec)
    	if err != nil {
    		return volumetypes.GeneratedOperations{}, fmt.Errorf("error finding plugin for expanding volume: %q with error %v", util.GetPersistentVolumeClaimQualifiedName(pvc), err)
    	}
    
    	if volumePlugin == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    		}
    		if strings.HasPrefix(name, "./") {
    			gofiles = append(gofiles, name[len("./"):])
    			continue
    		}
    		file, err := b.findCachedObjdirFile(a, c, name)
    		if err != nil {
    			return fmt.Errorf("finding %s: %w", name, err)
    		}
    		gofiles = append(gofiles, file)
    	}
    	a.Package.CompiledGoFiles = gofiles
    	return nil
    }
    
    // vetConfig is the configuration passed to vet describing a single package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

    function override-kubectl {
        echo "overriding kubectl"
        echo "export PATH=${KUBE_HOME}/bin:\$PATH" > /etc/profile.d/kube_env.sh
    
        # source the file explicitly otherwise we have
        # issues on a ubuntu OS image finding the kubectl
        # shellcheck disable=SC1091
        source /etc/profile.d/kube_env.sh
    
        # Add ${KUBE_HOME}/bin into sudoer secure path.
        local sudo_path
        sudo_path=$(sudo env | grep "^PATH=")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/asm9.go

    func oclass(a *obj.Addr) int {
    	return int(a.Class) - 1
    }
    
    const (
    	D_FORM = iota
    	DS_FORM
    )
    
    // This function determines when a non-indexed load or store is D or
    // DS form for use in finding the size of the offset field in the instruction.
    // The size is needed when setting the offset value in the instruction
    // and when generating relocation for that field.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
Back to top