Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,066 for Backend (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/audit/union.go

    )
    
    // Union returns an audit Backend which logs events to a set of backends. The returned
    // Sink implementation blocks in turn for each call to ProcessEvents.
    func Union(backends ...Backend) Backend {
    	if len(backends) == 1 {
    		return backends[0]
    	}
    	return union{backends}
    }
    
    type union struct {
    	backends []Backend
    }
    
    func (u union) ProcessEvents(events ...*auditinternal.Event) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 20 09:51:25 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/plugin/pkg/audit/truncate/truncate.go

    	MaxBatchSize int64
    }
    
    type backend struct {
    	// The delegate backend that actually exports events.
    	delegateBackend audit.Backend
    
    	// Configuration used for truncation.
    	c Config
    
    	// Encoder used to calculate audit event sizes.
    	e runtime.Encoder
    }
    
    var _ audit.Backend = &backend{}
    
    // NewBackend returns a new truncating backend, using configuration passed in the parameters.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 29 00:03:53 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/ingress/testdata/simple.yaml

          - path: /path
            backend:
              service:
                name: service1
                port:
                  number: 4200
            # Subpath without trailing /
          - path: /sub/path
            backend:
              service:
                name: service1
                port:
                  number: 4201
          # With a trailing /
          - path: /sub/path/
            backend:
              service:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 16:43:09 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. .space/CODEOWNERS

    /compiler/ir/backend.common/ "Kotlin JVM" "Kotlin Native" "Kotlin Wasm" "Kotlin Common Backend"
    /compiler/ir/backend.js/ "Kotlin Common Backend"
    /compiler/ir/backend.jvm/ "Kotlin JVM"
    /compiler/ir/backend.wasm/ "Kotlin Wasm"
    /compiler/ir/ir.actualization/ "Kotlin Compiler Core" "Kotlin Common Backend" Simon.Ogorodnik
    /compiler/ir/ir.interpreter/ "Kotlin Common Backend"
    /compiler/ir/ir.psi2ir/ "Kotlin JVM"
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:55:49 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/audit.go

    }
    
    type ignoreErrorsBackend struct {
    	audit.Backend
    }
    
    func (i *ignoreErrorsBackend) ProcessEvents(ev ...*auditinternal.Event) bool {
    	i.Backend.ProcessEvents(ev...)
    	return true
    }
    
    func (i *ignoreErrorsBackend) String() string {
    	return fmt.Sprintf("ignoreErrors<%s>", i.Backend)
    }
    
    func (o *AuditBatchOptions) wrapBackend(delegate audit.Backend) audit.Backend {
    	if o.Mode == ModeBlockingStrict {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 24 06:30:04 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  6. samples/bookinfo/platform/kube/bookinfo-ingress.yaml

            pathType: Exact
            backend:
              service:
                name: productpage
                port:
                  number: 9080
          - path: /static/
            pathType: Prefix
            backend:
              service:
                name: productpage
                port:
                  number: 9080
          - path: /login
            pathType: Exact
            backend:
              service:
                name: productpage
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 28 04:24:35 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/caching_authorizer_test.go

    				return authorizer.AuthorizerFunc(func(_ context.Context, attributes authorizer.Attributes) (authorizer.Decision, string, error) {
    					if misses >= len(tc.backend) {
    						t.Fatalf("got more than expected %d backend invocations", len(tc.backend))
    					}
    					result := tc.backend[misses]
    					misses++
    					return result.decision, result.reason, result.error
    				})
    			}())
    
    			for i, invocation := range tc.calls {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. pkg/apis/extensions/v1beta1/conversion_test.go

    	}{
    		"service-port-number": {
    			external: v1beta1.IngressSpec{
    				Backend: &v1beta1.IngressBackend{
    					ServiceName: "test-backend",
    					ServicePort: intstr.FromInt32(8080),
    				},
    			},
    			internal: networking.IngressSpec{
    				DefaultBackend: &networking.IngressBackend{
    					Service: &networking.IngressServiceBackend{
    						Name: "test-backend",
    						Port: networking.ServiceBackendPort{
    							Name:   "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/xla_device.cc

        } else {
          // TODO(b/78468222): This can fail, at least when the backend is GPU and
          // there is no GPU on the host.
          xla::Backend* backend = GetOrCreateClient().value()->mutable_backend();
          xla_allocator_ = XlaDeviceAllocatorState::GetOrCreateXlaDeviceAllocator(
              backend, device_ordinal_);
        }
      }
      return xla_allocator_;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/plugin/pkg/audit/buffered/buffered.go

    	// This WaitGroup is used to wait for all sending routines to finish before shutting down audit backend.
    	wg sync.WaitGroup
    
    	// Limits the number of batches sent to the delegate backend per second.
    	throttle flowcontrol.RateLimiter
    }
    
    var _ audit.Backend = &bufferedBackend{}
    
    // NewBackend returns a buffered audit backend that wraps delegate backend.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 9.1K bytes
    - Viewed (0)
Back to top