Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,318 for pout (0.06 sec)

  1. src/syscall/mksyscall_libc.pl

    		push @vars, $sysvarname;
    	}
    
    	# Go function header.
    	$out = join(', ', @out);
    	if($out ne "") {
    		$out = " ($out)";
    	}
    	if($text ne "") {
    		$text .= "\n"
    	}
    	$text .= sprintf "func %s(%s)%s {\n", $func, join(', ', @in), $out;
    
    	# Check if err return available
    	my $errvar = "";
    	foreach my $p (@out) {
    		my ($name, $type) = parseparam($p);
    		if($type eq "error") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 11:28:51 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/port.go

    // NoServicePort defines the ServicePort value for a Port that is a workload-only port.
    const NoServicePort = -1
    
    // Port exposed by an Echo Instance
    type Port struct {
    	// Name of this port
    	Name string
    
    	// Protocol to be used for the port.
    	Protocol protocol.Instance
    
    	// ServicePort number where the service can be reached. Does not necessarily
    	// map to the corresponding port numbers for the instances behind the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 13 18:10:05 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  3. src/net/port.go

    		n *= 10
    		nn := n + uint32(d)
    		if nn < n || nn > max {
    			n = max
    			break
    		}
    		n = nn
    	}
    	if !neg && n >= cutoff {
    		port = int(cutoff - 1)
    	} else if neg && n > cutoff {
    		port = int(cutoff)
    	} else {
    		port = int(n)
    	}
    	if neg {
    		port = -port
    	}
    	return port, false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:31:56 UTC 2017
    - 1.5K bytes
    - Viewed (0)
  4. docs/fr/docs/deployment/versions.md

    Si vous utilisez un autre outil pour gérer vos installations, comme Poetry, Pipenv, ou autres, ils ont tous un moyen que vous pouvez utiliser pour définir des versions spécifiques pour vos paquets.
    
    ## Versions disponibles
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Oct 31 17:39:54 UTC 2022
    - 4K bytes
    - Viewed (0)
  5. releasenotes/notes/ignore-port.yaml

    - |
      **Fixed** an issue causing traffic to match an unexpected route when using wildcard domain names and including an port in the `Host` header.
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 17 16:29:11 UTC 2022
    - 581 bytes
    - Viewed (0)
  6. docs/fr/docs/advanced/response-directly.md

    Ensuite, en arrière-plan, il mettra ces données JSON-compatible (par exemple un `dict`) à l'intérieur d'un `JSONResponse` qui sera utilisé pour envoyer la réponse au client.
    
    Mais vous pouvez retourner une `JSONResponse` directement à partir de vos *opérations de chemin*.
    
    Cela peut être utile, par exemple, pour retourner des en-têtes personnalisés ou des cookies.
    
    ## Renvoyer une `Response`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/service-port-name.yaml

    # If port is unnamed or port name doesn't follow <protocol>[-<suffix>], the analyzer will report warning.
    apiVersion: v1
    kind: Service
    metadata:
      name: my-service
      namespace: my-namespace
    spec:
      selector:
        app: my-service
      ports:
      - name: tcp-foo
        protocol: TCP
        port: 8080
        targetPort: 8080
    ---
    # internal waypoint, should not generate warning
    apiVersion: v1
    kind: Service
    metadata:
      labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 21:10:07 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/gateway-no-port.yaml

    # Gateway with bogus port
    #
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: httpbin-gateway
    spec:
      selector:
        istio: ingressgateway
      servers:
      - port:
          number: 80
          name: http
          protocol: HTTP
        hosts:
        - "*"
      - port:
          number: 8004
          name: http2
          protocol: HTTP
        hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 347 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/httproute/invalid-backend-port.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: invalid-backend-port
    spec:
      rules:
      - backendRefs:
        - name: my-service1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 176 bytes
    - Viewed (0)
  10. docs/fr/docs/deployment/docker.md

    ### Déployer une application FastAPI
    
    La façon la plus simple de tout mettre en place, serait d'utiliser les [**Générateurs de projet FastAPI**](../project-generation.md){.internal-link target=_blank}.
    
    Le génerateur de projet adéquat est conçu pour être intégré à ce cluster Docker Swarm avec Traefik et HTTPS décrit ci-dessus.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 7.5K bytes
    - Viewed (0)
Back to top