Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for broot (0.06 sec)

  1. src/crypto/x509/verify_test.go

    				Roots: []rootDescription{{Subject: "root"}},
    				Leaf:  "root",
    				Graph: []trustGraphEdge{
    					{
    						Issuer:  "root",
    						Subject: "root",
    						Type:    leafCertificate,
    						MutateTemplate: func(c *Certificate) {
    							c.DNSNames = []string{"localhost"}
    						},
    					},
    				},
    			},
    			expectedChains: []string{
    				"CN=root -> CN=root",
    			},
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			`),
    			warnings: []string{
    				`root.subField.apiVersion: Invalid value: "string": failed rule: self == "v1"`,
    				`root.subField.kind: Invalid value: "string": failed rule: self == "Pod"`,
    				`root.list[0].apiVersion: Invalid value: "string": failed rule: self == "v1"`,
    				`root.list[0].kind: Invalid value: "string": failed rule: self == "Pod"`,
    				`root.list[1].apiVersion: Invalid value: "string": failed rule: self == "v1"`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    // dirAndRoot returns the source directory and workspace root
    // for the package p, guaranteeing that root is a path prefix of dir.
    func dirAndRoot(path string, dir, root string) (string, string) {
    	origDir, origRoot := dir, root
    	dir = filepath.Clean(dir)
    	root = filepath.Join(root, "src")
    	if !str.HasFilePathPrefix(dir, root) || path != "command-line-arguments" && filepath.Join(root, path) != dir {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

           */
          SettableFuture<Object> root = SettableFuture.create();
          ListenableFuture<Object> unused = transform(root, identity(), directExecutor());
          root.set("foo");
        }
    
        SettableFuture<Object> root = SettableFuture.create();
        ListenableFuture<Object> output = root;
        for (int i = 0; i < 10000; i++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

           */
          SettableFuture<Object> root = SettableFuture.create();
          ListenableFuture<Object> unused = transform(root, identity(), directExecutor());
          root.set("foo");
        }
    
        SettableFuture<Object> root = SettableFuture.create();
        ListenableFuture<Object> output = root;
        for (int i = 0; i < 10000; i++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-helper.sh

    function prepare-log-file {
      touch "$1"
      if [[ -n "${KUBE_POD_LOG_READERS_GROUP:-}" ]]; then
        chmod 640 "$1"
        chown "${2:-root}":"${KUBE_POD_LOG_READERS_GROUP}" "$1"
      else
        chmod 644 "$1"
        chown "${2:-${LOG_OWNER_USER:-root}}":"${3:-${LOG_OWNER_GROUP:-root}}" "$1"
      fi
    }
    
    # Prepares parameters for kube-proxy manifest.
    # $1 source path of kube-proxy manifest.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. src/cmd/go/alldocs.go

    //	    Goroot         bool     // is this package in the Go root?
    //	    Standard       bool     // is this package part of the standard Go library?
    //	    Stale          bool     // would 'go install' do anything for this package?
    //	    StaleReason    string   // explanation for Stale==true
    //	    Root           string   // Go root or Go path dir containing this package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

    org:leaf2:1.0
    \\--- org:leaf1:1.0
         +--- conf
         \\--- org:leaf2:1.0 (*)
    """
        }
    
        def "deals with dependency cycle to root"() {
            given:
            createDirs("impl")
            settingsFile << "include 'impl'; rootProject.name='root'"
    
            buildFile << """
                allprojects {
                    apply plugin: 'java-library'
                    group = 'org.foo'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    func (b *Builder) Do(ctx context.Context, root *Action) {
    	ctx, span := trace.StartSpan(ctx, "exec.Builder.Do ("+root.Mode+" "+root.Target+")")
    	defer span.Done()
    
    	if !b.IsCmdList {
    		// If we're doing real work, take time at the end to trim the cache.
    		c := cache.Default()
    		defer func() {
    			if err := c.Close(); err != nil {
    				base.Fatalf("go: failed to trim cache: %v", err)
    			}
    		}()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_builder_test.go

    							UseClientProtocol: true,
    						},
    					},
    					Tls: &networking.ClientTLSSettings{
    						CaCertificates: "root-cert.pem",
    						Mode:           networking.ClientTLSSettings_SIMPLE,
    					},
    				},
    			},
    			expectedCaCertificateName: "root-cert.pem",
    			enableVerifyCertAtClient:  true,
    		},
    		{
    			name:        "VerifyCertAtClient set and destination rule without CaCertificates",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
Back to top