Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 133 for rootfs (0.18 sec)

  1. src/crypto/tls/handshake_client.go

    				c.sendAlert(alertBadCertificate)
    				return err
    			}
    		} else {
    			opts := x509.VerifyOptions{
    				Roots:         c.config.RootCAs,
    				CurrentTime:   c.config.time(),
    				DNSName:       c.serverName,
    				Intermediates: x509.NewCertPool(),
    			}
    
    			for _, cert := range certs[1:] {
    				opts.Intermediates.AddCert(cert)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/filters/authentication_test.go

    		},
    		{
    			name:                   "other skip=true",
    			authorizationHeader:    "other",
    			skipHTTP2DOSMitigation: true,
    			expectConnections:      1,
    		},
    	}
    
    	rootCAs := x509.NewCertPool()
    	rootCAs.AddCert(s.Certificate())
    
    	for _, tc := range cases {
    		t.Run(tc.name, func(t *testing.T) {
    			f := func(t *testing.T, nextProto string, expectConnections uint64) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  3. pkg/adsc/adsc.go

    				eds = append(eds, el)
    			}
    			a.handleEDS(eds)
    		case v3.RouteType:
    			routes := make([]*route.RouteConfiguration, 0, len(msg.Resources))
    			for _, rsc := range msg.Resources {
    				valBytes := rsc.Value
    				rl := &route.RouteConfiguration{}
    				_ = proto.Unmarshal(valBytes, rl)
    				routes = append(routes, rl)
    			}
    			a.handleRDS(routes)
    		default:
    			if isMCP {
    				a.handleMCP(resourceGvk, msg.Resources)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/server.go

    	workloadTrustBundle *tb.TrustBundle
    	certMu              sync.RWMutex
    	istiodCert          *tls.Certificate
    
    	// istiodCertBundleWatche provides callbacks when the Istiod certs or roots are changed.
    	// The roots are used by the namespace controller to update Istiod roots and patch webhooks.
    	// The certs are used to refresh Istiod credentials.
    	istiodCertBundleWatcher *keycertbundle.Watcher
    	server                  server.Instance
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  5. cmd/utils.go

    func GetDefaultConnSettings() xhttp.ConnSettings {
    	return xhttp.ConnSettings{
    		LookupHost:  globalDNSCache.LookupHost,
    		DialTimeout: rest.DefaultTimeout,
    		RootCAs:     globalRootCAs,
    		TCPOptions:  globalTCPOptions,
    	}
    }
    
    // NewInternodeHTTPTransport returns a transport for internode MinIO
    // connections.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  6. pkg/adsc/delta.go

    	case EventDelete:
    		out = "delete"
    	}
    	return out
    }
    
    func (c *Client) dumpTree() string {
    	sb := strings.Builder{}
    	roots := make(keySet)
    	for key := range c.tree {
    		if len(c.tree[key].Parents) == 0 {
    			roots.Insert(key)
    		}
    	}
    	keys := slices.SortFunc(roots.UnsortedList(), func(a, b resourceKey) int {
    		return strings.Compare(a.shortName(), b.shortName())
    	})
    	for _, key := range keys {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AssignImmutableWorkspaceStep.java

            }
        }
    
        private static String describeSnapshot(FileSystemLocationSnapshot root) {
            StringBuilder builder = new StringBuilder();
            root.accept(new FileSystemSnapshotHierarchyVisitor() {
                private int indent = 0;
    
                @Override
                public void enterDirectory(DirectorySnapshot directorySnapshot) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:44:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1beta1_test.go

    			return nil, err
    		}
    		tlsConfig = &tls.Config{Certificates: []tls.Certificate{cert}}
    	}
    
    	if caCert != nil {
    		rootCAs := x509.NewCertPool()
    		rootCAs.AppendCertsFromPEM(caCert)
    		if tlsConfig == nil {
    			tlsConfig = &tls.Config{}
    		}
    		tlsConfig.ClientCAs = rootCAs
    		tlsConfig.ClientAuth = tls.RequireAndVerifyClientCert
    	}
    
    	serveHTTP := func(w http.ResponseWriter, r *http.Request) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/memcombine.go

    		sv = rightShift(root.Block, root.Pos, sv, shift0-(n-1)*size*8)
    	}
    	if sv.Type.Size() > size*n {
    		sv = truncate(root.Block, root.Pos, sv, sv.Type.Size(), size*n)
    	}
    	if needSwap {
    		sv = byteSwap(root.Block, root.Pos, sv)
    	}
    
    	// Move all the stores to the root.
    	for i := int64(0); i < n; i++ {
    		v := a[i].store
    		if v == root {
    			v.Aux = sv.Type // widen store type
    			v.Pos = pos
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  10. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/HierarchicalFileWatcherUpdaterTest.groovy

            invalidate(snapshot.absolutePath)
            then:
            1 * watcher.stopWatching({ equalIgnoringOrder(it, [firstDir]) })
            0 * _
        }
    
        def "stops watching project root directory which is now beneath another project root directory"() {
            def firstDir = file("first").createDir()
            def secondDir = file("second").createDir()
            def directoryWithinFirst = file("first/within").createDir()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 13:24:54 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top