Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 130 for CUSTOM (0.11 sec)

  1. tensorflow/BUILD

    # TF_LoadLibrary/tf.load_op_library) register their ops and kernels with this
    # shared object directly.
    #
    # For example, from Python tf.load_op_library loads a custom op library (via
    # dlopen() on Linux), the library finds libtensorflow_framework.so (no
    # filesystem search takes place, since libtensorflow_framework.so has already
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  2. src/net/http/transport.go

    	}
    	if !t.ForceAttemptHTTP2 && (t.TLSClientConfig != nil || t.Dial != nil || t.DialContext != nil || t.hasCustomTLSDialer()) {
    		// Be conservative and don't automatically enable
    		// http2 if they've specified a custom TLS config or
    		// custom dialers. Let them opt-in themselves via
    		// http2.ConfigureTransport so we don't surprise them
    		// by modifying their tls.Config. Issue 14275.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  3. tests/integration/ambient/baseline_test.go

    spec:
      hosts:
      - "{{.Destination}}"
      http:
      - headers:
          request:
            add:
              istio-custom-header: user-defined-value
        route:
        - destination:
            host: "{{.Destination}}"
    `).ApplyOrFail(t)
    				opt.Check = check.And(
    					check.OK(),
    					check.RequestHeader("Istio-Custom-Header", "user-defined-value"))
    				src.CallOrFail(t, opt)
    			})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/CacheBuilder.java

      /*
       * We avoid using a method reference or lambda here for now:
       *
       * - method reference: Inside Google, CacheBuilder is used from the implementation of a custom
       *   ClassLoader that is sometimes used as a system classloader. That's a problem because
       *   method-reference linking tries to look up the system classloader, and it fails because there
       *   isn't one yet.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	return &Tester{
    		T:       t,
    		storage: storage,
    		namer:   defaultNamer,
    	}
    }
    
    func defaultNamer(i int) string {
    	return fmt.Sprintf("foo%d", i)
    }
    
    // Namer allows providing a custom name maker
    // By default "foo%d" is used
    func (t *Tester) Namer(namer func(int) string) *Tester {
    	t.namer = namer
    	return t
    }
    
    func (t *Tester) ClusterScope() *Tester {
    	t.clusterScope = true
    	return t
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    +
    A good way to report such issues is by providing information such as:
    +
    * a link to this very documentation,
    * the plugin version you tried,
    * the custom configuration of the plugin if any, or ideally a reproducer build,
    * a description of what fails, for example problems with a given task
    * a copy of the build failure,
    * the self-contained `configuration-cache-report.html` file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  7. pkg/apis/networking/validation/validation_test.go

    			ipAddress: &networking.IPAddress{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "192.168.1.1",
    				},
    				Spec: networking.IPAddressSpec{
    					ParentRef: &networking.ParentReference{
    						Group:     "custom.resource.com",
    						Resource:  "services",
    						Name:      "foo$%&",
    						Namespace: "",
    					},
    				},
    			},
    		},
    		"wrong-ipaddress-reference-multiple-errors": {
    			expectedErrors: 4,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/httproute_test.go

    				"echo.default",
    				"echo.default.svc",
    			},
    		},
    		{
    			name: "k8s service with custom domain 2",
    			service: &model.Service{
    				Hostname:     "google.local",
    				MeshExternal: false,
    			},
    			port: 8123,
    			node: &model.Proxy{
    				DNSDomain: "foo.svc.custom.k8s.local",
    			},
    			want: []string{"google.local"},
    		},
    		{
    			name: "ipv4 domain",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  9. src/html/template/exec_test.go

    	funcs := map[string]any{
    		"doPanic": func() string {
    			panic("custom panic string")
    		},
    	}
    	tests := []struct {
    		name    string
    		input   string
    		data    any
    		wantErr string
    	}{
    		{
    			"direct func call panics",
    			"{{doPanic}}", (*T)(nil),
    			`template: t:1:2: executing "t" at <doPanic>: error calling doPanic: custom panic string`,
    		},
    		{
    			"indirect func call panics",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  10. tests/integration/security/authz_test.go

    					to := toMatch.GetServiceMatches(apps.Ns1.All)
    					fromAndTo := to.Instances().Append(from)
    
    					config.New(t).
    						Source(config.File("testdata/authz/custom-provider.yaml.tmpl").WithParams(param.Params{
    							"Provider": provider,
    						})).
    						BuildAll(nil, to).
    						Apply()
    
    					newTrafficTest(t, fromAndTo).
    						FromMatch(fromMatch).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
Back to top