Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,183 for root1 (0.29 sec)

  1. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/text/TreeFormatterTest.groovy

            formatter.node("child2")
            formatter.endChildren()
    
            then:
            formatter.toString() == toPlatformLineSeparators("""root1:
      - child1
      - child2
    root2: child1
    root3:
      - child1
      - child2""")
        }
    
        def "can append to root node"() {
            when:
            formatter.node("Some ")
            formatter.append("thing")
            formatter.append(".")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  2. security/pkg/pki/ca/ca_test.go

    	}
    }
    
    func TestAppendRootCerts(t *testing.T) {
    	root1 := "root-cert-1"
    	expRootCerts := `root-cert-1
    root-cert-2
    root-cert-3`
    	rootCerts, err := util.AppendRootCerts([]byte(root1), "./root-certs-for-testing.pem")
    	if err != nil {
    		t.Errorf("AppendRootCerts() returns an error: %v", err)
    	} else if expRootCerts != string(rootCerts) {
    		t.Errorf("the root certificates do not match. Expect:%v. Actual:%v.",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 08:51:27 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  3. pkg/kubelet/clustertrustbundle/clustertrustbundle_manager_test.go

    			Name: "ctb1",
    		},
    		Spec: certificatesv1alpha1.ClusterTrustBundleSpec{
    			TrustBundle: mustMakeRoot(t, "root1"),
    		},
    	}
    
    	ctb2 := &certificatesv1alpha1.ClusterTrustBundle{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "ctb2",
    		},
    		Spec: certificatesv1alpha1.ClusterTrustBundleSpec{
    			TrustBundle: mustMakeRoot(t, "root2"),
    		},
    	}
    
    	kc := fake.NewSimpleClientset(ctb1, ctb2)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. cni/pkg/cmd/root.go

    John Howard <******@****.***> 1718209595 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/DfsImpl.java

                    }
    
                    root = root.toLowerCase();
                    /*
                     * domain-based DFS root shares to links for each
                     */
                    Map<String, CacheEntry<DfsReferralDataInternal>> roots = domains.get(domain);
                    if ( roots != null ) {
                        dr = getLinkReferral(tf, domain, root, path, now, roots);
                    }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:07:29 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/edit.go

    				roots = append(roots, module.Version{Path: p, Version: v})
    			}
    		}
    		gover.ModSort(roots)
    
    		// First, we extend the graph so that it includes the selected version
    		// of every root. The upgraded roots are in addition to the original
    		// roots, so we will have enough information to trace a path to each
    		// conflict we discover from one or more of the original roots.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/poset.go

    	// If this is the first constant, put it as a new root, as
    	// we can't record an existing connection so we don't have
    	// a specific DAG to add it to. Notice that we want all
    	// constants to be in root #0, so make sure the new root
    	// goes there.
    	if len(po.constants) == 0 {
    		idx := len(po.roots)
    		po.roots = append(po.roots, i)
    		po.roots[0], po.roots[idx] = po.roots[idx], po.roots[0]
    		po.upush(undoNewRoot, i, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/FileHierarchySetTest.groovy

        }
    
        private static FileHierarchySet from(File... roots) {
            from(roots as List)
        }
    
        private static FileHierarchySet from(Iterable<File> roots) {
            def set = FileHierarchySet.empty()
            for (def root : roots) {
                set = set.plus(root)
            }
            return set
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top