Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for broot (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            def projectDir2 = file("project2")
            [projectDir1, projectDir2].each { dir ->
                def project = new BuildTestFile(dir, "root")
                project.with {
                    dir.createDirs("lib", "util", "app")
                    settingsFile << """
                        rootProject.name = 'root'
                        include 'lib'
                        include 'util'
                        include 'app'
                    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    		return fmt.Errorf("error creating root directory: %v", err)
    	}
    	if err := os.MkdirAll(kl.getPodLogsDir(), 0750); err != nil {
    		return fmt.Errorf("error creating pod logs root directory %q: %w", kl.getPodLogsDir(), err)
    	}
    	if err := kl.hostutil.MakeRShared(kl.getRootDir()); err != nil {
    		return fmt.Errorf("error configuring root directory: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. cluster/gce/util.sh

        if ! ${gcloud} compute instance-templates create \
          "${template_name}" \
          --project "${PROJECT}" \
          --machine-type "${machine_type}" \
          --boot-disk-type "${NODE_DISK_TYPE}" \
          --boot-disk-size "${NODE_DISK_SIZE}" \
          "${node_image_flags[@]}" \
          --service-account "${NODE_SERVICE_ACCOUNT}" \
          --tags "${NODE_TAG}" \
          "${accelerator_args[@]}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_test.go

    	}
    
    	for _, span := range runtimeServiceSpans {
    		assert.Equal(t, span.Parent.SpanID(), rootSpan.SpanContext.SpanID(), fmt.Sprintf("runtime service span %s %s should be child of root span", span.Name, span.Parent.SpanID()))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

          if (!ret) continue;
    
          LLVM_DEBUG(ret.print(llvm::dbgs() << "\ncomputed result = "));
    
          // If worklist is empty, then this is the root query op.
          if (worklist.empty()) {
            LLVM_DEBUG(llvm::dbgs() << "[root node]\n");
            if (auto dea = mlir::dyn_cast<DenseIntElementsAttr>(ret)) {
              if (dea.getNumElements() != 1) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  10. src/net/http/server.go

    //
    // # Trailing-slash redirection
    //
    // Consider a [ServeMux] with a handler for a subtree, registered using a trailing slash or "..." wildcard.
    // If the ServeMux receives a request for the subtree root without a trailing slash,
    // it redirects the request by adding the trailing slash.
    // This behavior can be overridden with a separate registration for the path without
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top