Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for flagname (0.13 sec)

  1. src/debug/elf/elf.go

    	{0x100, "SHF_OS_NONCONFORMING"},
    	{0x200, "SHF_GROUP"},
    	{0x400, "SHF_TLS"},
    	{0x800, "SHF_COMPRESSED"},
    }
    
    func (i SectionFlag) String() string   { return flagName(uint32(i), shfStrings, false) }
    func (i SectionFlag) GoString() string { return flagName(uint32(i), shfStrings, true) }
    
    // Section compression type.
    type CompressionType int
    
    const (
    	COMPRESS_ZLIB   CompressionType = 1          /* ZLIB compression. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  2. api/maven-api-model/src/main/mdo/maven.mdo

        </ul>
        ]]>
      </description>
      <defaults>
        <default>
          <key>package</key>
          <value>org.apache.maven.model</value>
        </default>
      </defaults>
      <classes>
        <class rootElement="true" xml.tagName="project">
          <name>Model</name>
          <superClass>ModelBase</superClass>
          <description>
            The {@code &lt;project>} element is the root of the descriptor.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  3. pkg/config/validation/validation.go

    		for _, o := range l.Overrides {
    			if o == nil {
    				v = appendErrorf(v, "tagOverrides may not be null")
    				continue
    			}
    			for tagName, to := range o.TagOverrides {
    				if tagName == "" {
    					v = AppendWarningf(v, "tagOverrides.name may not be empty")
    				}
    				if to == nil {
    					v = appendErrorf(v, "tagOverrides may not be null")
    					continue
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top