Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 97 for cmData (0.11 sec)

  1. src/debug/elf/file.go

    			switch f.Class {
    			case ELFCLASS32:
    				var ch Chdr32
    				chdata := make([]byte, unsafe.Sizeof(ch))
    				if _, err := s.sr.ReadAt(chdata, 0); err != nil {
    					return nil, err
    				}
    				s.compressionType = CompressionType(bo.Uint32(chdata[unsafe.Offsetof(ch.Type):]))
    				s.Size = uint64(bo.Uint32(chdata[unsafe.Offsetof(ch.Size):]))
    				s.Addralign = uint64(bo.Uint32(chdata[unsafe.Offsetof(ch.Addralign):]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/config_selfclient.go

    		return nil, err
    	}
    
    	return &restclient.Config{
    		// Do not limit loopback client QPS.
    		QPS:  -1,
    		Host: "https://" + net.JoinHostPort(host, port),
    		TLSClientConfig: restclient.TLSClientConfig{
    			CAData: caCert,
    		},
    	}, nil
    }
    
    func (s *SecureServingInfo) NewLoopbackClientConfig(token string, loopbackCert []byte) (*restclient.Config, error) {
    	c, err := s.NewClientConfig(loopbackCert)
    	if err != nil || c == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 23 00:06:34 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/xml-coalesce-text/pom.xml

      <description>
        Test that POM parsing properly coalesces text data.
      </description>
    
      <properties>
        <!--
        This checks the coalescing of CHARACTERS and CDATA events. Note that inner whitespace must be retained.
        -->
        <prop0>A <![CDATA[ Test ]]> Project<![CDATA[ ]]>Property</prop0>
    
        <!--
        This checks the coalescing of CHARACTERS events that are interleaved with comments. Note that inner whitespace
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 34.5K bytes
    - Viewed (0)
  4. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/ApacheDirectoryListingParserTest.groovy

            "<a href=\"http://[2h:23:3]\">link</a>"             | "invalid URLs"
            "<a href=\"dir1/subdir1\">link</a>"                 | "links to nested subdirectories"
            "<![CDATA[<a href=\"directory2\">directory2</a>]]>" | "links in CDATA blocks"
            "<a href=\"#anchor\">link</a>"                      | "anchor links"
            "<a name=\"anchorname\">headline</a>"               | "anchor definitions"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/calibration_parameters_test.cc

    limitations under the License.
    ==============================================================================*/
    #include "tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/calibration_parameters.h"
    
    #include <cmath>
    #include <cstdint>
    
    #include <gtest/gtest.h>
    
    namespace stablehlo::quantization {
    namespace {
    
    // Calculates the number of bins from the range and bin width.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 09:09:34 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. pkg/ctrlz/assets/static/css/dark_syntax-1.14.0.css

     * Based on https://github.com/chriskempson/tomorrow-theme
     * @author Rose Pritchard
     */
    
    .token.comment,
    .token.block-comment,
    .token.prolog,
    .token.doctype,
    .token.cdata {
        color: #999;
    }
    
    .token.punctuation {
        color: #ccc;
    }
    
    .token.tag,
    .token.attr-name,
    .token.namespace,
    .token.deleted {
        color: #e2777a;
    }
    
    .token.function-name {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. src/math/sin.go

    package math
    
    /*
    	Floating-point sine and cosine.
    */
    
    // The original C code, the long comment, and the constants
    // below were from http://netlib.sandia.gov/cephes/cmath/sin.c,
    // available from http://www.netlib.org/cephes/cmath.tgz.
    // The go code is a simplified version of the original C.
    //
    //      sin.c
    //
    //      Circular sine
    //
    // SYNOPSIS:
    //
    // double x, y, sin();
    // y = sin( x );
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  8. pkg/scheduler/apis/config/zz_generated.deepcopy.go

    		*out = make([]byte, len(*in))
    		copy(*out, *in)
    	}
    	if in.KeyData != nil {
    		in, out := &in.KeyData, &out.KeyData
    		*out = make([]byte, len(*in))
    		copy(*out, *in)
    	}
    	if in.CAData != nil {
    		in, out := &in.CAData, &out.CAData
    		*out = make([]byte, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExtenderTLSConfig.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 22:02:57 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/calibration_parameters.h

    #ifndef TENSORFLOW_COMPILER_MLIR_QUANTIZATION_STABLEHLO_CC_CALIBRATION_CALIBRATION_PARAMETERS_H_
    #define TENSORFLOW_COMPILER_MLIR_QUANTIZATION_STABLEHLO_CC_CALIBRATION_CALIBRATION_PARAMETERS_H_
    
    #include <algorithm>
    #include <cmath>
    #include <cstdint>
    
    #include "tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.pb.h"
    
    namespace stablehlo::quantization {
    
    // Calculates the bin width from the range and expected number of bins. The
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_collector_histogram.cc

    ==============================================================================*/
    #include "tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_collector_histogram.h"
    
    #include <algorithm>
    #include <cmath>
    #include <cstdint>
    #include <deque>
    #include <optional>
    #include <utility>
    
    #include "absl/types/span.h"
    #include "tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/calibration_parameters.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 09:09:34 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top