Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 101 for room (0.31 sec)

  1. pilot/pkg/networking/core/cluster_tls_test.go

    		CaCertificates:    "root-cert.pem",
    		ClientCertificate: "cert-chain.pem",
    		PrivateKey:        "key.pem",
    		SubjectAltNames:   []string{"custom.foo.com"},
    		Sni:               "custom.foo.com",
    	}
    	simpleTLSSettingsWithCerts := &networking.ClientTLSSettings{
    		Mode:            networking.ClientTLSSettings_SIMPLE,
    		CaCertificates:  "root-cert.pem",
    		SubjectAltNames: []string{"custom.foo.com"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

        }
    
        def removesDuplicateServicesWhenParentIsReachableViaMultiplePaths() {
            def root = new DefaultServiceRegistry()
            root.add(String, "root")
            def parent1 = new DefaultServiceRegistry(root)
            parent1.add(String, "p1")
            def parent2 = new DefaultServiceRegistry(root)
            parent2.add(String, "p2")
            def registry = new DefaultServiceRegistry(parent1, parent2)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  3. configure.py

                                           'contrib', 'makefile', 'downloads')
      if os.path.isdir(makefile_download_dir):
        for root, _, filenames in os.walk(makefile_download_dir):
          for f in filenames:
            if f.endswith('BUILD'):
              os.remove(os.path.join(root, f))
    
    
    def get_var(environ_cp,
                var_name,
                query_item,
                enabled_by_default,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/init.go

    			Indirect: !requirements.direct[m.Path],
    		})
    	}
    
    	// Update go line.
    	// Every MVS graph we consider should have go as a root,
    	// and toolchain is either implied by the go line or explicitly a root.
    	if goVersion == "" {
    		base.Fatalf("go: internal error: missing go root module in WriteGoMod")
    	}
    	if gover.Compare(goVersion, gover.Local()) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

            boolean root;
    
            List<InterimResult> modules = Collections.emptyList();
    
            ProjectBuildingResult projectBuildingResult;
    
            InterimResult(
                    File pomFile,
                    ModelBuilderRequest request,
                    ModelBuilderResult result,
                    MavenProject project,
                    boolean root) {
                this.pomFile = pomFile;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    [[sec:multi_project_builds_applying_plugins]]
    === Applying plugins
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. src/runtime/mgcmark.go

    	// at a time. Used by special root marking.
    	//
    	// Higher values improve throughput by increasing locality, but
    	// increase the minimum latency of a marking operation.
    	//
    	// Must be a multiple of the pageInUse bitmap element size and
    	// must also evenly divide pagesPerArena.
    	pagesPerSpanRoot = 512
    )
    
    // gcMarkRootPrepare queues root scanning jobs (stacks, globals, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. src/math/big/int_test.go

    	n.Rand(rand.New(rand.NewSource(9)), n)
    }
    
    func TestSqrt(t *testing.T) {
    	root := 0
    	r := new(Int)
    	for i := 0; i < 10000; i++ {
    		if (root+1)*(root+1) <= i {
    			root++
    		}
    		n := NewInt(int64(i))
    		r.SetInt64(-2)
    		r.Sqrt(n)
    		if r.Cmp(NewInt(int64(root))) != 0 {
    			t.Errorf("Sqrt(%v) = %v, want %v", n, r, root)
    		}
    	}
    
    	for i := 0; i < 1000; i += 10 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context.go

    	sidecarsByNamespace map[string][]*SidecarScope
    	// the Sidecar for the root namespace (if present). This applies to any namespace without its own Sidecar.
    	meshRootSidecarConfig *config.Config
    	// meshRootSidecarsByNamespace contains the default sidecar for namespaces that do not have a sidecar.
    	// These are converted from root namespace sidecar if it exists.
    	// These are lazy-loaded. Access protected by derivedSidecarMutex.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

          return failure();
    
        if (!(((*root.getODSResults(1).begin()).use_empty()))) {
          return rewriter.notifyMatchFailure(
              fused_batch_norm_op, [&](::mlir::Diagnostic &diag) {
                diag << "entities '' failed to satisfy constraint: has no use";
              });
        }
    
        if (!(((*root.getODSResults(2).begin()).use_empty()))) {
          return rewriter.notifyMatchFailure(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
Back to top