Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Mincore (0.11 sec)

  1. src/runtime/export_linux_test.go

    // license that can be found in the LICENSE file.
    
    // Export guts for testing.
    
    package runtime
    
    const SiginfoMaxSize = _si_max_size
    const SigeventMaxSize = _sigev_max_size
    
    var NewOSProc0 = newosproc0
    var Mincore = mincore
    
    type Siginfo siginfo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 20:20:01 UTC 2023
    - 378 bytes
    - Viewed (0)
  2. src/runtime/runtime_linux_test.go

    	}
    }
    
    // Test that error values are negative.
    // Use a misaligned pointer to get -EINVAL.
    func TestMincoreErrorSign(t *testing.T) {
    	var dst byte
    	v := Mincore(unsafe.Add(unsafe.Pointer(new(int32)), 1), 1, &dst)
    
    	const EINVAL = 0x16
    	if v != -EINVAL {
    		t.Errorf("mincore = %v, want %v", v, -EINVAL)
    	}
    }
    
    func TestKernelStructSize(t *testing.T) {
    	// Check that the Go definitions of structures exchanged with the kernel are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 20:20:01 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. okhttp-testing-support/src/main/kotlin/okhttp3/TestUtilJvm.kt

        return parentFile.isDescendentOf(directory)
      }
    
      /**
       * See FinalizationTester for discussion on how to best trigger GC in tests.
       * https://android.googlesource.com/platform/libcore/+/master/support/src/test/java/libcore/
       * java/lang/ref/FinalizationTester.java
       */
      @Throws(Exception::class)
      @JvmStatic
      fun awaitGarbageCollection() {
        Runtime.getRuntime().gc()
        Thread.sleep(100)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. src/time/zoneinfo_android.go

    // license that can be found in the LICENSE file.
    
    // Parse the "tzdata" packed timezone file used on Android.
    // The format is lifted from ZoneInfoDB.java and ZoneInfo.java in
    // java/libcore/util in the AOSP.
    
    package time
    
    import (
    	"errors"
    	"syscall"
    )
    
    var platformZoneSources = []string{
    	"/system/usr/share/zoneinfo/tzdata",
    	"/data/misc/zoneinfo/current/tzdata",
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 20:57:35 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  5. docs/fr/docs/deployment/index.md

    utilisez.
    
    Vous pouvez **déployer un serveur** vous-même en utilisant une combinaison d'outils, vous pouvez utiliser un **service
    cloud** qui fait une partie du travail pour vous, ou encore d'autres options possibles.
    
    Je vais vous montrer certains des principaux concepts que vous devriez probablement avoir à l'esprit lors du déploiement
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 24 14:47:15 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/plugins/form-validator/lang/it.js

    a risposta alla domanda di sicurezza è errata",badDate:"La data scelta non è valida",lengthBadStart:"La sua risposta non può essere più lunga di ",lengthBadEnd:" caratteri",lengthTooLongStart:"La lunghezza della risposta deve essere minore di ",lengthTooShortStart:"La lunghezza della risposta deve essere maggiore di ",notConfirmed:"Il valore non è stato confermato.",badDomain:"Il dominio inserito non è corretto.",badUrl:"L' URL inserito non è valido",badCustomVal:"I valori...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.7K bytes
    - Viewed (0)
  7. docs/fr/docs/advanced/response-directly.md

    ## Renvoyer une `Response` personnalisée
    
    L'exemple ci-dessus montre toutes les parties dont vous avez besoin, mais il n'est pas encore très utile, car vous auriez pu retourner l'`item` directement, et **FastAPI** l'aurait mis dans une `JSONResponse` pour vous, en le convertissant en `dict`, etc. Tout cela par défaut.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/internal/analysisflags/help.go

    		fmt.Println("To select specific analyzers, use the -NAME flag for each one,")
    		fmt.Println(" or -NAME=false to run all analyzers not explicitly disabled.")
    
    		// Show only the core command-line flags.
    		fmt.Println("\nCore flags:")
    		fmt.Println()
    		fs := flag.NewFlagSet("", flag.ExitOnError)
    		flag.VisitAll(func(f *flag.Flag) {
    			if !strings.Contains(f.Name, ".") {
    				fs.Var(f.Value, f.Name, f.Usage)
    			}
    		})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 08 01:33:44 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  9. docs/fr/docs/deployment/manually.md

    ```
    
    </div>
    
    Et cela démarrera Hypercorn avec votre application en utilisant Trio comme backend.
    
    Vous pouvez désormais utiliser Trio en interne dans votre application. Ou mieux encore, vous pouvez utiliser AnyIO pour que votre code reste compatible avec Trio et asyncio. 🎉
    
    ## Concepts de déploiement
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 04 12:02:09 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. docs/fr/docs/history-design-future.md

    De nombreux développeurs et équipes dépendent déjà de **FastAPI** pour leurs projets (y compris moi et mon équipe).
    
    Mais il y a encore de nombreuses améliorations et fonctionnalités à venir.
    
    **FastAPI** a un grand avenir devant lui.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top