Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for rootCA (0.11 sec)

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

    							DefaultValidationContext: &auth.CertificateValidationContext{},
    							ValidationContextSdsSecretConfig: &auth.SdsSecretConfig{
    								Name: "ROOTCA",
    								SdsConfig: &core.ConfigSource{
    									InitialFetchTimeout: durationpb.New(time.Second * 0),
    									ResourceApiVersion:  core.ApiVersion_V3,
    									ConfigSourceSpecifier: &core.ConfigSource_ApiConfigSource{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  2. istioctl/pkg/authz/testdata/configdump.yaml

                   {
                    "prefix": "spiffe://cluster.local/"
                   }
                  ]
                 },
                 "validation_context_sds_secret_config": {
                  "name": "ROOTCA",
                  "sds_config": {
                   "api_config_source": {
                    "api_type": "GRPC",
                    "grpc_services": [
                     {
                      "envoy_grpc": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 14:20:23 UTC 2023
    - 206.7K bytes
    - Viewed (1)
  3. pkg/kubelet/eviction/helpers_test.go

    		},
    	}
    	rootFsUsed := uint64(rootFsInodesUsed.Value())
    	logsUsed := uint64(logsInodesUsed.Value())
    	for range pod.Spec.Containers {
    		result.Containers = append(result.Containers, statsapi.ContainerStats{
    			Rootfs: &statsapi.FsStats{
    				InodesUsed: &rootFsUsed,
    			},
    			Logs: &statsapi.FsStats{
    				InodesUsed: &logsUsed,
    			},
    		})
    	}
    
    	perLocalVolumeUsed := uint64(perLocalVolumeInodesUsed.Value())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. pkg/kubelet/eviction/eviction_manager_test.go

    	volumeSizeLimit := resource.MustParse("1Gi")
    
    	testCases := map[string]struct {
    		pod     podToMake
    		volumes []v1.Volume
    	}{
    		"eviction due to rootfs above limit": {
    			pod: podToMake{name: "rootfs-above-limits", priority: defaultPriority, requests: newResourceList("", "", "1Gi"), limits: newResourceList("", "", "1Gi"), rootFsUsed: "2Gi"},
    		},
    		"eviction due to logsfs above limit": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    		}
    		all = append(all, p)
    	}
    	for _, root := range roots {
    		walk(root)
    	}
    	return all
    }
    
    // TestPackageList returns the list of packages in the dag rooted at roots
    // as visited in a depth-first post-order traversal, including the test
    // imports of the roots. This ignores errors in test packages.
    func TestPackageList(ctx context.Context, opts PackageOpts, roots []*Package) []*Package {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/internal/trace/traceviewer/static/webcomponents.min.js

    wDOMPolyfill),function(e){"use strict";function t(e,t){this.root=e,this.parent=t}function n(e,t){if(e.treeScope_!==t){e.treeScope_=t;for(var r=e.shadowRoot;r;r=r.olderShadowRoot)r.treeScope_.parent=t;for(var o=e.firstChild;o;o=o.nextSibling)n(o,t)}}function r(n){if(n instanceof e.wrappers.Window,n.treeScope_)return n.treeScope_;var o,i=n.parentNode;return o=i?r(i):new t(n,null),n.treeScope_=o}t.prototype={get renderer(){return this.root instanceof e.wrappers.ShadowRoot?e.getRendererForHost(this....
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 115.6K bytes
    - Viewed (0)
Back to top