Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 144 for chardata (0.36 sec)

  1. src/encoding/xml/xml_test.go

    	CharData("\n    "),
    	StartElement{Name{"", "inner"}, []Attr{}},
    	EndElement{Name{"", "inner"}},
    	CharData("\n  "),
    	EndElement{Name{"", "outer"}},
    	CharData("\n  "),
    	StartElement{Name{"tag", "name"}, []Attr{}},
    	CharData("\n    "),
    	CharData("Some text here."),
    	CharData("\n  "),
    	EndElement{Name{"tag", "name"}},
    	CharData("\n"),
    	EndElement{Name{"", "body"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  2. src/encoding/xml/marshal_test.go

    	T2      T2
    }
    
    type IndirChardata struct {
    	T1       T1
    	Chardata *string `xml:",chardata"`
    	T2       T2
    }
    
    type DirectChardata struct {
    	T1       T1
    	Chardata string `xml:",chardata"`
    	T2       T2
    }
    
    type IfaceChardata struct {
    	T1       T1
    	Chardata any `xml:",chardata"`
    	T2       T2
    }
    
    type IndirCDATA struct {
    	T1    T1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  3. src/encoding/xml/xml.go

    // An EndElement represents an XML end element.
    type EndElement struct {
    	Name Name
    }
    
    // A CharData represents XML character data (raw text),
    // in which XML escape sequences have been replaced by
    // the characters they represent.
    type CharData []byte
    
    // Copy creates a new copy of CharData.
    func (c CharData) Copy() CharData { return CharData(bytes.Clone(c)) }
    
    // A Comment represents an XML comment of the form <!--comment-->.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  4. src/encoding/xml/read_test.go

    var _ Unmarshaler = (*MyCharData)(nil)
    
    func (m *MyCharData) UnmarshalXMLAttr(attr Attr) error {
    	panic("must not call")
    }
    
    type MyAttr struct {
    	attr string
    }
    
    func (m *MyAttr) UnmarshalXMLAttr(attr Attr) error {
    	m.attr = attr.Value
    	return nil
    }
    
    var _ UnmarshalerAttr = (*MyAttr)(nil)
    
    type MyStruct struct {
    	Data *MyCharData
    	Attr *MyAttr `xml:",attr"`
    
    	Data2 MyCharData
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  5. cmd/api-response.go

    )
    
    // LocationResponse - format for location response.
    type LocationResponse struct {
    	XMLName  xml.Name `xml:"http://s3.amazonaws.com/doc/2006-03-01/ LocationConstraint" json:"-"`
    	Location string   `xml:",chardata"`
    }
    
    // PolicyStatus captures information returned by GetBucketPolicyStatusHandler
    type PolicyStatus struct {
    	XMLName  xml.Name `xml:"http://s3.amazonaws.com/doc/2006-03-01/ PolicyStatus" json:"-"`
    	IsPublic string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  6. src/encoding/xml/marshal.go

    //   - a field with tag "name,attr" becomes an attribute with
    //     the given name in the XML element.
    //   - a field with tag ",attr" becomes an attribute with the
    //     field name in the XML element.
    //   - a field with tag ",chardata" is written as character data,
    //     not as an XML element.
    //   - a field with tag ",cdata" is written as character data
    //     wrapped in one or more <![CDATA[ ... ]]> tags, not as an XML element.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/misc/Base64Util.java

            final byte b0 = DECODE_TABLE[inData.charAt(inIndex)];
            final byte b1 = DECODE_TABLE[inData.charAt(inIndex + 1)];
            final byte b2 = DECODE_TABLE[inData.charAt(inIndex + 2)];
            final byte b3 = DECODE_TABLE[inData.charAt(inIndex + 3)];
            outData[outIndex] = (byte) (b0 << 2 & 0xfc | b1 >> 4 & 0x3);
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_collector_average_min_max.h

    class CalibrationStatisticsCollectorAverageMinMax
        : public CalibrationStatisticsCollectorBase {
     public:
      explicit CalibrationStatisticsCollectorAverageMinMax() { ClearData(); }
    
      void ClearData() override;
    
      void Collect(float min, float max,
                   absl::Span<const int64_t> histogram) override;
    
      std::optional<CalibrationStatistics> GetStatistics() const override;
    
     private:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 03:57:26 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_collector_min_max.h

    // global max = max of given sample inputs
    class CalibrationStatisticsCollectorMinMax
        : public CalibrationStatisticsCollectorBase {
     public:
      explicit CalibrationStatisticsCollectorMinMax() { ClearData(); }
    
      void ClearData() override;
    
      void Collect(float min, float max,
                   absl::Span<const int64_t> histogram) override;
    
      std::optional<CalibrationStatistics> GetStatistics() const override;
    
     private:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 03:57:26 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/suggest/normalizer/HankakuKanaToZenkakuKana.java

            }
            if (s.length() == 1) {
                return hankakuKatakanaToZenkakuKatakana(s.charAt(0)) + "";
            }
            final StringBuilder sb = new StringBuilder(s);
            int i;
            for (i = 0; i < sb.length() - 1; i++) {
                final char originalChar1 = sb.charAt(i);
                final char originalChar2 = sb.charAt(i + 1);
                final char margedChar = mergeChar(originalChar1, originalChar2);
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top