Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 286 for typed (0.09 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/config/validation/envoyfilter/envoyfilter_test.go

    										Fields: map[string]*structpb.Value{
    											"@type": {
    												Kind: &structpb.Value_StringValue{
    													StringValue: "type.googleapis.com/envoy.config.filter.network.ext_authz.v2.ExtAuthz",
    												},
    											},
    										},
    									}},
    								},
    							},
    						},
    					},
    				},
    			},
    		}, error: "referenced type unknown (hint: try using the v3 XDS API)"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/build_xla_ops_pass.cc

      bool print_outputs;
    
      // If true, insert CheckNumerics nodes for every floating point typed input to
      // an XLA cluster.
      bool check_input_numerics;
    
      // If true, insert CheckNumerics nodes for every floating point typed output
      // from an XLA cluster.
      bool check_output_numerics;
    };
    
    void MoveOutgoingEdges(Graph* g, Node* old_node, Node* new_node) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  10. src/internal/abi/type.go

    }
    
    // Imethod represents a method on an interface type
    type Imethod struct {
    	Name NameOff // name of method
    	Typ  TypeOff // .(*FuncType) underneath
    }
    
    // ArrayType represents a fixed array type.
    type ArrayType struct {
    	Type
    	Elem  *Type // array element type
    	Slice *Type // slice type
    	Len   uintptr
    }
    
    // Len returns the length of t if t is an array type, otherwise 0
    func (t *Type) Len() int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
Back to top