Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 129 of 129 for celconfig (0.24 sec)

  1. pkg/test/framework/resource/version.go

    	"istio.io/istio/pkg/test/framework/config"
    )
    
    var _ config.Value = &RevVerMap{}
    
    // RevVerMap maps installed revisions to their Istio versions.
    type RevVerMap map[string]IstioVersion
    
    func (rv *RevVerMap) SetConfig(mi any) error {
    	m, ok := mi.(config.Map)
    	if !ok {
    		return fmt.Errorf("revisions map: expected map but got slice")
    	}
    	out := make(RevVerMap)
    	for k := range m {
    		version := m.String(k)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/ops/gen/README.md

    Given a config, it can generate source code for a .cc or .h file as a string or
    write it to a target file.
    
    The `CppFileRenderer` is the main renderer used by the generator; it renders an
    entire file. The `CppConfig` defines if it is operating in header or source
    mode.
    
    "Views" are stateless and intended to be low-level building blocks: a direct
    language-specific representation of the model classes. For example, an `ArgView`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 21 18:51:25 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  3. operator/cmd/operator/server.go

    	// renewDeadline cannot be greater than leaseDuration
    	renewDeadline := getRenewDeadline()
    	leaseDuration := time.Duration(renewDeadline.Nanoseconds() * 2)
    
    	// Get a config to talk to the apiserver
    	cfg, err := config.GetConfig()
    	if err != nil {
    		log.Fatalf("Could not get apiserver config: %v", err)
    	}
    
    	var mgrOpt manager.Options
    	leaderElectionID := "istio-operator-lock"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 30 21:09:08 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/validation/validation_test.go

    	}{
    		{
    			name:       "Empty struct",
    			toValidate: &v1alpha1.Values{},
    			validated:  true,
    		},
    		{
    			name: "With CNI defined",
    			toValidate: &v1alpha1.Values{
    				Cni: &v1alpha1.CNIConfig{
    					Enabled: &wrappers.BoolValue{Value: true},
    				},
    			},
    			validated: true,
    		},
    	}
    
    	for _, tt := range tests {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 23 09:10:55 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  5. pkg/test/echo/server/endpoint/grpc.go

    	cleanups []func()
    	f        *forwarder.Instance
    }
    
    func newGRPC(config Config) Instance {
    	return &grpcInstance{
    		Config: config,
    		f:      forwarder.New(),
    	}
    }
    
    func (s *grpcInstance) GetConfig() Config {
    	return s.Config
    }
    
    func (s *grpcInstance) newServer(opts ...grpc.ServerOption) grpcServer {
    	if s.Port.XDSServer {
    		if len(s.Port.XDSTestBootstrap) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 25 17:30:37 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  6. README.md

    Fess also contains a Crawler, which can crawl documents on a [web server](https://fess.codelibs.org/14.12/admin/webconfig-guide.html), [file system](https://fess.codelibs.org/14.12/admin/fileconfig-guide.html), or [Data Store](https://fess.codelibs.org/14.12/admin/dataconfig-guide.html) (such as a CSV or database). Many file formats are supported including (but not...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Feb 25 00:40:07 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. pilot/pkg/networking/grpcgen/grpcecho_test.go

    		})
    		if err != nil {
    			t.Fatal(err)
    		}
    		wg.Add(1)
    		if err := ep.Start(func() {
    			wg.Done()
    		}); err != nil {
    			t.Fatal(err)
    		}
    
    		cfgs = append(cfgs, makeWE(s, ip, ep.GetConfig().Port.Port))
    		cgt.endpoints = append(cgt.endpoints, ep)
    		t.Cleanup(func() {
    			if err := ep.Close(); err != nil {
    				t.Errorf("failed to close endpoint %s: %v", ip, err)
    			}
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/NtlmUtil.java

            byte[] p14 = new byte[14];
            byte[] p21 = new byte[21];
            byte[] p24 = new byte[24];
            byte[] passwordBytes = Strings.getOEMBytes(password, tc.getConfig());
            int passwordLength = passwordBytes.length;
    
            // Only encrypt the first 14 bytes of the password for Pre 0.12 NT LM
            if ( passwordLength > 14 ) {
                passwordLength = 14;
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 9.7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/certs/renewal/readwriter_test.go

    func writeTestKubeconfig(t *testing.T, dir, name string, caCert *x509.Certificate, caKey crypto.Signer, notBefore, notAfter time.Time) *x509.Certificate {
    
    	cfg := &pkiutil.CertConfig{
    		Config: certutil.Config{
    			CommonName:   "test-common-name",
    			Organization: testCertOrganization,
    			Usages:       []x509.ExtKeyUsage{x509.ExtKeyUsageClientAuth},
    			AltNames: certutil.AltNames{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:24 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top