Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 164 for rootfs (0.18 sec)

  1. internal/event/target/kafka.go

    	config.Net.TLS.Config = tlsConfig
    	config.Net.TLS.Config.InsecureSkipVerify = args.TLS.SkipVerify
    	config.Net.TLS.Config.ClientAuth = args.TLS.ClientAuth
    	config.Net.TLS.Config.RootCAs = args.TLS.RootCAs
    
    	// These settings are needed to ensure that kafka client doesn't hang on brokers
    	// refer https://github.com/IBM/sarama/issues/765#issuecomment-254333355
    	config.Producer.Retry.Max = 2
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 01 15:02:59 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/controllermanager.go

    	}
    
    	var rootCA []byte
    	if controllerContext.ComponentConfig.SAController.RootCAFile != "" {
    		if rootCA, err = readCA(controllerContext.ComponentConfig.SAController.RootCAFile); err != nil {
    			return nil, true, fmt.Errorf("error parsing root-ca-file at %s: %v", controllerContext.ComponentConfig.SAController.RootCAFile, err)
    		}
    	} else {
    		rootCA = rootClientBuilder.ConfigOrDie("tokens-controller").CAData
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/cpp_library_plugin.adoc

    Dependencies found in the `implementation` configuration will, on the other hand, not be exposed to consumers, and therefore not leak into the consumer's compile include root and link libraries.
    This comes with several benefits:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  4. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompile.java

            if (sourceRoots.isEmpty()) {
                throw new InvalidUserDataException("Unable to infer source roots. Incremental Groovy compilation requires the source roots. Change the configuration of your sources or disable incremental Groovy compilation.");
            }
    
            if (annotationProcessingConfigured) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  5. src/path/filepath/path.go

    // uses slash separated paths.
    func WalkDir(root string, fn fs.WalkDirFunc) error {
    	info, err := os.Lstat(root)
    	if err != nil {
    		err = fn(root, nil, err)
    	} else {
    		err = walkDir(root, fs.FileInfoToDirEntry(info), fn)
    	}
    	if err == SkipDir || err == SkipAll {
    		return nil
    	}
    	return err
    }
    
    // Walk walks the file tree rooted at root, calling fn for each file or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. istioctl/pkg/proxyconfig/proxyconfig.go

    	rootCACompareConfigCmd := &cobra.Command{
    		Use:   "rootca-compare [pod/]<name-1>[.<namespace-1>] [pod/]<name-2>[.<namespace-2>]",
    		Short: "Compare ROOTCA values for the two given pods",
    		Long:  `Compare ROOTCA values for given 2 pods to check the connectivity between them.`,
    		Example: `  # Compare ROOTCA values for given 2 pods to check the connectivity between them.
      istioctl proxy-config rootca-compare <pod-name-1[.namespace]> <pod-name-2[.namespace]>`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
  7. 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)
  8. pkg/registry/flowcontrol/ensurer/flowschema_test.go

    				indexer.Add(test.current)
    			}
    			bootFS := newFlowSchema(test.bootstrapName, "pl", 100).Object()
    			ops := NewFlowSchemaOps(client, flowcontrollisters.NewFlowSchemaLister(indexer))
    			boots := []*flowcontrolv1.FlowSchema{bootFS}
    			err := RemoveUnwantedObjects(context.Background(), ops, boots)
    
    			if err != nil {
    				t.Fatalf("Expected no error, but got: %v", err)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top