Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,191 for someOp (0.14 sec)

  1. docs/en/docs/img/deployment/https/https03.drawio

                    </mxCell>
                    <mxCell id="29" value="&lt;font face=&quot;Roboto&quot; data-font-src=&quot;https://fonts.googleapis.com/css?family=Roboto&quot; style=&quot;font-size: 24px&quot;&gt;https://someapp.example.com&lt;/font&gt;" style="rounded=0;whiteSpace=wrap;html=1;fontStyle=1;strokeWidth=4;" parent="33" vertex="1">
                        <mxGeometry x="60" y="27" width="380" height="250" as="geometry"/>
                    </mxCell>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  2. docs/em/docs/deployment/https.md

    👆 🔜 🎲 👉 🕐, 🥇 🕰, 🕐❔ ⚒ 🌐 🆙.
    
    !!! tip
        👉 🆔 📛 🍕 🌌 ⏭ 🇺🇸🔍, ✋️ 🌐 🪀 🔛 🆔 &amp; 📢 📢, ⚫️ 💸 💬 ⚫️ 📥.
    
    ### 🏓
    
    🔜 ➡️ 🎯 🔛 🌐 ☑ 🇺🇸🔍 🍕.
    
    🥇, 🖥 🔜 ✅ ⏮️ **🏓 💽** ⚫️❔ **📢 🆔**, 👉 💼, `someapp.example.com`.
    
    🏓 💽 🔜 💬 🖥 ⚙️ 🎯 **📢 📢**. 👈 🔜 📢 📢 📢 ⚙️ 👆 💽, 👈 👆 🔗 🏓 💽.
    
    <img src="/img/deployment/https/https01.svg">
    
    ### 🤝 🤝 ▶️
    
    🖥 🔜 ⤴️ 🔗 ⏮️ 👈 📢 📢 🔛 **⛴ 4️⃣4️⃣3️⃣** (🇺🇸🔍 ⛴).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Apr 01 09:26:04 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  3. 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)
  4. subprojects/core/src/test/groovy/org/gradle/util/internal/TextUtilTest.groovy

            ""          | ""
            "foo"       | "foo"
            "fooBar"    | "foo-bar"
            "Foo"       | "foo"
            "fooBarBaz" | "foo-bar-baz"
            "ABC"       | "a-b-c"
            "someT"     | "some-t"
            "sT"        | "s-t"
            "aBc"       | "a-bc"
            "aBec"      | "a-bec"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  5. 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)
  6. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer_test.cc

        for (int i = 0, num_operations = kNumOperations; i < 4;
             ++i, num_operations += end - begin) {
          std::uniform_int_distribution<int> some_op(0, num_operations - 1);
          for (auto& rando : randos) {
            rando = some_op(rng);
          }
          // We need begin <= end <= insert.
          std::sort(randos.begin(), randos.end());
          const Rematerializer::RematSpec spec{begin, end, insert};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorDecoratedTest.groovy

        }
    }
    
    class CallsMethodDuringConstruction {
    
        Class setAtFieldInit = getClass()
        Map<String, String> someMap = [:]
        Class setDuringConstructor
    
        CallsMethodDuringConstruction() {
            setDuringConstructor = setAtFieldInit
            someMap['a'] = 'b'
            assert setDuringConstructor
        }
    }
    
    class UsesInheritedPropertiesDuringConstruction extends TestJavaObject {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 22K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/dependencies/DefaultDependencyConstraintHandlerTest.groovy

        }
    
        void "dynamic method fails for unknown configuration"() {
            when:
            dependencyConstraintHandler.unknown("someDep")
    
            then:
            def e = thrown(MissingMethodException)
            e.message.startsWith('Could not find method unknown() for arguments [someDep] on ')
        }
    
        void "dynamic method fails for no args"() {
            when:
            dependencyConstraintHandler.someConf()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 22:19:06 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/PathUtil.java

     *
     * For all methods operating on a list of paths, the paths must not start with a common segment.
     * For example, ["some", "some1/other", "other/foo"] is allowed, but ["some/foo", "some/bar", "other/foo"] is not.
     */
    public class PathUtil {
    
        /**
         * The Unix separator character.
         */
        private static final char UNIX_SEPARATOR = '/';
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractorTest.groovy

            @Unmanaged
            InputStream getThing();
    
            void setThing(InputStream inputStream);
        }
    
        interface SomeMap extends ModelMap<List<String>> {
        }
    
        def "specialized map"() {
            expect:
            def schema = extract(SomeMap)
            assert schema instanceof SpecializedMapSchema
            schema.elementType == new ModelType<List<String>>() {}
            schema.implementationType
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.9K bytes
    - Viewed (0)
Back to top