Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 324 for typed (0.46 sec)

  1. pilot/pkg/networking/core/envoyfilter/listener_patch.go

    		if lp.Operation == networking.EnvoyFilter_Patch_MERGE {
    			// proto merge doesn't work well when merging two filters with ANY typed configs
    			// especially when the incoming cp.Value is a struct that could contain the json config
    			// of an ANY typed filter. So convert our filter's typed config to Struct (retaining the any
    			// typed output of json)
    			if filter.GetTypedConfig() == nil {
    				// TODO(rshriram): fixme
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 15:39:29 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/scheme.go

    			panic(err)
    		}
    	}
    }
    
    // KnownTypes returns the types known for the given version.
    func (s *Scheme) KnownTypes(gv schema.GroupVersion) map[string]reflect.Type {
    	types := make(map[string]reflect.Type)
    	for gvk, t := range s.gvkToType {
    		if gv != gvk.GroupVersion() {
    			continue
    		}
    
    		types[gvk.Kind] = t
    	}
    	return types
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 25.2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r73/DependencyArtifactDownloadProgressEventCrossVersionTest.groovy

    @ToolingApiVersion(">=7.3")
    @TargetGradleVersion(">=7.3")
    @Timeout(value = 10, unit = TimeUnit.MINUTES)
    class DependencyArtifactDownloadProgressEventCrossVersionTest extends AbstractHttpCrossVersionSpec {
    
        def "generates typed events for downloads during dependency resolution"() {
            def modules = setupBuildWithArtifactDownloadDuringConfiguration()
            modules.useLargeJars()
    
            when:
            def events = ProgressEvents.create()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectCollectionExtensionsTest.kt

                foo = "typed access"
            }
            container.named("bar", DomainObject::class) {
                bar = "typed configuration"
            }
    
            assertThat(container["foo"].foo, equalTo("reified access"))
            assertThat(container["foo"].bar, equalTo("reified configuration"))
    
            assertThat(container["bar"].foo, equalTo("typed access"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/attributes/DefaultImmutableAttributes.java

                foundType += " with a different ClassLoader";
            }
            throw new IllegalArgumentException(String.format("Unexpected type for attribute '%s' provided. Expected a value of type %s but found a value of type %s.", attribute.getName(), otherAttributeType.getName(), foundType));
        }
    
        @Override
        public boolean isPresent() {
            return attribute != null;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 12:57:50 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/objectmeta_test.go

    	},
    }
    
    const (
    	embeddedResourceSchema = `
    type: object
    properties:
      embedded:
        type: object
        x-kubernetes-embedded-resource: true
        x-kubernetes-preserve-unknown-fields: true
      noEmbeddedObject:
        type: object
        x-kubernetes-preserve-unknown-fields: true
      embeddedNested:
        type: object
        x-kubernetes-embedded-resource: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 05:32:34 UTC 2023
    - 19K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/ProjectSchemaAccessorsIntegrationTest.kt

                build("-q").output,
                containsString("build.Java11Plugin${'$'}Java11Extension")
            )
        }
    
        @Test
        fun `accessors to kotlin internal task types are typed with the first kotlin public parent type`() {
    
            withDefaultSettings()
            withKotlinBuildSrc()
            withFile(
                "buildSrc/src/main/kotlin/my/CustomTasks.kt",
                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  8. src/cmd/doc/doc_test.go

    			`type T1 = T2`,
    		},
    		[]string{
    			`type T1 T2`,
    			`type ExportedType`,
    		},
    	},
    	// Type -u with unexported fields.
    	{
    		"type with unexported fields and -u",
    		[]string{"-u", p, `ExportedType`},
    		[]string{
    			`Comment about exported type`, // Include comment.
    			`type ExportedType struct`,    // Type definition.
    			`Comment before exported field.*\n.*ExportedField +int`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:16:55 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  9. pkg/bootstrap/option/convert.go

    	if err != nil {
    		log.Error(err.Error())
    		return ""
    	}
    	return string(b)
    }
    
    // marshalMetadata combines type metadata and untyped metadata and marshals to json
    // This allows passing arbitrary metadata to Envoy, while still supported typed metadata for known types
    func marshalMetadata(metadata *model.BootstrapNodeMetadata, rawMeta map[string]any) (string, error) {
    	b, err := json.Marshal(metadata)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 00:35:05 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    ====
    
    Note that since Kotlin is a statically typed language, it is necessary to specify the type of the task explicitly. Otherwise, the script will not compile because the inferred type will be `Task`, not `Jar`, and the `archiveName` property is specific to the `Jar` task type.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
Back to top