Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 125 for Ne (0.03 sec)

  1. docs/fr/docs/tutorial/query-params.md

    Si vous ne voulez pas leur donner de valeur par défaut mais juste les rendre optionnels, utilisez `None` comme valeur par défaut.
    
    Mais si vous voulez rendre un paramètre de requête obligatoire, vous pouvez juste ne pas y affecter de valeur par défaut :
    
    ```Python hl_lines="6-7"
    {!../../../docs_src/query_params/tutorial005.py!}
    ```
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 20:52:31 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. tools/convert_RbacConfig_to_ClusterRbacConfig.sh

    if [ "${RBAC_CONFIGS}" == "" ]
    then
      echo "RbacConfig not found"
      exit 0
    fi
    
    RBAC_CONFIG_COUNT=$(echo "${RBAC_CONFIGS}" | wc -l)
    if [ "${RBAC_CONFIG_COUNT}" -ne 1 ]
    then
      echo "${RBAC_CONFIGS}"
      echo "found ${RBAC_CONFIG_COUNT} RbacConfigs, expecting only 1. Please delete extra RbacConfigs and execute again."
      exit 1
    fi
    
    NS=$(echo "${RBAC_CONFIGS}" | cut -f 1 -d ' ')
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 2K bytes
    - Viewed (0)
  3. manifests/charts/gateway/templates/deployment.yaml

            app.kubernetes.io/name: {{ include "gateway.name" . }}
            app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
            {{- range $key, $val := .Values.labels }}
            {{- if and (ne $key "app") (ne $key "istio") }}
            {{ $key | quote }}: {{ $val | quote }}
            {{- end }}
            {{- end }}
        spec:
          {{- with .Values.imagePullSecrets }}
          imagePullSecrets:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 22:42:29 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. src/internal/bytealg/count_s390x.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "go_asm.h"
    #include "textflag.h"
    
    // condition code masks
    #define EQ 8
    #define NE 7
    
    // register assignments
    #define R_ZERO R0
    #define R_VAL  R1
    #define R_TMP  R2
    #define R_PTR  R3
    #define R_LEN  R4
    #define R_CHAR R5
    #define R_RET  R6
    #define R_ITER R7
    #define R_CNT  R8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 15 21:04:43 UTC 2019
    - 5.4K bytes
    - Viewed (0)
  5. docs/fr/docs/deployment/https.md

    * TCP ne connaît pas les "domaines", seulement les adresses IP.
        * L'information sur le domaine spécifique demandé se trouve dans les données HTTP.
    * Les certificats HTTPS "certifient" un certain domaine, mais le protocole et le cryptage se font au niveau TCP, avant de savoir quel domaine est traité.
    * Par défaut, cela signifie que vous ne pouvez avoir qu'un seul certificat HTTPS par adresse IP.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Oct 31 17:45:30 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  6. src/runtime/vlop_arm.s

    	TEQ 	RM->1, RM // check for d=0 or d=1
    
    	// 2nd Newton iteration
    	MUL.NE	RM, Rq, Ra
    	MOVW.NE	$0, Rs
    	MULAL.NE Rq, Ra, (Rq,Rs)
    	BEQ 	udiv_by_0_or_1
    
    	// q now accurate enough for a remainder r, 0<=r<3*d
    	MULLU	Rq, Rr, (Rq,Rs) // q = (r * q) >> 32
    	ADD 	RM, Rr, Rr // r = n - d
    	MULA	RM, Rq, Rr, Rr // r = n - (q+1)*d
    
    	// since 0 <= n-q*d < 3*d; thus -d <= r < 2*d
    	CMN 	RM, Rr // t = r-d
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 7.1K bytes
    - Viewed (0)
  7. tests/integration/pilot/gw_topology_test.go

            proxy.istio.io/config: |
              gatewayTopology:
                numTrustedProxies: 2
          labels:
            istio: ingressgateway
            {{ .injectLabel }}
        spec:
          {{- if ne .imagePullSecret "" }}
          imagePullSecrets:
          - name: {{ .imagePullSecret }}
          {{- end }}
          containers:
          - name: istio-proxy
            image: auto
            imagePullPolicy: {{ .imagePullPolicy }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. dbflute_fess/manage.sh

    #!/bin/bash
    
    cd `dirname $0`
    . ./_project.sh
    
    FIRST_ARG=$1
    SECOND_ARG=$2
    
    sh $DBFLUTE_HOME/etc/cmd/_df-manage.sh $MY_PROPERTIES_PATH $FIRST_ARG $SECOND_ARG
    taskReturnCode=$?
    
    if [ $taskReturnCode -ne 0 ];then
      exit $taskReturnCode;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jul 04 22:46:31 UTC 2015
    - 236 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/compilation_timer_test.cc

      {
        CompilationTimer timer;
    
        absl::SleepFor(absl::Milliseconds(100));
    
        timer_result_in_milliseconds = timer.ElapsedCyclesInMilliseconds();
      }
    
      ASSERT_THAT(timer_result_in_milliseconds, testing::Ne(0));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 23 04:52:21 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. docs/tr/docs/deployment/index.md

    # Deployment (Yayınlama)
    
    **FastAPI** uygulamasını deploy etmek oldukça kolaydır.
    
    ## Deployment Ne Anlama Gelir?
    
    Bir uygulamayı **deploy** etmek (yayınlamak), uygulamayı **kullanıcılara erişilebilir hale getirmek** için gerekli adımları gerçekleştirmek anlamına gelir.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:46:42 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top