Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 97 for podutil (0.15 sec)

  1. src/test/java/org/codelibs/core/xml/DomUtilTest.java

        /**
         * @throws Exception
         */
        public void testGetContentsAsStream() throws Exception {
            final String contents = "<?xml version=\"1.0\" encoding=\"UTF-8\"?><foo/>";
            assertNotNull("1", DomUtil.getContentsAsStream(contents, "UTF-8"));
        }
    
        /**
         * @throws Exception
         */
        public void testToString() throws Exception {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/init/preflight.go

    	utilsexec "k8s.io/utils/exec"
    
    	"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/preflight"
    )
    
    var (
    	preflightExample = cmdutil.Examples(`
    		# Run pre-flight checks for kubeadm init using a config file.
    		kubeadm init phase preflight --config kubeadm-config.yaml
    		`)
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. platforms/software/security/src/main/java/org/gradle/security/internal/SecuritySupport.java

    import org.bouncycastle.openpgp.PGPPublicKey;
    import org.bouncycastle.openpgp.PGPPublicKeyRing;
    import org.bouncycastle.openpgp.PGPSignature;
    import org.bouncycastle.openpgp.PGPSignatureList;
    import org.bouncycastle.openpgp.PGPUtil;
    import org.bouncycastle.openpgp.jcajce.JcaPGPObjectFactory;
    import org.bouncycastle.openpgp.operator.KeyFingerPrintCalculator;
    import org.bouncycastle.openpgp.operator.PGPContentVerifierBuilderProvider;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. security/pkg/pki/ra/k8s_ra_test.go

    				}
    			}
    		})
    	}
    }
    
    func createFakeCsr(t *testing.T) []byte {
    	options := pkiutil.CertOptions{
    		Host:       testCsrHostName,
    		RSAKeySize: 2048,
    		PKCS8Key:   false,
    		ECSigAlg:   pkiutil.SupportedECSignatureAlgorithms("ECDSA"),
    	}
    	csrPEM, _, err := pkiutil.GenCSR(options)
    	if err != nil {
    		t.Fatalf("Error creating Mock CA client: %v", err)
    		return nil
    	}
    	return csrPEM
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 00:44:54 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  5. platforms/software/security/src/main/java/org/gradle/security/internal/pgp/BaseInMemoryPgpSignatoryProvider.java

     * limitations under the License.
     */
    
    package org.gradle.security.internal.pgp;
    
    import org.bouncycastle.openpgp.PGPSecretKey;
    import org.bouncycastle.openpgp.PGPSecretKeyRing;
    import org.bouncycastle.openpgp.PGPUtil;
    import org.bouncycastle.openpgp.jcajce.JcaPGPSecretKeyRing;
    import org.bouncycastle.openpgp.jcajce.JcaPGPSecretKeyRingCollection;
    import org.gradle.api.InvalidUserDataException;
    import org.gradle.api.Project;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/phases/init/uploadconfig.go

    	uploadKubeadmConfigExample = cmdutil.Examples(`
    		# upload the configuration of your cluster
    		kubeadm init phase upload-config --config=myConfig.yaml
    		`)
    
    	uploadKubeletConfigLongDesc = cmdutil.LongDesc(`
    		Upload the kubelet configuration extracted from the kubeadm InitConfiguration object
    		to a kubelet-config ConfigMap in the cluster
    		`)
    
    	uploadKubeletConfigExample = cmdutil.Examples(`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 02 12:34:30 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/upgrade/diff.go

    	kubeadmapi "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm"
    	"k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm/v1beta4"
    	"k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm/validation"
    	"k8s.io/kubernetes/cmd/kubeadm/app/cmd/options"
    	cmdutil "k8s.io/kubernetes/cmd/kubeadm/app/cmd/util"
    	"k8s.io/kubernetes/cmd/kubeadm/app/constants"
    	"k8s.io/kubernetes/cmd/kubeadm/app/phases/controlplane"
    	kubeadmutil "k8s.io/kubernetes/cmd/kubeadm/app/util"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/kubeconfig_test.go

    	kubeadmapiv1 "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm/v1beta3"
    	kubeadmconstants "k8s.io/kubernetes/cmd/kubeadm/app/constants"
    	kubeadmutil "k8s.io/kubernetes/cmd/kubeadm/app/util"
    	"k8s.io/kubernetes/cmd/kubeadm/app/util/pkiutil"
    	testutil "k8s.io/kubernetes/cmd/kubeadm/test"
    	kubeconfigtestutil "k8s.io/kubernetes/cmd/kubeadm/test/kubeconfig"
    )
    
    func generateTestKubeadmConfig(dir, id, certDir, clusterName string) (string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/certs/renewal/readwriter_test.go

    	cert, key, err := pkiutil.NewCertAndKey(caCert, caKey, makeTestCertConfig(organization, notBefore, notAfter))
    	if err != nil {
    		t.Fatalf("couldn't generate certificate: %v", err)
    	}
    
    	if err := pkiutil.WriteCertAndKey(dir, name, cert, key); err != nil {
    		t.Fatalf("couldn't write out certificate %s to %s", name, dir)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:24 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/kubelet/flags.go

    limitations under the License.
    */
    
    package kubelet
    
    import (
    	"fmt"
    	"os"
    	"path/filepath"
    	"strings"
    
    	"github.com/pkg/errors"
    
    	"k8s.io/klog/v2"
    
    	nodeutil "k8s.io/component-helpers/node/util"
    	kubeadmapi "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm"
    	"k8s.io/kubernetes/cmd/kubeadm/app/constants"
    	"k8s.io/kubernetes/cmd/kubeadm/app/images"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 10:27:05 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top