Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for 01234567 (0.35 sec)

  1. pkg/kubelet/cm/cpumanager/policy_static_test.go

    						{"2000m", "2000m"}}), // 0, 4
    				containerName:   "initContainer-0",
    				stAssignments:   state.ContainerCPUAssignments{},
    				stDefaultCPUSet: cpuset.New(0, 1, 2, 3, 4, 5, 6, 7),
    			},
    			expCSetAfterAlloc:  cpuset.New(2, 3, 6, 7),
    			expCSetAfterRemove: cpuset.New(1, 2, 3, 5, 6, 7),
    		},
    	}
    
    	for _, testCase := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  2. src/encoding/hex/hex_test.go

    import (
    	"bytes"
    	"fmt"
    	"io"
    	"strings"
    	"testing"
    )
    
    type encDecTest struct {
    	enc string
    	dec []byte
    }
    
    var encDecTests = []encDecTest{
    	{"", []byte{}},
    	{"0001020304050607", []byte{0, 1, 2, 3, 4, 5, 6, 7}},
    	{"08090a0b0c0d0e0f", []byte{8, 9, 10, 11, 12, 13, 14, 15}},
    	{"f0f1f2f3f4f5f6f7", []byte{0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7}},
    	{"f8f9fafbfcfdfeff", []byte{0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xff}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:30:23 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheEncryptionIntegrationTest.groovy

        }
    
        def "build fails if key is provided via env var but not long enough"() {
            given:
            def insufficientlyLongEncryptionKey = Base64.encoder.encodeToString("01234567".getBytes(StandardCharsets.UTF_8))
    
            when:
            runWithEncryption(EncryptionKind.ENV_VAR, ["help"], [], [(GRADLE_ENCRYPTION_KEY_ENV_KEY): insufficientlyLongEncryptionKey], this::configurationCacheFails)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. src/strings/strings_test.go

    	// 8-byte needle
    	{"xxxxxxxxxxxx", "01234567", false},
    	{"01234567xxxx", "01234567", true},
    	{"xx01234567xx", "01234567", true},
    	{"xxxx01234567", "01234567", true},
    	{"01234567xxxxx"[1:], "01234567", false},
    	{"xxxxx01234567"[:12], "01234567", false},
    	// 9-15-byte needle
    	{"xxxxxxxxxxxxx", "012345678", false},
    	{"012345678xxxx", "012345678", true},
    	{"xx012345678xx", "012345678", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  5. src/strconv/quote.go

    			// single-byte string, possibly not UTF-8
    			value = v
    			break
    		}
    		if !utf8.ValidRune(v) {
    			err = ErrSyntax
    			return
    		}
    		value = v
    		multibyte = true
    	case '0', '1', '2', '3', '4', '5', '6', '7':
    		v := rune(c) - '0'
    		if len(s) < 2 {
    			err = ErrSyntax
    			return
    		}
    		for j := 0; j < 2; j++ { // one digit already; two more
    			x := rune(s[j]) - '0'
    			if x < 0 || x > 7 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/net/InetAddressesTest.java

        assertEquals("1.2.3.4", InetAddresses.toAddrString(InetAddresses.forString("1.2.3.4")));
      }
    
      public void testToAddrStringIPv6() {
        assertEquals(
            "1:2:3:4:5:6:7:8", InetAddresses.toAddrString(InetAddresses.forString("1:2:3:4:5:6:7:8")));
        assertEquals(
            "2001:0:0:4::8", InetAddresses.toAddrString(InetAddresses.forString("2001:0:0:4:0:0:0:8")));
        assertEquals(
            "2001::4:5:6:7:8",
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  7. src/image/jpeg/scan.go

    					//
    					// For progressive images, the interleaved scans (those with nComp > 1)
    					// are traversed as above, but non-interleaved scans are traversed left
    					// to right, top to bottom:
    					//	0 1 2 3
    					//	4 5 6 7
    					// Only DC scans (zigStart == 0) can be interleaved. AC scans must have
    					// only one component.
    					//
    					// To further complicate matters, for non-interleaved scans, there is no
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. src/fmt/scan.go

    			s.error(errBool)
    		}
    		return false
    	}
    	return false
    }
    
    // Numerical elements
    const (
    	binaryDigits      = "01"
    	octalDigits       = "01234567"
    	decimalDigits     = "0123456789"
    	hexadecimalDigits = "0123456789aAbBcCdDeEfF"
    	sign              = "+-"
    	period            = "."
    	exponent          = "eEpP"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/builtins0.go

    	copy([ /* ERROR "different element types" */ ]int8{}, "foo")
    
    	// spec examples
    	var a = [...]int{0, 1, 2, 3, 4, 5, 6, 7}
    	var s = make([]int, 6)
    	var b = make([]byte, 5)
    	n1 := copy(s, a[0:])            // n1 == 6, s == []int{0, 1, 2, 3, 4, 5}
    	n2 := copy(s, s[2:])            // n2 == 4, s == []int{2, 3, 4, 5, 4, 5}
    	n3 := copy(b, "Hello, World!")  // n3 == 5, b == []byte("Hello")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

       (HasOneUse $erf_out),
       (HasOneUse $mul_out1),
      ]>;
    
    // Fetches the output of FC op, from the provided arguments.
    def GetFcOutput : NativeCodeCall<
      "GetFcOutput(&$_builder, $0, $1, $2, $3, $4, $5, $6, $7)">;
    
    // Verifies all values in the provided argument are zero.
    def AllValuesAreZero :  Constraint<CPred<"AllValuesAreZero($0)">>;
    
    def SimplifyDoubleSelectFCZerosLHS : Pat<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
Back to top