Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for parseInt32 (0.15 sec)

  1. pkg/controller/job/indexed_job_utils.go

    	if value, ok := pod.Annotations[batch.JobIndexIgnoredFailureCountAnnotation]; ok {
    		return parseInt32(logger, value)
    	}
    	return 0
    }
    
    func parseInt32(logger klog.Logger, vStr string) int32 {
    	if vInt, err := strconv.Atoi(vStr); err != nil {
    		logger.Error(err, "Failed to parse the value", "value", vStr)
    		return 0
    	} else if vInt < 0 || vInt > math.MaxInt32 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 00:44:53 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  2. src/encoding/asn1/asn1.go

    	}
    
    	// Shift up and down in order to sign extend the result.
    	ret <<= 64 - uint8(len(bytes))*8
    	ret >>= 64 - uint8(len(bytes))*8
    	return
    }
    
    // parseInt32 treats the given bytes as a big-endian, signed integer and returns
    // the result.
    func parseInt32(bytes []byte) (int32, error) {
    	if err := checkInteger(bytes); err != nil {
    		return 0, err
    	}
    	ret64, err := parseInt64(bytes)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  3. src/encoding/asn1/asn1_test.go

    	{[]byte{}, false, 0},
    	{[]byte{0x00, 0x7f}, false, 0},
    	{[]byte{0xff, 0xf0}, false, 0},
    }
    
    func TestParseInt32(t *testing.T) {
    	for i, test := range int32TestData {
    		ret, err := parseInt32(test.in)
    		if (err == nil) != test.ok {
    			t.Errorf("#%d: Incorrect error result (did fail? %v, expected: %v)", i, err == nil, test.ok)
    		}
    		if test.ok && ret != test.out {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 29 18:24:36 UTC 2023
    - 43.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // false.
    // TODO(chandlerc): Find a better way to refactor flag and environment parsing
    // out of both gtest-port.cc and gtest.cc to avoid exporting this utility
    // function.
    bool ParseInt32(const Message& src_text, const char* str, Int32* value);
    
    // Parses a bool/Int32/string from the environment variable
    // corresponding to the given Google Test flag.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // false.
    // TODO(chandlerc): Find a better way to refactor flag and environment parsing
    // out of both gtest-port.cc and gtest.cc to avoid exporting this utility
    // function.
    bool ParseInt32(const Message& src_text, const char* str, Int32* value);
    
    // Parses a bool/Int32/string from the environment variable
    // corresponding to the given Google Test flag.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
Back to top