Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 208 for pcdata (0.18 sec)

  1. src/html/template/context.go

    	// with JS MIME type or no type attribute.
    	elementScript
    	// elementStyle corresponds to the raw text <style> element.
    	elementStyle
    	// elementTextarea corresponds to the RCDATA <textarea> element.
    	elementTextarea
    	// elementTitle corresponds to the RCDATA <title> element.
    	elementTitle
    )
    
    //go:generate stringer -type attr
    
    // attr identifies the current HTML attribute when inside the attribute,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  2. test/abi/idata.out

    David Chase <******@****.***> 1617630442 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 05 20:11:08 UTC 2021
    - 10 bytes
    - Viewed (0)
  3. src/cmd/link/internal/loadpe/ldpe.go

    			}
    			state.sectdata[sect] = data
    			bld.SetData(data)
    		}
    		bld.SetSize(int64(sect.Size))
    		state.sectsyms[sect] = s
    		if sect.Name == ".rsrc" || strings.HasPrefix(sect.Name, ".rsrc$") {
    			ls.Resources = append(ls.Resources, s)
    		} else if bld.Type() == sym.SSEHSECT {
    			if sect.Name == ".pdata" {
    				ls.PData = s
    			} else if sect.Name == ".xdata" {
    				ls.XData = s
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/usability/plugin/ExpressionDocumenter.java

         * <origin><![CDATA[
         * <distributionManagement>
         * <repository>
         * <id>some-repo</id>
         * <url>scp://host/path</url>
         * </repository>
         * <snapshotRepository>
         * <id>some-snap-repo</id>
         * <url>scp://host/snapshot-path</url>
         * </snapshotRepository>
         * </distributionManagement>
         * ]]></origin>
         * <usage><![CDATA[
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. maven-embedder/src/main/mdo/core-extensions.mdo

      xml.namespace="http://maven.apache.org/EXTENSIONS/${version}"
      xml.schemaLocation="http://maven.apache.org/xsd/core-extensions-${version}.xsd">
    
      <id>core-extensions</id>
      <name>CoreExtensions</name>
      <description><![CDATA[
      <p>This is a reference for the Core Extensions descriptor.</p>
      <p>The default location for the Core Extensions descriptor file is <code>${maven.projectBasedir}/.mvn/extensions.xml</code></p>
      ]]></description>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. .github/workflows/mint/minio-compress-encrypt.yaml

        <<: *minio-common
        hostname: minio1
        volumes:
          - cdata1-1:/cdata1
          - cdata1-2:/cdata2
    
      minio2:
        <<: *minio-common
        hostname: minio2
        volumes:
          - cdata2-1:/cdata1
          - cdata2-2:/cdata2
    
      minio3:
        <<: *minio-common
        hostname: minio3
        volumes:
          - cdata3-1:/cdata1
          - cdata3-2:/cdata2
    
      minio4:
        <<: *minio-common
        hostname: minio4
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Nov 03 21:18:18 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/rsc.io/markdown/html.go

    			}
    		}
    	}
    	return nil, 0, false
    }
    
    func parseHTMLCDATA(s string, i int) (Inline, int, bool) {
    	// “A CDATA section consists of the string <![CDATA[,
    	// a string of characters not including the string ]]>, and the string ]]>.”
    	return parseHTMLMarker(s, i, "<![CDATA[", "]]>")
    }
    
    func parseHTMLDecl(p *parseState, s string, i int) (Inline, int, bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. src/runtime/alg.go

    		i := (*interfacetype)(unsafe.Pointer(t))
    		var t *_type
    		var pdata *unsafe.Pointer
    		if len(i.Methods) == 0 {
    			a := (*eface)(p)
    			t = a._type
    			if t == nil {
    				return nil
    			}
    			pdata = &a.data
    		} else {
    			a := (*iface)(p)
    			if a.tab == nil {
    				return nil
    			}
    			t = a.tab.Type
    			pdata = &a.data
    		}
    
    		if t.Equal == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. src/cmd/link/testdata/pe-llvm/main.go

    //
    //     Export Table:
    //     Sections:
    //     Idx Name          Size     VMA              Type
    //       0 .rsrc$01      00000068 0000000000000000 DATA
    //       1 .rsrc$02      00000018 0000000000000000 DATA
    //
    //     SYMBOL TABLE:
    //     [ 0](sec -1)(fl 0x00)(ty   0)(scl   3) (nx 0) 0x00000011 @feat.00
    //     [ 1](sec  1)(fl 0x00)(ty   0)(scl   3) (nx 1) 0x00000000 .rsrc$01
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 26 18:15:09 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  10. maven-compat/src/main/resources/META-INF/maven/plugin-expressions/rootless.paramdoc.xml

      <expressions>
        <expression>
          <syntax>localRepository</syntax>
          <configuration>
            <![CDATA[
          Inside ~/.m2/settings.xml:
    
          <localRepository>/path/to/local/repository</localRepository>
          ]]></configuration>
          <description>The ArtifactRepository instance referencing the local artifact
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Nov 23 12:04:30 UTC 2014
    - 1.8K bytes
    - Viewed (0)
Back to top