Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for SomeApp (0.1 sec)

  1. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BasicTypeInitIntegrationTest.groovy

            when:
            run('init', '--project-name', 'someApp', '--dsl', scriptDsl.id, '--incubating')
    
            then:
            def dslFixture = dslFixtureFor(scriptDsl)
            dslFixture.assertGradleFilesGenerated()
            dslFixture.settingsFile.assertContents(dslFixture.containsStringAssignment('rootProject.name', 'someApp'))
    
            when:
            run('help')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/plugins/SwiftBasePluginTest.groovy

        }
    
        def "registers a Swift PM publication for each production component"() {
            def component = Stub(DefaultSwiftApplication)
            def prop = Stub(Property)
            prop.get() >> "SomeApp"
            component.module >> prop
    
            when:
            project.pluginManager.apply(SwiftBasePlugin)
            project.components.add(component)
            project.evaluate()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppBasePluginTest.groovy

        }
    
        def "registers a Swift PM publication for each production component"() {
            def component = Stub(DefaultCppApplication)
            def prop = Stub(Property)
            prop.get() >> "SomeApp"
            component.baseName >> prop
    
            when:
            project.pluginManager.apply(CppBasePlugin)
            project.components.add(component)
            project.evaluate()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  4. docs/ru/docs/deployment/https.md

    ### DNS
    
    Теперь давайте сфокусируемся на работе с HTTPS.
    
    Всё начинается с того, что браузер спрашивает у **DNS-серверов**, какой **IP-адрес связан с доменом**, для примера возьмём домен `someapp.example.com`.
    
    DNS-сервера присылают браузеру определённый **IP-адрес**, тот самый публичный IP-адрес вашего сервера, который вы указали в ресурсной "записи А" при настройке.
    
    <img src="/img/deployment/https/https01.svg">
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Apr 03 16:22:47 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. docs/en/docs/deployment/https.md

    ### DNS
    
    Now let's focus on all the actual HTTPS parts.
    
    First, the browser would check with the **DNS servers** what is the **IP for the domain**, in this case, `someapp.example.com`.
    
    The DNS servers would tell the browser to use some specific **IP address**. That would be the public IP address used by your server, that you configured in the DNS servers.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. docs/de/docs/deployment/https.md

    ### DNS
    
    Konzentrieren wir uns nun auf alle tatsächlichen HTTPS-Aspekte.
    
    Zuerst würde der Browser mithilfe der **DNS-Server** herausfinden, welches die **IP für die Domain** ist, in diesem Fall für `someapp.example.com`.
    
    Die DNS-Server geben dem Browser eine bestimmte **IP-Adresse** zurück. Das wäre die von Ihrem Server verwendete öffentliche IP-Adresse, die Sie in den DNS-Servern konfiguriert haben.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:16:46 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  7. platforms/native/testing-native/src/test/groovy/org/gradle/nativeplatform/test/cpp/plugins/CppUnitTestPluginTest.groovy

        @Rule
        TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider(getClass())
        def projectDir = tmpDir.createDir("project")
        def project = ProjectBuilder.builder().withProjectDir(projectDir).withName("someApp").build()
    
        def "adds extension with convention for source layout and module name"() {
            given:
            def src = projectDir.file("src/test/cpp/test.cpp").createFile()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  8. docs/zh/docs/deployment/https.md

    这个操作一般只需要在最开始执行一次。
    
    !!! tip
         域名这部分发生在 HTTPS 之前,由于这一切都依赖于域名和 IP 地址,所以先在这里提一下。
    
    ### DNS
    
    现在让我们关注真正的 HTTPS 部分。
    
    首先,浏览器将通过 **DNS 服务器** 查询**域名的IP** 是什么,在本例中为 `someapp.example.com`。
    
    DNS 服务器会告诉浏览器使用某个特定的 **IP 地址**。 这将是你在 DNS 服务器中为你的服务器配置的公共 IP 地址。
    
    <img src="/img/deployment/https/https01.svg">
    
    ### TLS 握手开始
    
    然后,浏览器将在**端口 443**(HTTPS 端口)上与该 IP 地址进行通信。
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 09 15:38:25 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaIntegrationTest.groovy

            assertTestsExecuted("ThingTest", "ok")
        }
    
        def "build on Java application project with no dependencies"() {
            given:
            settingsFile << """
                rootProject.name = 'someapp'
            """
            buildFile << """
                plugins { id 'application' }
                application.mainClass = 'Thing'
            """
            file("src/main/java/Thing.java") << """
                class Thing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  10. docs/ja/docs/deployment/https.md

    これはおそらく、最初の1回だけあり、すべてをセットアップするときに行うでしょう。
    
    !!! tip
        ドメイン名の話はHTTPSに関する話のはるか前にありますが、すべてがドメインとIPアドレスに依存するため、ここで言及する価値があります。
    
    ### DNS
    
    では、実際のHTTPSの部分に注目してみよう。
    
    まず、ブラウザは**DNSサーバー**に**ドメインに対するIP**が何であるかを確認します。今回は、`someapp.example.com`とします。
    
    DNSサーバーは、ブラウザに特定の**IPアドレス**を使用するように指示します。このIPアドレスは、DNSサーバーで設定した、あなたのサーバーが使用するパブリックIPアドレスになります。
    
    <img src="/img/deployment/https/https01.svg">
    
    ### TLS Handshake の開始
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Sep 25 23:01:57 UTC 2023
    - 15.4K bytes
    - Viewed (0)
Back to top