Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,206 for 20something (0.19 sec)

  1. pilot/cmd/pilot-agent/config/config_test.go

    proxyMetadata:
      ANNOTATION: something
    drainDuration: 5s
    extraStatTags: ["b"]
    proxyStatsMatcher:
      inclusionPrefixes: ["a"]
      inclusionSuffixes: ["e"]
      inclusionRegexps: ["f"]
    `,
    			expect: func() *meshconfig.ProxyConfig {
    				m := mesh.DefaultProxyConfig()
    				m.DiscoveryAddress = "annotation:123"
    				m.ProxyMetadata = map[string]string{"ANNOTATION": "something", "SOME": "setting"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 13 11:53:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/AbstractVirtualFileSystemTest.groovy

                    return directory(location, [])
                } as Supplier<FileSystemLocationSnapshot>)
            }
            async {
                thread.blockUntil.snapshottingStarted
                vfs.invalidate(['/my/location/new/something'])
                instant.invalidated
            }
            then:
            instant.snapshottingStarted < instant.invalidated
            instant.invalidated < instant.snapshottingFinished
            !vfs.findSnapshot(location).present
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. docs_src/handling_errors/tutorial003.py

    @app.exception_handler(UnicornException)
    async def unicorn_exception_handler(request: Request, exc: UnicornException):
        return JSONResponse(
            status_code=418,
            content={"message": f"Oops! {exc.name} did something. There goes a rainbow..."},
        )
    
    
    @app.get("/unicorns/{name}")
    async def read_unicorn(name: str):
        if name == "yolo":
            raise UnicornException(name=name)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Mar 26 19:09:53 UTC 2020
    - 626 bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/BuildScriptErrorIntegrationTest.groovy

    """
            buildFile << """
    // Build script contains only methods
    def broken() {
        throw new RuntimeException('failure')
    }
    
    def doSomething() {
        broken()
    }
    """
            final childBuildFile = file("child/build.gradle")
            childBuildFile << """
        doSomething()
    """
    
            when:
            fails()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 17:01:37 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/JavaClassChangeIncrementalCompilationIntegrationTest.groovy

        def "can detect deletion of class used as method parameter type"() {
            //executer.requireOwnGradleUserHomeDir()  //use when debugging to bypass cache
    
            source "interface A { void doSomething(Deleted d); }"
            def deleted = source "interface Deleted { }"
            outputs.snapshot { run language.compileTaskName }
    
            expect:
            deleted.delete()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  6. pkg/fieldpath/fieldpath_test.go

    				},
    			},
    			expectedValue: "b70b3269-858e-12a8-9cf2-1232a194038a",
    		},
    		{
    			name:      "ok - label",
    			fieldPath: "metadata.labels['something']",
    			obj: &v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Labels: map[string]string{
    						"something": "label value",
    					},
    				},
    			},
    			expectedValue: "label value",
    		},
    		{
    			name:      "invalid expression",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 02 06:26:55 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/managedfields/node.yaml

        topology.kubernetes.io/region: us-central1
        topology.kubernetes.io/zone: us-central1-b
        kubernetes.io/hostname: node-default-pool-something
      name: node-default-pool-something
      resourceVersion: "211582541"
      selfLink: /api/v1/nodes/node-default-pool-something
      uid: 0c24d0e1-a265-11e9-abe4-42010a80026b
    spec:
      podCIDR: 10.0.0.1/24
      providerID: some-provider-id-of-some-sort
    status:
      addresses:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. test/fixedbugs/issue15722.go

    // Checks to make sure that the compiler can catch a specific invalid
    // method type expression. NB: gccgo and gc have slightly different
    // error messages, hence the generic test for 'method' and not something
    // more specific.
    
    package issue15722
    
    type T int
    type P *T
    
    func (T) t() {}
    
    func _(p P) {
    	P.t(p) // ERROR "method"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 20:43:59 UTC 2016
    - 506 bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/PluginAwareExtensionsTest.kt

                target.apply<ProjectPlugin>()
                verify(configurationAction).plugin(ProjectPlugin::class.java)
            }
        }
    
        @Test
        fun `reified apply to extension`() {
            val arbitraryTarget = "something"
    
            newPluginAwareMock<PluginAware>().run {
                target.applyTo<AnyPlugin>(arbitraryTarget)
                inOrder(configurationAction) {
                    verify(configurationAction).plugin(AnyPlugin::class.java)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/CallHandshakeTest.kt

        val handshake = makeRequest(client)
    
        assertThat(handshake.cipherSuite).isIn(*expectedModernTls12CipherSuites.toTypedArray())
    
        // Probably something like
        // TLS_AES_128_GCM_SHA256
        // TLS_AES_256_GCM_SHA384
        // TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
        // TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
        // TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top