Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for HelloWorld (0.08 sec)

  1. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    from. A source set is essentially just a set of source directories containing source files. For example, when you apply the `c` plugin and define a library called `helloworld`, Gradle will define, by default, a source set containing the C source files in the `src/helloworld/c` directory. It will use these source files to build the `helloworld` library. This is described in more detail below.
    
    For each component, Gradle defines one or more _binaries_ as output. To build a binary, Gradle will...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  2. src/encoding/xml/marshal_test.go

    	}
    }
    
    // Issue 16158. Decoder.unmarshalAttr ignores the return value of copyValue.
    func TestIssue16158(t *testing.T) {
    	const data = `<foo b="HELLOWORLD"></foo>`
    	err := Unmarshal([]byte(data), &struct {
    		B byte `xml:"b,attr,omitempty"`
    	}{})
    	if err == nil {
    		t.Errorf("Unmarshal: expected error, got nil")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
Back to top