Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 508 for someString (0.36 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/wait/poll.go

    // 'condition' will always be invoked at least once.
    //
    // Some intervals may be missed if the condition takes too long or the time
    // window is too short.
    //
    // If you want to Poll something forever, see PollInfinite.
    //
    // Deprecated: This method does not return errors from context, use PollUntilContextTimeout.
    // Note that the new method will no longer return ErrWaitTimeout and instead return errors
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 06:13:35 UTC 2023
    - 14K bytes
    - Viewed (0)
  2. docs/em/docs/python-types.md

    {!../../../docs_src/python_types/tutorial009.py!}
    ```
    
    ⚙ī¸ `Optional[str]` ↩ī¸ `str` 🔜 ➡ī¸ 👨‍🎨 ℹ 👆 🔍 ❌ 🌐❔ 👆 đŸ’Ē 🤔 👈 💲 🕧 `str`, 🕐❔ âšĢī¸ đŸ’Ē 🤙 `None` 💁‍♂ī¸.
    
    `Optional[Something]` 🤙 ⌨ `Union[Something, None]`, đŸ‘Ģ 🌓.
    
    👉 ⛓ 👈 🐍 3ī¸âƒŖ.1ī¸âƒŖ0ī¸âƒŖ, 👆 đŸ’Ē ⚙ī¸ `Something | None`:
    
    === "🐍 3ī¸âƒŖ.6ī¸âƒŖ & 🔛"
    
        ```Python hl_lines="1  4"
        {!> ../../../docs_src/python_types/tutorial009.py!}
        ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/wrapper-shared/src/test/groovy/org/gradle/wrapper/InstallTest.groovy

            gradleScript.parentFile.createDir()
            gradleScript.write('something')
            TestFile gradleLauncherJar = explodedZipDir.file('gradle-0.9/lib/gradle-launcher-0.9.jar')
            gradleLauncherJar.parentFile.createDir()
            gradleLauncherJar.write('something')
            explodedZipDir.zipTo(new TestFile(zipDestination))
            explodedZipDir.deleteDir();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:12:34 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/GroovyInteroperabilityTest.kt

            closureOf<MutableList<Int>> { add(42) }.call(list)
            assertEquals(42, list.first())
        }
    
        @Test
        fun `can use closure with single nullable argument call`() {
            var passedIntoClosure: Any? = "Something non null"
            closureOf<Any?> { passedIntoClosure = this }.call(null)
            assertNull(passedIntoClosure)
        }
    
        @Test
        fun `can use closure with delegate call`() {
            val list = arrayListOf<Int>()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  5. src/text/template/parse/parse_test.go

    	{"comment only", "{{/* comment */}}", true},
    	{"definition", `{{define "x"}}something{{end}}`, true},
    	{"definitions and space", "{{define `x`}}something{{end}}\n\n{{define `y`}}something{{end}}\n\n", true},
    	{"definitions and text", "{{define `x`}}something{{end}}\nx\n{{define `y`}}something{{end}}\ny\n", false},
    	{"definition and action", "{{define `x`}}something{{end}}{{if 3}}foo{{end}}", false},
    }
    
    func TestIsEmpty(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 24K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/net/MediaTypeTest.java

        assertEquals(
            "text/plain; something=\"cr@zy\"; something-else=\"crazy with spaces\";"
                + " and-another-thing=\"\"; normal-thing=foo",
            MediaType.create("text", "plain")
                .withParameter("something", "cr@zy")
                .withParameter("something-else", "crazy with spaces")
                .withParameter("and-another-thing", "")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 05 13:16:00 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  7. docs/en/docs/deployment/concepts.md

    We also saw that HTTPS is normally provided by a component **external** to your application server, a **TLS Termination Proxy**.
    
    And there has to be something in charge of **renewing the HTTPS certificates**, it could be the same component or it could be something different.
    
    ### Example Tools for HTTPS
    
    Some of the tools you could use as a TLS Termination Proxy are:
    
    * Traefik
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/PluginUseDslIntegrationSpec.groovy

        }
    
        def "build logic cannot precede plugins block"() {
            when:
            buildScript """
                someThing()
                plugins {}
            """
    
            then:
            fails "help"
    
            and:
            failure.assertHasLineNumber 3
            failure.assertHasFileName("Build file '${buildFile}'")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/io/CharSourceTest.java

      }
    
      public void testReadLines_toList() throws IOException {
        TestCharSource lines = new TestCharSource(LINES);
        assertEquals(ImmutableList.of("foo", "bar", "baz", "something"), lines.readLines());
        assertTrue(lines.wasStreamOpened() && lines.wasStreamClosed());
      }
    
      public void testReadLines_withProcessor() throws IOException {
        TestCharSource lines = new TestCharSource(LINES);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/staticpod/utils_test.go

    			desc: "setting scheduler extra address arg to something acknowledges it",
    			cfg: &kubeadmapi.ClusterConfiguration{
    				Scheduler: kubeadmapi.ControlPlaneComponent{
    					ExtraArgs: []kubeadmapi.Arg{
    						{Name: kubeSchedulerBindAddressArg, Value: "10.10.10.10"},
    					},
    				},
    			},
    			expected: "10.10.10.10",
    		},
    		{
    			desc: "setting scheduler extra ipv6 address arg to something acknowledges it",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 12 15:44:44 UTC 2023
    - 22.6K bytes
    - Viewed (0)
Back to top