Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 395 for podutil (0.15 sec)

  1. platforms/software/security/src/testFixtures/groovy/org/gradle/security/fixtures/SimpleKeyRing.groovy

    import org.bouncycastle.openpgp.PGPPublicKeyRingCollection
    import org.bouncycastle.openpgp.PGPSecretKey
    import org.bouncycastle.openpgp.PGPSignature
    import org.bouncycastle.openpgp.PGPSignatureGenerator
    import org.bouncycastle.openpgp.PGPUtil
    import org.bouncycastle.openpgp.operator.bc.BcPBESecretKeyDecryptorBuilder
    import org.bouncycastle.openpgp.operator.bc.BcPGPContentSignerBuilder
    import org.bouncycastle.openpgp.operator.bc.BcPGPDigestCalculatorProvider
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. pkg/kubelet/client/kubelet_client.go

    	"strconv"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apiserver/pkg/server/egressselector"
    	"k8s.io/client-go/transport"
    	nodeutil "k8s.io/kubernetes/pkg/util/node"
    )
    
    // KubeletClientConfig defines config parameters for the kubelet client
    type KubeletClientConfig struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 07 01:34:49 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  3. pkg/kubelet/util/format/pod.go

    // with pod UID as part of the string.
    func PodDesc(podName, podNamespace string, podUID types.UID) string {
    	// Use underscore as the delimiter because it is not allowed in pod name
    	// (DNS subdomain format), while allowed in the container name format.
    	return fmt.Sprintf("%s_%s(%s)", podName, podNamespace, podUID)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 13 08:27:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. pkg/volume/util/device_util.go

    	FindDevicesForISCSILun(targetIqn string, lun int) ([]string, error)
    }
    
    type deviceHandler struct {
    	getIo IoUtil
    }
    
    // NewDeviceHandler Create a new IoHandler implementation
    func NewDeviceHandler(io IoUtil) DeviceUtil {
    	return &deviceHandler{getIo: io}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  5. pkg/volume/configmap/configmap.go

    	}, nil
    }
    
    func (plugin *configMapPlugin) NewUnmounter(volName string, podUID types.UID) (volume.Unmounter, error) {
    	return &configMapVolumeUnmounter{
    		&configMapVolume{
    			volName,
    			podUID,
    			plugin,
    			plugin.host.GetMounter(plugin.GetPluginName()),
    			volume.NewCachedMetrics(volume.NewMetricsDu(getPath(podUID, volName, plugin.host))),
    		},
    	}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/phases/upgrade/node/kubeletconfig.go

    	"fmt"
    
    	"github.com/pkg/errors"
    
    	"k8s.io/kubernetes/cmd/kubeadm/app/cmd/options"
    	"k8s.io/kubernetes/cmd/kubeadm/app/cmd/phases/workflow"
    	cmdutil "k8s.io/kubernetes/cmd/kubeadm/app/cmd/util"
    	"k8s.io/kubernetes/cmd/kubeadm/app/phases/upgrade"
    )
    
    var (
    	kubeletConfigLongDesc = cmdutil.LongDesc(`
    		Download the kubelet configuration from the kubelet-config ConfigMap stored in the cluster
    		`)
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/upgrade/upgrade.go

    limitations under the License.
    */
    
    package upgrade
    
    import (
    	"io"
    
    	"github.com/spf13/cobra"
    	"github.com/spf13/pflag"
    
    	"k8s.io/kubernetes/cmd/kubeadm/app/cmd/options"
    	cmdutil "k8s.io/kubernetes/cmd/kubeadm/app/cmd/util"
    	kubeadmconstants "k8s.io/kubernetes/cmd/kubeadm/app/constants"
    )
    
    // applyPlanFlags holds the values for the common flags in `kubeadm upgrade apply` and `kubeadm upgrade plan`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 01:18:29 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  8. pkg/volume/testing/volume_host.go

    }
    
    func (f *fakeVolumeHost) GetPodVolumeDir(podUID types.UID, pluginName, volumeName string) string {
    	return filepath.Join(f.rootDir, "pods", string(podUID), "volumes", pluginName, volumeName)
    }
    
    func (f *fakeVolumeHost) GetPodVolumeDeviceDir(podUID types.UID, pluginName string) string {
    	return filepath.Join(f.rootDir, "pods", string(podUID), "volumeDevices", pluginName)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/KtFe10PsiKotlinPropertySymbol.kt

    import org.jetbrains.kotlin.name.CallableId
    import org.jetbrains.kotlin.name.Name
    import org.jetbrains.kotlin.psi.KtProperty
    import org.jetbrains.kotlin.psi.psiUtil.hasActualModifier
    import org.jetbrains.kotlin.psi.psiUtil.hasExpectModifier
    import org.jetbrains.kotlin.psi.psiUtil.isExtensionDeclaration
    import org.jetbrains.kotlin.resolve.BindingContext
    
    internal class KaFe10PsiKotlinPropertySymbol(
        override val psi: KtProperty,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/certs.go

    	eventually re-distribute the renewed certificate in case the file is used elsewhere.
    `)
    
    	allLongDesc = cmdutil.LongDesc(`
        Renew all known certificates necessary to run the control plane. Renewals are run unconditionally, regardless
        of expiration date. Renewals can also be run individually for more control.
    `)
    
    	expirationLongDesc = cmdutil.LongDesc(`
    	Checks expiration for the certificates in the local PKI managed by kubeadm.
    `)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top