Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 613 for Backend (6.37 sec)

  1. src/net/http/httputil/reverseproxy.go

    	// copying HTTP response bodies.
    	BufferPool BufferPool
    
    	// ModifyResponse is an optional function that modifies the
    	// Response from the backend. It is called if the backend
    	// returns a response at all, with any HTTP status code.
    	// If the backend is unreachable, the optional ErrorHandler is
    	// called without any call to ModifyResponse.
    	//
    	// If ModifyResponse returns an error, ErrorHandler is called
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 23:37:42 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apiserverinternal/v1alpha1/types.go

    	// encode objects to when persisting objects in the backend.
    	Status StorageVersionStatus `json:"status" protobuf:"bytes,3,opt,name=status"`
    }
    
    // StorageVersionSpec is an empty spec.
    type StorageVersionSpec struct{}
    
    // API server instances report the versions they can decode and the version they
    // encode objects to when persisting objects in the backend.
    type StorageVersionStatus struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:37 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. cmd/erasure-object_test.go

    func TestErasureDeleteObjectDiskNotFound(t *testing.T) {
    	ctx, cancel := context.WithCancel(context.Background())
    	defer cancel()
    
    	// Create an instance of xl backend.
    	obj, fsDirs, err := prepareErasure16(ctx)
    	if err != nil {
    		t.Fatal(err)
    	}
    	// Cleanup backend directories
    	defer obj.Shutdown(context.Background())
    	defer removeRoots(fsDirs)
    
    	z := obj.(*erasureServerPools)
    	xl := z.serverPools[0].sets[0]
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 30 20:43:25 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_device_compiler_client.cc

            "Executable not found for serialization.");
      }
    
      VLOG(1)
          << "Exporting xla::LocalExecutable as an xla::AotCompilationResult and "
             "serializing it to string.";
      xla::Compiler* compiler = client_->backend().compiler();
      auto exported = compiler->Export(executable.executable());
      if (exported.ok()) {
        return (*exported)->SerializeAsString();
      }
    
      return exported.status();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/config.go

    	EgressLookup egressselector.Lookup
    	// The TracerProvider can add tracing the connection
    	TracerProvider oteltrace.TracerProvider
    }
    
    // Config is configuration for creating a storage backend.
    type Config struct {
    	// Type defines the type of storage backend. Default ("") is "etcd3".
    	Type string
    	// Prefix is the prefix to all keys passed to storage.Interface methods.
    	Prefix string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inject/list.yaml.injected

    apiVersion: v1
    items:
    - apiVersion: apps/v1
      kind: Deployment
      metadata:
        creationTimestamp: null
        name: hello-v1
      spec:
        replicas: 3
        selector:
          matchLabels:
            app: hello
            tier: backend
            track: stable
            version: v1
        strategy: {}
        template:
          metadata:
            annotations:
              istio.io/rev: default
              kubectl.kubernetes.io/default-container: hello
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirMetadataCalculator.kt

    import org.jetbrains.kotlin.config.JvmDefaultMode
    import org.jetbrains.kotlin.fir.FirSession
    import org.jetbrains.kotlin.fir.backend.jvm.FirJvmSerializerExtension
    import org.jetbrains.kotlin.fir.backend.jvm.FirJvmSerializerExtension.Companion.FIELD_FOR_PROPERTY
    import org.jetbrains.kotlin.fir.backend.jvm.FirJvmSerializerExtension.Companion.METHOD_FOR_FIR_FUNCTION
    import org.jetbrains.kotlin.fir.declarations.*
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. tests/integration/pilot/gateway_conformance_test.go

    var conformanceNamespaces = []string{
    	"gateway-conformance-infra",
    	"gateway-conformance-mesh",
    	"gateway-conformance-mesh-consumer",
    	"gateway-conformance-app-backend",
    	"gateway-conformance-web-backend",
    }
    
    var skippedTests = map[string]string{}
    
    func TestGatewayConformance(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(ctx framework.TestContext) {
    			crd.DeployGatewayAPIOrSkip(ctx)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 15:22:47 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/concurrent/TaskLogger.kt

      if (loggingEnabled) {
        startNs = queue.taskRunner.backend.nanoTime()
        log(task, queue, "starting")
      }
    
      var completedNormally = false
      try {
        val result = block()
        completedNormally = true
        return result
      } finally {
        if (loggingEnabled) {
          val elapsedNs = queue.taskRunner.backend.nanoTime() - startNs
          if (completedNormally) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/hello-multi.yaml.injected

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      creationTimestamp: null
      name: hello-v1
    spec:
      replicas: 3
      selector:
        matchLabels:
          app: hello
          tier: backend
          track: stable
          version: v1
      strategy: {}
      template:
        metadata:
          annotations:
            istio.io/rev: default
            kubectl.kubernetes.io/default-container: hello
            kubectl.kubernetes.io/default-logs-container: hello
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13.2K bytes
    - Viewed (0)
Back to top