Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for interneti (0.16 sec)

  1. docs/de/docs/how-to/custom-docs-ui-assets.md

    sollten Sie in der Lage sein, Ihr WLAN zu trennen, gehen Sie zu Ihrer Dokumentation unter <a href="http://127.0.0.1:8000/docs" class="external-link" target="_blank">http://127.0.0.1:8000/docs</a> und laden Sie die Seite neu.
    
    Und selbst ohne Internet könnten Sie die Dokumentation für Ihre API sehen und damit interagieren....
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/CompileServices.java

                return new IncrementalCompilerFactory(buildOperationExecutor, interner, classSetAnalyzer);
            }
    
            @Provides
            CachingClassDependenciesAnalyzer createClassAnalyzer(StringInterner interner, GeneralCompileCaches cache) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. cluster/gce/windows/smoke-test.sh

      # A stable (hopefully) HTTP server provided by Cloudflare. If this ever stops
      # working, we can request from 8.8.8.8 (Google DNS) using https instead.
      local internet_ip="1.1.1.1"
    
      if ! $kubectl exec "$windows_command_pod" -- powershell.exe \
          "curl -UseBasicParsing http://$internet_ip" > $output_file; then
        cleanup_deployments
        echo "Failing output: $(cat $output_file)"
        echo "FAILED: ${FUNCNAME[0]}"
        exit 1
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/init/preflight.go

    		return nil
    	}
    
    	fmt.Println("[preflight] Pulling images required for setting up a Kubernetes cluster")
    	fmt.Println("[preflight] This might take a minute or two, depending on the speed of your internet connection")
    	fmt.Println("[preflight] You can also perform this action beforehand using 'kubeadm config images pull'")
    	return preflight.RunPullImagesCheck(utilsexec.New(), data.Cfg(), data.IgnorePreflightErrors())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/phases/upgrade/node/preflight.go

    		if !data.DryRun() {
    			fmt.Println("[preflight] Pulling images required for setting up a Kubernetes cluster")
    			fmt.Println("[preflight] This might take a minute or two, depending on the speed of your internet connection")
    			fmt.Println("[preflight] You can also perform this action beforehand using 'kubeadm config images pull'")
    			if err := preflight.RunPullImagesCheck(utilsexec.New(), initConfig, data.IgnorePreflightErrors()); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. docs/en/docs/how-to/custom-docs-ui-assets.md

    ## Self-hosting JavaScript and CSS for docs
    
    Self-hosting the JavaScript and CSS could be useful if, for example, you need your app to keep working even while offline, without open Internet access, or in a local network.
    
    Here you'll see how to serve those files yourself, in the same FastAPI app, and configure the docs to use them.
    
    ### Project file structure
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. .github/bot_config.yml

             * It has an added advantage since you can you easily switch to different hardware accelerators (cpu, gpu, tpu) as per the task.
             * All you need is a good internet connection and you are all set.
          * Try to build TF from sources by changing CPU optimization flags.
       
       *Please let us know if this helps.*
       
    windows_comment: >
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 04:55:57 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildEnvironment.kt

        val isMacOsX = OperatingSystem.current().isMacOsX
        val isIntel: Boolean = architecture == "x86_64" || architecture == "x86"
        val isSlowInternetConnection
            get() = System.getProperty("slow.internet.connection", "false")!!.toBoolean()
        val agentNum: Int
            get() {
                if (System.getenv().containsKey("USERNAME")) {
                    val agentNumEnv = System.getenv("USERNAME").replaceFirst("tcagent", "")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 16:58:31 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. src/net/ip.go

    func (ip IP) IsPrivate() bool {
    	if ip4 := ip.To4(); ip4 != nil {
    		// Following RFC 1918, Section 3. Private Address Space which says:
    		//   The Internet Assigned Numbers Authority (IANA) has reserved the
    		//   following three blocks of the IP address space for private internets:
    		//     10.0.0.0        -   10.255.255.255  (10/8 prefix)
    		//     172.16.0.0      -   172.31.255.255  (172.16/12 prefix)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/join/preflight.go

    			return nil
    		}
    
    		fmt.Println("[preflight] Pulling images required for setting up a Kubernetes cluster")
    		fmt.Println("[preflight] This might take a minute or two, depending on the speed of your internet connection")
    		fmt.Println("[preflight] You can also perform this action beforehand using 'kubeadm config images pull'")
    		if err := preflight.RunPullImagesCheck(utilsexec.New(), initCfg, j.IgnorePreflightErrors()); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top