Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 169 for Element3 (0.23 sec)

  1. src/encoding/xml/marshal_test.go

    	},
    	{
    		ExpectXML:   `<IfaceElement><T1></T1><Element>hi</Element><T2></T2></IfaceElement>`,
    		Value:       &IfaceElement{Element: "hi"},
    		MarshalOnly: true,
    	},
    	{
    		ExpectXML:     `<IfaceElement><T1></T1><Element>hi</Element><T2></T2></IfaceElement>`,
    		Value:         &IfaceElement{Element: nil},
    		UnmarshalOnly: true,
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    the<SourceSetContainer>()["main"].srcDir("src/core/java")
    ----
    
    The snippet above also demonstrates one way of configuring the elements of a project extension that is a container.
    
    ==== Elements in project-extension containers
    
    Container-based project extensions, such as `SourceSetContainer`, also allow you to configure the elements held by them.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTaskIntegrationTest.groovy

            result.groupedOutput.task(":outgoingVariants").assertOutputContains """--------------------------------------------------
    Variant apiElements
    --------------------------------------------------
    API elements for the 'main' feature.
    
    Capabilities
        - org:myLib:1.0 (default capability)
    Attributes
        - org.gradle.category            = library
        - org.gradle.dependency.bundling = external
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 50K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    //sys	SetupDiSetClassInstallParams(deviceInfoSet DevInfo, deviceInfoData *DevInfoData, classInstallParams *ClassInstallHeader, classInstallParamsSize uint32) (err error) = setupapi.SetupDiSetClassInstallParamsW
    
    // SetClassInstallParams method sets or clears class install parameters for a device information set or a particular device information element.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/expr.go

    			fields := utyp.fields
    			if _, ok := e.ElemList[0].(*syntax.KeyValueExpr); ok {
    				// all elements must have keys
    				visited := make([]bool, len(fields))
    				for _, e := range e.ElemList {
    					kv, _ := e.(*syntax.KeyValueExpr)
    					if kv == nil {
    						check.error(e, MixedStructLit, "mixture of field:value and value elements in struct literal")
    						continue
    					}
    					key, _ := kv.Key.(*syntax.Name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    					}},
    				// (This test shows an array cannpt be correlated by index with its old value)
    				expectError{applyPatchOperation{
    					"add new, valid fields to elements of the array, failing to ratchet unchanged old fields within the array elements by correlating by index due to atomic list",
    					myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    						"values": []interface{}{
    							map[string]interface{}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  7. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

    // Browser globals
    L29:        root.daterangepicker = factory(root.moment, root.jQuery);
    L30:    }
    L31:}(this, function(moment, $) {
    L32:    var DateRangePicker = function(element, options, cb) {
    L33:
    L34:        //default settings for options
    L35:        this.parentEl = 'body';
    L36:        this.element = $(element);
    L37:        this.startDate = moment().startOf('day');
    L38:        this.endDate = moment().endOf('day');
    L39:        this.minDate = false;
    L40:        this.maxDate = false;
    ...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            when:
            keySetProvider.get()
    
            then:
            def e = thrown(NullPointerException)
            e.message == 'Cannot get the value of a property of type java.util.Set with element type java.lang.String as the source value contains a null element.'
        }
    
        def "keySet provider tracks value of property"() {
            when:
            def keySetProvider = property.keySet()
    
            then:
            keySetProvider.present
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    //
    // OneHot with on=1 off=0 axis=-1, where `index` is a single element tensor,
    // creates a tensor of size depth, and all values are 0, except for the element
    // at `index`, which is 1. Multiplying such a tensor with a 2D filter esentially
    // returns the single column in filter as a 1D tensor. If the input has multiple
    // elements, repeat this for every entry, forming the higher dimensions in the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  10. src/math/big/int_test.go

    		}
    	}
    	// exhaustive test for small values
    	for n := 2; n < 100; n++ {
    		(&modulus).SetInt64(int64(n))
    		for x := 1; x < n; x++ {
    			(&element).SetInt64(int64(x))
    			(&gcd).GCD(nil, nil, &element, &modulus)
    			if (&gcd).Cmp(one) != 0 {
    				continue
    			}
    			(&inverse).ModInverse(&element, &modulus)
    			(&inverse).Mul(&inverse, &element)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
Back to top