Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 125 for Ne (0.02 sec)

  1. src/cmd/internal/obj/arm64/list7.go

    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package arm64
    
    import (
    	"cmd/internal/obj"
    	"fmt"
    )
    
    var strcond = [16]string{
    	"EQ",
    	"NE",
    	"HS",
    	"LO",
    	"MI",
    	"PL",
    	"VS",
    	"VC",
    	"HI",
    	"LS",
    	"GE",
    	"LT",
    	"GT",
    	"LE",
    	"AL",
    	"NV",
    }
    
    func init() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. docs/fr/docs/deployment/manually.md

         N'oubliez pas de supprimer l'option `--reload` si vous l'utilisiez.
    
         L'option `--reload` consomme beaucoup plus de ressources, est plus instable, etc.
    
         Cela aide beaucoup pendant le **développement**, mais vous **ne devriez pas** l'utiliser en **production**.
    
    ## Hypercorn avec Trio
    
    Starlette et **FastAPI** sont basés sur
    <a href="https://anyio.readthedocs.io/en/stable/" class="external-link" target="_blank">AnyIO</a>, qui les rend
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 04 12:02:09 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. cluster/validate-cluster.sh

      # Use trick from https://unix.stackexchange.com/a/383411 to avoid
      # newline truncation.
      node=$(kubectl_retry get nodes --no-headers; ret=$?; echo .; exit "$ret") && res="$?" || res="$?"
      node="${node%.}"
      if [ "${res}" -ne "0" ]; then
        if [[ "${attempt}" -gt "${last_run:-$MAX_ATTEMPTS}" ]]; then
          echo -e "${color_red:-} Failed to get nodes.${color_norm:-}"
          exit 1
        else
          continue
        fi
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 01 06:35:39 UTC 2019
    - 7.3K bytes
    - Viewed (0)
  4. docs/fr/docs/project-generation.md

        * **TypeScript**.
        * Serveur Docker basé sur **Nginx** (configuré pour être facilement manipulé avec Vue-router).
        * Utilisation de *Docker multi-stage building*, pour ne pas avoir besoin de sauvegarder ou *commit* du code compilé.
        * Tests frontend exécutés à la compilation (pouvant être désactivés).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 02 14:18:06 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  5. docs/fr/docs/fastapi-people.md

    ## Principaux Reviewers
    
    Ces utilisateurs sont les **Principaux Reviewers**. 🕵️
    
    ### Reviewers des traductions
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. docs/fr/docs/help-fastapi.md

    Aimez-vous **FastAPI** ?
    
    Vous souhaitez aider FastAPI, les autres utilisateurs et l'auteur ?
    
    Ou souhaitez-vous obtenir de l'aide avec le **FastAPI** ?
    
    Il existe des moyens très simples d'aider (plusieurs ne nécessitent qu'un ou deux clics).
    
    Il existe également plusieurs façons d'obtenir de l'aide.
    
    ## Star **FastAPI** sur GitHub
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Oct 20 08:39:03 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. mvnw.cmd

    )
    IF NOT %WRAPPER_SHA_256_SUM%=="" (
        powershell -Command "&{"^
           "$hash = (Get-FileHash \"%WRAPPER_JAR%\" -Algorithm SHA256).Hash.ToLower();"^
           "If('%WRAPPER_SHA_256_SUM%' -ne $hash){"^
           "  Write-Output 'Error: Failed to validate Maven wrapper SHA-256, your Maven wrapper might be compromised.';"^
           "  Write-Output 'Investigate or delete %WRAPPER_JAR% to attempt a clean download.';"^
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  8. test/codegen/condmove.go

    func cmov16bit(x, y uint16) uint16 {
    	if x < y {
    		x = -y
    	}
    	// amd64:"CMOVW(HI|CS)"
    	// arm64:"CSNEG\t(LS|HS)"
    	// ppc64x:"ISEL\t[$][01]"
    	// wasm:"Select"
    	return x
    }
    
    // Floating point comparison. For EQ/NE, we must
    // generate special code to handle NaNs.
    func cmovfloateq(x, y float64) int {
    	a := 128
    	if x == y {
    		a = 256
    	}
    	// amd64:"CMOVQNE","CMOVQPC"
    	// arm64:"CSEL\tEQ"
    	// ppc64x:"ISEL\t[$]2"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 20:57:33 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/suggest/converter/KatakanaToAlphabetConverter.java

            map.put("ト", new String[] { "to" });
    
            map.put("ナ", new String[] { "na" });
            map.put("ニ", new String[] { "ni" });
            map.put("ヌ", new String[] { "nu" });
            map.put("ネ", new String[] { "ne" });
            map.put("ノ", new String[] { "no" });
    
            map.put("ハ", new String[] { "ha" });
            map.put("ヒ", new String[] { "hi" });
            map.put("フ", new String[] { "hu", "fu" });
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. docs/tr/docs/python-types.md

    Ardından, programcıların en iyi arkadaşı olan otomatik tamamlama ile denediniz.
    
    'first_name', ardından bir nokta ('.') yazıp otomatik tamamlamayı tetiklemek için 'Ctrl+Space' tuşlarına bastınız.
    
    Ancak, ne yazık ki, yararlı hiçbir şey elde edemediniz:
    
    <img src="/img/python-types/image01.png">
    
    ### Tipleri ekle
    
    Önceki sürümden sadece bir satırı değiştirelim.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top