Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 01234567 (0.42 sec)

  1. 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)
  2. doc/go_spec.html

    copy(dst, src []T) int
    copy(dst []byte, src string) int
    </pre>
    
    <p>
    Examples:
    </p>
    
    <pre>
    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 is []int{0, 1, 2, 3, 4, 5}
    n2 := copy(s, s[2:])            // n2 == 4, s is []int{2, 3, 4, 5, 4, 5}
    n3 := copy(b, "Hello, World!")  // n3 == 5, b is []byte("Hello")
    </pre>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  3. src/net/netip/netip_test.go

    		// IPv4 field has value >255
    		"192.168.300.1",
    		// IPv4 with too many fields
    		"192.168.0.1.5.6",
    		// IPv6 with not enough fields
    		"1:2:3:4:5:6:7",
    		// IPv6 with too many fields
    		"1:2:3:4:5:6:7:8:9",
    		// IPv6 with 8 fields and a :: expander
    		"1:2:3:4::5:6:7:8",
    		// IPv6 with a field bigger than 2b
    		"fe801::1",
    		// IPv6 with non-hex values in field
    		"fe80:tail:scal:e::",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	LINUX_REBOOT_CMD_HALT                       = 0xcdef0123
    	LINUX_REBOOT_CMD_KEXEC                      = 0x45584543
    	LINUX_REBOOT_CMD_POWER_OFF                  = 0x4321fedc
    	LINUX_REBOOT_CMD_RESTART                    = 0x1234567
    	LINUX_REBOOT_CMD_RESTART2                   = 0xa1b2c3d4
    	LINUX_REBOOT_CMD_SW_SUSPEND                 = 0xd000fce2
    	LINUX_REBOOT_MAGIC1                         = 0xfee1dead
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    roll(t, shift=2, axis=0) ==> [3, 4, 0, 1, 2]
    
    # shifting along multiple dimensions
    # 't' is [[0, 1, 2, 3, 4], [5, 6, 7, 8, 9]]
    roll(t, shift=[1, -2], axis=[0, 1]) ==> [[7, 8, 9, 5, 6], [2, 3, 4, 0, 1]]
    
    # shifting along the same axis multiple times
    # 't' is [[0, 1, 2, 3, 4], [5, 6, 7, 8, 9]]
    roll(t, shift=[2, -3], axis=[1, 1]) ==> [[1, 2, 3, 4, 0], [6, 7, 8, 9, 5]]
    ```
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top