Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,642 for pout (0.12 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. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"potted_plant":                         "\U0001fab4",
    	"pouch":                                "\U0001f45d",
    	"poultry_leg":                          "\U0001f357",
    	"pound":                                "\U0001f4b7",
    	"pout":                                 "\U0001f621",
    	"pouting_cat":                          "\U0001f63e",
    	"pouting_face":                         "\U0001f64e",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  3. helm/minio/templates/post-job.yaml

    apiVersion: batch/v1
    kind: Job
    metadata:
      name: {{ template "minio.fullname" . }}-post-job
      labels:
        app: {{ template "minio.name" . }}-post-job
        chart: {{ template "minio.chart" . }}
        release: {{ .Release.Name }}
        heritage: {{ .Release.Service }}
      annotations:
        "helm.sh/hook": post-install,post-upgrade
        "helm.sh/hook-delete-policy": hook-succeeded,before-hook-creation
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jul 08 19:18:31 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. docs/fr/docs/async.md

    À la place, en étant "asynchrone", une fois terminée, une tâche peut légèrement attendre (quelques microsecondes) que l'ordinateur / le programme finisse ce qu'il était en train de faire, et revienne récupérer le résultat.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top