Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,469 for root1 (0.15 sec)

  1. pkg/apis/certificates/validation/validation_test.go

    		SerialNumber: big.NewInt(0),
    		Subject: pkix.Name{
    			CommonName: "root1",
    		},
    		IsCA:                  true,
    		BasicConstraintsValid: true,
    	})
    
    	goodCert2 := mustMakeCertificate(t, &x509.Certificate{
    		SerialNumber: big.NewInt(0),
    		Subject: pkix.Name{
    			CommonName: "root2",
    		},
    		IsCA:                  true,
    		BasicConstraintsValid: true,
    	})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  2. pkg/volume/projected/projected_test.go

    	// This test is limited by the use of a fake clientset and volume host.  We
    	// can't meaningfully test that label selectors end up doing the correct
    	// thing for example.
    
    	goodCert1 := mustMakeRoot(t, "root1")
    
    	testCases := []struct {
    		name string
    
    		source  v1.ProjectedVolumeSource
    		bundles []runtime.Object
    
    		fsUser  *int64
    		fsGroup *int64
    
    		wantPayload map[string]util.FileProjection
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 40.5K bytes
    - Viewed (0)
  3. src/crypto/x509/root.go

    var x509usefallbackroots = godebug.New("x509usefallbackroots")
    
    // SetFallbackRoots sets the roots to use during certificate verification, if no
    // custom roots are specified and a platform verifier or a system certificate
    // pool is not available (for instance in a container which does not have a root
    // certificate bundle). SetFallbackRoots will panic if roots is nil.
    //
    // SetFallbackRoots may only be called once, if called multiple times it will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. istioctl/cmd/root.go

    const (
    	FlagCharts = "charts"
    )
    
    // ConfigAndEnvProcessing uses spf13/viper for overriding CLI parameters
    func ConfigAndEnvProcessing() error {
    	configPath := filepath.Dir(root.IstioConfig)
    	baseName := filepath.Base(root.IstioConfig)
    	configType := filepath.Ext(root.IstioConfig)
    	configName := baseName[0 : len(baseName)-len(configType)]
    	if configType != "" {
    		configType = configType[1:]
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. pkg/test/cert/ca/root.go

    	if err := os.WriteFile(root.ConfFile, []byte(rootCAConf), os.ModePerm); err != nil {
    		return Root{}, err
    	}
    
    	// Create the root key.
    	if err := cert.GenerateKey(root.KeyFile); err != nil {
    		return Root{}, err
    	}
    
    	// Create the root CSR
    	if err := cert.GenerateCSR(root.ConfFile, root.KeyFile, root.CSRFile); err != nil {
    		return Root{}, err
    	}
    
    	// Create the root cert
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 03 18:09:59 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/resources/org/gradle/api/tasks/copyTestResources/src/root.b

    root.b...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 15 21:14:41 UTC 2012
    - 6 bytes
    - Viewed (0)
  7. operator/cmd/operator/root.go

    // limitations under the License.
    
    package main
    
    import (
    	"flag"
    
    	"github.com/spf13/cobra"
    
    	"istio.io/istio/pkg/collateral"
    	"istio.io/istio/pkg/version"
    )
    
    // getRootCmd returns the root of the cobra command-tree.
    func getRootCmd(args []string) *cobra.Command {
    	rootCmd := &cobra.Command{
    		Use:   "operator",
    		Short: "The Istio operator.",
    		Args:  cobra.ExactArgs(0),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/overwritesExistingDependencies/root.iml

        <orderEntry type="module-library" scope="RUNTIME">
          <library>
            <CLASSES>
              <root url="jar://$CUSTOM_DIR$/../cache/junit/junit/jars/junit-4.7.jar!/"/>
            </CLASSES>
            <JAVADOC/>
            <SOURCES>
              <root url="jar://$CUSTOM_DIR$/../cache/junit/junit/sources/junit-4.7-sources.jar!/"/>
            </SOURCES>
          </library>
        </orderEntry>
      </component>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 738 bytes
    - Viewed (0)
  9. .github/workflows/root-disable.yml

        steps:
          - uses: actions/checkout@v4
          - uses: actions/setup-go@v5
            with:
              go-version: ${{ matrix.go-version }}
              check-latest: true
          - name: Start root lockdown tests
            run: |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 734 bytes
    - Viewed (0)
  10. operator/cmd/mesh/root.go

    }
    
    func addFlags(cmd *cobra.Command, rootArgs *RootArgs) {
    	cmd.PersistentFlags().BoolVarP(&rootArgs.DryRun, "dry-run", "",
    		false, "Console/log output only, make no changes.")
    }
    
    // GetRootCmd returns the root of the cobra command-tree.
    func GetRootCmd(ctx cli.Context, args []string) *cobra.Command {
    	rootCmd := &cobra.Command{
    		Use:          "mesh",
    		Short:        "Command line Istio install utility.",
    		SilenceUsage: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top