Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 97 for cmData (0.13 sec)

  1. pkg/scheduler/apis/config/types.go

    	// KeyData takes precedence over KeyFile
    	KeyData []byte `datapolicy:"security-key"`
    	// CAData holds PEM-encoded bytes (typically read from a root certificates bundle).
    	// CAData takes precedence over CAFile
    	CAData []byte
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. src/encoding/xml/xml_test.go

    	"<t a=''",
    	"<t/><![",
    	"<t/><![C",
    	"<t/><![CDATA[d",
    	"<t/><![CDATA[d]",
    	"<t/><![CDATA[d]]",
    
    	// other Syntax errors
    	"<>",
    	"<t/a",
    	"<0 />",
    	"<?0 >",
    	//	"<!0 >",	// let the Token() caller handle
    	"</0>",
    	"<t 0=''>",
    	"<t a='&'>",
    	"<t a='<'>",
    	"<t>&nbspc;</t>",
    	"<t a>",
    	"<t a=>",
    	"<t a=v>",
    	//	"<![CDATA[d]]>",	// let the Token() caller handle
    	"<t></e>",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/numerical_utils_test.cc

    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/compiler/mlir/lite/quantization/numerical_utils.h"
    
    #include <cmath>
    #include <optional>
    
    #include <gtest/gtest.h>
    #include "absl/types/optional.h"
    
    namespace mlir {
    namespace quant {
    
    namespace {
    
    double ComposeScale(const QuantizedMultiplier& input) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 01:38:03 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. cmd/bucket-targets.go

    func parseBucketTargetConfig(bucket string, cdata, cmetadata []byte) (*madmin.BucketTargets, error) {
    	var (
    		data []byte
    		err  error
    		t    madmin.BucketTargets
    		meta map[string]string
    	)
    	if len(cdata) == 0 {
    		return nil, nil
    	}
    	data = cdata
    	json := jsoniter.ConfigCompatibleWithStandardLibrary
    	if len(cmetadata) != 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 01:09:56 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/xml/DomUtil.java

         * @param cdataSection
         *            CDATAセクション。{@literal null}であってはいけません
         * @param buf
         *            文字列バッファ。{@literal null}であってはいけません
         */
        public static void appendCDATASection(final CDATASection cdataSection, final StringBuilder buf) {
            assertArgumentNotNull("cdataSection", cdataSection);
            assertArgumentNotNull("buf", buf);
    
            buf.append("<![CDATA[");
            buf.append(cdataSection.getData());
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeStaxBuilder.java

                        XmlNode child = build(parser, trim, locationBuilder);
                        children.add(child);
                    }
                } else if (eventType == XMLStreamReader.CHARACTERS || eventType == XMLStreamReader.CDATA) {
                    String text = parser.getText();
                    lValue = lValue != null ? lValue + text : text;
                } else if (eventType == XMLStreamReader.END_ELEMENT) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/quantization/numerical_utils.cc

    ==============================================================================*/
    #include "tensorflow/compiler/mlir/lite/quantization/numerical_utils.h"
    
    #include <assert.h>
    
    #include <algorithm>
    #include <cmath>
    #include <limits>
    #include <optional>
    
    #include "absl/types/optional.h"
    
    namespace mlir {
    namespace quant {
    
    // Converts a double-precision floating-point multiplier to a quantized
    // multiplier.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 17 19:57:04 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitTestFailureIntegrationTest.groovy

                        fail("failed");
                    }
    
                    @Test
                    public void broken() {
                        throw new IllegalStateException("html: <> cdata: ]]>");
                    }
                }
            """.stripIndent()
            file('src/test/java/org/gradle/CustomException.java') << """
                package org.gradle;
    
                ${testFrameworkImports}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 18K bytes
    - Viewed (0)
  9. pkg/kubelet/certificate/transport.go

    	})
    
    	// Zero out all existing TLS options since our new transport enforces them.
    	clientConfig.CertData = nil
    	clientConfig.KeyData = nil
    	clientConfig.CertFile = ""
    	clientConfig.KeyFile = ""
    	clientConfig.CAData = nil
    	clientConfig.CAFile = ""
    	clientConfig.Insecure = false
    	clientConfig.NextProtos = nil
    
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 08 13:57:45 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_traits.h

    #ifndef TENSORFLOW_COMPILER_MLIR_QUANTIZATION_COMMON_QUANTIZATION_LIB_QUANTIZATION_TRAITS_H_
    #define TENSORFLOW_COMPILER_MLIR_QUANTIZATION_COMMON_QUANTIZATION_LIB_QUANTIZATION_TRAITS_H_
    
    #include <cmath>
    #include <cstdint>
    #include <vector>
    
    #include "mlir/Dialect/Quant/QuantTypes.h"  // from @llvm-project
    #include "mlir/IR/BuiltinTypeInterfaces.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top