Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for Backend (0.17 sec)

  1. staging/src/k8s.io/api/networking/v1beta1/generated.pb.go

    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			if m.Backend == nil {
    				m.Backend = &IngressBackend{}
    			}
    			if err := m.Backend.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
    				return err
    			}
    			iNdEx = postIndex
    		case 2:
    			if wireType != 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    int32 type: integer maxRequestsPerConnec: description: Maximum number of requests per connection to a backend. format: int32 type: integer maxRetries: description: Maximum number of retries that can be outstanding to all hosts in a cluster at a given time. format: int32 type: integer useClientProtocol: description: If set to true, client protocol will be preserved while initiating connection to backend. type: boolean type: object tcp: description: Settings common to both HTTP and TCP upstream connections....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    		}
    
    		// Fetching the backend information
    		backendInfo := objectAPI.BackendInfo()
    		// Calculate the number of online/offline disks of all nodes
    		var allDisks []madmin.Disk
    		for _, s := range servers {
    			allDisks = append(allDisks, s.Disks...)
    		}
    		onlineDisks, offlineDisks := getOnlineOfflineDisksStats(allDisks)
    
    		backend = madmin.ErasureBackend{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  4. cluster/gce/util.sh

        --network "${NETWORK}" \
        --subnet "${SUBNETWORK}" \
        --address "${KUBE_MASTER_INTERNAL_IP}" \
        --ip-protocol TCP \
        --ports 443 \
        --backend-service "${MASTER_NAME}" \
        --backend-service-region "${REGION}"
    
      echo "Adding ${EXISTING_MASTER_NAME}/${EXISTING_MASTER_ZONE} to the load balancer"
      add-to-internal-loadbalancer "${EXISTING_MASTER_NAME}" "${EXISTING_MASTER_ZONE}"
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  5. cmd/server_test.go

    		// Init and run test on ErasureSD backend with signature v4.
    		{serverType: "ErasureSD", signer: signerV4},
    		// Init and run test on ErasureSD backend with signature v2.
    		{serverType: "ErasureSD", signer: signerV2},
    		// Init and run test on ErasureSD backend, with tls enabled.
    		{serverType: "ErasureSD", signer: signerV4, secure: true},
    		// Init and run test on Erasure backend.
    		{serverType: "Erasure", signer: signerV4},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_test.go

    	servicePort := &model.Port{
    		Name:     "default",
    		Port:     80,
    		Protocol: protocol.HTTP,
    	}
    
    	service := &model.Service{
    		Hostname:   host.Name("backend.default.svc.cluster.local"),
    		Ports:      model.PortList{servicePort},
    		Resolution: model.Passthrough,
    	}
    
    	instances := []*model.ServiceInstance{
    		{
    			Service:     service,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/networking/v1/generated.pb.go

    func (this *HTTPIngressPath) String() string {
    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&HTTPIngressPath{`,
    		`Path:` + fmt.Sprintf("%v", this.Path) + `,`,
    		`Backend:` + strings.Replace(strings.Replace(this.Backend.String(), "IngressBackend", "IngressBackend", 1), `&`, ``, 1) + `,`,
    		`PathType:` + valueToStringGenerated(this.PathType) + `,`,
    		`}`,
    	}, "")
    	return s
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 158.2K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__internal.apiserver.k8s.io__v1alpha1_openapi.json

        "schemas": {
          "io.k8s.api.apiserverinternal.v1alpha1.ServerStorageVersion": {
            "description": "An API server instance reports the version it can decode and the version it encodes objects to when persisting objects in the backend.",
            "properties": {
              "apiServerID": {
                "description": "The ID of the reporting API server.",
                "type": "string"
              },
              "decodableVersions": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.2K bytes
    - Viewed (0)
  9. src/net/http/serve_test.go

    		if err != nil {
    			t.Errorf("Body read: %v", err)
    			return
    		}
    		if len(slurp) != len(requestBody) {
    			t.Errorf("Backend read %d request body bytes; want %d", len(slurp), len(requestBody))
    			return
    		}
    		if !bytes.Equal(slurp, requestBody) {
    			t.Error("Backend read wrong request body.") // 1MB; omitting details
    			return
    		}
    		bodyOkay <- true
    		<-gone
    		gotCloseNotify <- true
    	})).ts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  10. istioctl/pkg/authz/testdata/configdump.yaml

               "stat_prefix": "stats",
               "route_config": {
                "virtual_hosts": [
                 {
                  "name": "backend",
                  "domains": [
                   "*"
                  ],
                  "routes": [
                   {
                    "match": {
                     "prefix": "/stats/prometheus"
                    },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 14:20:23 UTC 2023
    - 206.7K bytes
    - Viewed (1)
Back to top