Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 118 of 118 for deploymentID (0.38 sec)

  1. pkg/test/framework/components/ambient/waypoint.go

    }
    
    func (k kubeComponent) Close() error {
    	if k.inbound != nil {
    		k.inbound.Close()
    	}
    	if k.outbound != nil {
    		k.outbound.Close()
    	}
    	return nil
    }
    
    // WaypointProxy describes a waypoint proxy deployment
    type WaypointProxy interface {
    	Namespace() namespace.Instance
    	Inbound() string
    	Outbound() string
    	PodIP() string
    }
    
    // NewWaypointProxy creates a new WaypointProxy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/list_work_estimator.go

    		// Example of such list requests:
    		// /apis/certificates.k8s.io/v1/certificatesigningrequests?fieldSelector=metadata.name%3Dcsr-xxs4m
    		// /api/v1/namespaces/test/configmaps?fieldSelector=metadata.name%3Dbig-deployment-1&limit=500&resourceVersion=0
    		return WorkEstimate{InitialSeats: minSeats}
    	}
    
    	query := r.URL.Query()
    	listOptions := metav1.ListOptions{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part6_gradle_caching.adoc

    To try out the remote Build Cache, Gradle provides a free link:https://hub.docker.com/r/gradle/build-cache-node[Docker image] for a single remote Build Cache node.
    For production grade deployments, link:https://gradle.com/gradle-enterprise-solutions/build-cache/[Develocity] is recommended.
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

    {{- $subsets := .Subsets }}
    {{- $cluster := .Cluster }}
    {{- range $i, $subset := $subsets }}
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: {{ $.Service }}-{{ $subset.Version }}
    spec:
      replicas: 1
      selector:
        matchLabels:
          istio.io/test-vm: {{ $.Service }}
          istio.io/test-vm-version: {{ $subset.Version }}
      template:
        metadata:
          annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/echotest/filters.go

    	for _, filter := range t.destinationFilters {
    		to = filter(from, to)
    	}
    	return to
    }
    
    // SimplePodServiceAndAllSpecial finds the first Pod deployment that has a sidecar and doesn't use a headless service and removes all
    // other "regular" pods that aren't part of the same Service. Pods that are part of the same Service but are in a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/path-params-numeric-validations.md

        If you have an older version, you would get errors when trying to use `Annotated`.
    
        Make sure you [Upgrade the FastAPI version](../deployment/versions.md#upgrading-the-fastapi-versions){.internal-link target=_blank} to at least 0.95.1 before using `Annotated`.
    
    ## Declare metadata
    
    You can declare all the same parameters as for `Query`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 01 21:05:52 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. cmd/signature-v4-utils.go

    		// with > 0 content-length in the body,
    		// we should skip such clients and allow
    		// blindly such insecure clients only if
    		// S3 strict compatibility is disabled.
    
    		// We return true only in situations when
    		// deployment has asked MinIO to allow for
    		// such broken clients and content-length > 0.
    		return r.ContentLength > 0 && !globalServerCtxt.StrictS3Compat
    	}
    	return false
    }
    
    // Returns SHA256 for calculating canonical-request.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. docs/en/docs/deployment/manually.md

    And that will start Hypercorn with your app using Trio as the backend.
    
    Now you can use Trio internally in your app. Or even better, you can use AnyIO, to keep your code compatible with both Trio and asyncio. 🎉
    
    ## Deployment Concepts
    
    These examples run the server program (e.g Uvicorn), starting **a single process**, listening on all the IPs (`0.0.0.0`) on a predefined port (e.g. `80`).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top