Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 136 for browser (0.1 sec)

  1. docs/de/docs/advanced/security/http-basic-auth.md

    Und gibt einen Header `WWW-Authenticate` mit dem Wert `Basic` und einem optionalen `realm`-Parameter („Bereich“) zurück.
    
    Dadurch wird der Browser angewiesen, die integrierte Eingabeaufforderung für einen Benutzernamen und ein Passwort anzuzeigen.
    
    Wenn Sie dann den Benutzernamen und das Passwort eingeben, sendet der Browser diese automatisch im Header.
    
    ## Einfaches HTTP Basic Auth
    
    * Importieren Sie `HTTPBasic` und `HTTPBasicCredentials`.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:28:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/play-example/test/IntegrationSpec.scala

    @RunWith(classOf[JUnitRunner])
    class IntegrationSpec extends PlaySpec
      with OneBrowserPerTest
      with GuiceOneServerPerTest
      with HtmlUnitFactory
      with ServerProvider {
    
      "Application" should {
    
        "work from within a browser" in {
    
          go to ("http://localhost:" + port)
    
          pageSource must include ("Your new application is ready.")
        }
      }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 518 bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractKotlinPluginSmokeTest.groovy

                    buildFile << """
                        kotlin { js(IR) { browser() } }
                    """
                }
                if (testedPluginId == 'org.jetbrains.kotlin.multiplatform') {
                    buildFile << """
                        kotlin {
                            jvm()
                            js(IR) { browser() }
                        }
                    """
                }
    
                /*
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. docs/de/docs/advanced/websockets.md

    <div class="termy">
    
    ```console
    $ uvicorn main:app --reload
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    Öffnen Sie Ihren Browser unter <a href="http://127.0.0.1:8000" class="external-link" target="_blank">http://127.0.0.1:8000</a>.
    
    Sie sehen eine einfache Seite wie:
    
    <img src="/img/tutorial/websockets/image01.png">
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:17:58 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/kotlin-multiplatform-js-jvm-example/src/jsMain/kotlin/samples/Base64.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package samples
    
    import kotlinx.browser.window
    
    actual object Base64Factory {
        actual fun createEncoder(): Base64Encoder = JsBase64Encoder
    }
    
    object JsBase64Encoder : Base64Encoder {
        override fun encode(src: ByteArray): ByteArray {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 07:33:24 UTC 2024
    - 1003 bytes
    - Viewed (0)
  6. .dockerignore

    .git
    .github
    default.etcd
    *.gz
    *.tar.gz
    *.bzip2
    *.zip
    browser/node_modules
    node_modules
    docs/debugging/s3-verify/s3-verify
    docs/debugging/xl-meta/xl-meta
    docs/debugging/s3-check-md5/s3-check-md5
    docs/debugging/hash-set/hash-set
    docs/debugging/healing-bin/healing-bin
    docs/debugging/inspect/inspect
    docs/debugging/pprofgoparser/pprofgoparser
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 18 20:47:03 UTC 2023
    - 384 bytes
    - Viewed (0)
  7. ci/official/pycpp.sh

    fi
    
    # Note: the profile can be viewed by visiting chrome://tracing in a Chrome browser.
    # See https://docs.bazel.build/versions/main/skylark/performance.html#performance-profiling
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 06 17:29:44 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/kotlin-multiplatform-js-jvm-example/build.gradle.kts

     * limitations under the License.
     */
    
    plugins {
        kotlin("multiplatform") version "$kotlinVersion"
    }
    
    repositories {
        mavenCentral()
    }
    
    kotlin {
        js(IR) {
            browser {
                testTask {
                    useKarma {
                        useChromeHeadless()
                        $enableCssSupportOld
                    }
                }
    
                $enableCssSupportNew
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 07:33:24 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. .idea/vcs.xml

            </IssueNavigationLink>
            <IssueNavigationLink>
              <option name="issueRegexp" value="EA\-(\d+)" />
              <option name="linkRegexp" value="http://ea.jetbrains.com/browser/ea_problems/$1" />
            </IssueNavigationLink>
            <IssueNavigationLink>
              <option name="issueRegexp" value="KEEP\-(\d+)" />
              <option name="linkRegexp" value="https://github.com/Kotlin/KEEP/issues/$1" />
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Feb 23 14:29:33 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. docs/en/docs/advanced/websockets.md

    <div class="termy">
    
    ```console
    $ fastapi dev main.py
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    Open your browser at <a href="http://127.0.0.1:8000" class="external-link" target="_blank">http://127.0.0.1:8000</a>.
    
    You will see a simple page like:
    
    <img src="/img/tutorial/websockets/image01.png">
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top