Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for broot (0.09 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. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

    }
    
    TEST(EncapsulateSubgraphsTest, InputDeduplication) {
      Scope root = Scope::NewRootScope().ExitOnError().WithDevice(
          "/job:localhost/replica:0/task:0/cpu:0");
      auto x = ops::Placeholder(root.WithOpName("x"), DT_FLOAT);
      auto add1 = ops::Add(root.WithOpName("add1"), x, x);
      add1.node()->AddAttr("_cluster", "cluster1");
      auto add2 = ops::Add(root.WithOpName("add2"), add1, add1);
      add2.node()->AddAttr("_cluster", "cluster2");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

            outputContains("capabilities: [[capability group='root', name='lib', version='unspecified'], [capability group='root', name='lib', version='unspecified'], [], [capability group='test', name='test', version='1.3'], [capability group='root', name='common', version='unspecified'], [capability group='root', name='common', version='unspecified'], [capability group='test', name='test-dependency', version='1.3']]")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top