Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for 12p6 (0.05 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    	SYS_CONNECTS                        = 0x4B5 // 1205
    	SYS_CONNECTSERVER                   = 0x4B5 // 1205
    	SYS_DISCONNE                        = 0x4B6 // 1206
    	SYS_DISCONNECTSERVER                = 0x4B6 // 1206
    	SYS_JOINWORK                        = 0x4B7 // 1207
    	SYS_JOINWORKUNIT                    = 0x4B7 // 1207
    	SYS_LEAVEWOR                        = 0x4B8 // 1208
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  2. src/crypto/aes/block.go

    	byteorder.BePutUint32(dst[8:12], s2)
    	byteorder.BePutUint32(dst[12:16], s3)
    }
    
    // Decrypt one block from src into dst, using the expanded key xk.
    func decryptBlockGo(xk []uint32, dst, src []byte) {
    	_ = src[15] // early bounds check
    	s0 := byteorder.BeUint32(src[0:4])
    	s1 := byteorder.BeUint32(src[4:8])
    	s2 := byteorder.BeUint32(src[8:12])
    	s3 := byteorder.BeUint32(src[12:16])
    
    	// First round just XORs input with key.
    	s0 ^= xk[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. src/internal/syscall/unix/siginfo_linux.go

    	_           [is64bit]int32 // Extra padding for 64-bit hosts only.
    
    	// End of common part. Beginning of signal-specific part.
    
    	Pid    int32
    	Uid    uint32
    	Status int32
    
    	// Pad to 128 bytes.
    	_ [128 - (6+is64bit)*4]byte
    }
    
    const (
    	// Possible values for SiginfoChild.Code field.
    	_CLD_EXITED    int32 = 1
    	_CLD_KILLED          = 2
    	_CLD_DUMPED          = 3
    	_CLD_TRAPPED         = 4
    	_CLD_STOPPED         = 5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 01:23:00 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. src/make.bash

    #
    # GOROOT_BOOTSTRAP: A working Go tree >= Go 1.20.6 for bootstrap.
    # If $GOROOT_BOOTSTRAP/bin/go is missing, $(go env GOROOT) is
    # tried for all "go" in $PATH. By default, one of $HOME/go1.20.6,
    # $HOME/sdk/go1.20.6, or $HOME/go1.4, whichever exists, in that order.
    # We still check $HOME/go1.4 to allow for build scripts that still hard-code
    # that name even though they put newer Go toolchains there.
    
    bootgo=1.20.6
    
    set -e
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. src/make.rc

    vflag=()
    if(~ $1 -v) {
    	vflag=(-v)
    	shift
    }
    
    fn bootstrapenv {
    	GOROOT=$GOROOT_BOOTSTRAP GO111MODULE=off GOENV=off GOOS=() GOARCH=() GOEXPERIMENT=() GOFLAGS=() $*
    }
    
    bootgo = 1.20.6
    GOROOT = `{cd .. && pwd}
    goroot_bootstrap_set = 'true'
    if(! ~ $#GOROOT_BOOTSTRAP 1){
    	goroot_bootstrap_set = 'false'
    	GOROOT_BOOTSTRAP = $home/go1.4
    	for(d in sdk/go$bootgo go$bootgo)
    		if(test -d $home/$d)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/BasicParsingTest.kt

                        )
                        name = j
                    )
                    args = [
                        FunctionArgument.Positional [indexes: 12..16, line/column: 1/13..1/17, file: test] (
                            expr = PropertyAccess [indexes: 12..16, line/column: 1/13..1/17, file: test] (
                                name = test
                            )
                        )
                    ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  7. pilot/pkg/autoregistration/controller_test.go

    	t.Run("unverified client", func(t *testing.T) {
    		p := fakeProxy("1.2.3.6", wgA, "nw1", "")
    
    		// Should fail
    		assert.Error(t, c1.OnConnect(makeConn(p, time.Now())))
    		checkNoEntryOrFail(t, store, wgA, p)
    	})
    	t.Run("wrong SA client", func(t *testing.T) {
    		p := fakeProxy("1.2.3.6", wgA, "nw1", "wrong")
    
    		// Should fail
    		assert.Error(t, c1.OnConnect(makeConn(p, time.Now())))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractSmokeTest.groovy

            // https://plugins.gradle.org/plugin/net.ltgt.apt
            static apt = Versions.of("0.21")
    
            // https://plugins.gradle.org/plugin/io.gitlab.arturbosch.detekt
            static detekt = Versions.of("1.23.6")
    
            // https://plugins.gradle.org/plugin/com.diffplug.spotless
            static spotless = Versions.of("6.25.0")
    
            // https://plugins.gradle.org/plugin/com.google.cloud.tools.jib
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 08:14:32 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/dependencies/classes-as-dependencies.md

        ```
    
    === "Python 3.9+"
    
        ```Python hl_lines="11-15"
        {!> ../../../docs_src/dependencies/tutorial002_an_py39.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="12-16"
        {!> ../../../docs_src/dependencies/tutorial002_an.py!}
        ```
    
    === "Python 3.10+ non-Annotated"
    
        !!! tip
            Prefer to use the `Annotated` version if possible.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Client-TLSv12-ClientCert-Ed25519

    000002f0  80 84 5e ca 36 b2 fa d0  29 47 1c c2 de 4e 1d 81  |..^.6...)G...N..|
    00000300  14 66 0a 26 6f 21 5f d5  b5 54 2e 37 f1 7e b1 90  |.f.&o!_..T.7.~..|
    00000310  a0 57 ab 40 81 cf e5 77  29 23 54 fa 12 76 1a 4a  |.W.@...w)#T..v.J|
    00000320  66 c0 52 08 07 3c 3c 56  06 08 02 df 9f 75 75 5e  |f.R..<<V.....uu^|
    00000330  0c d7 23 d5 b5 76 83 64  1f c2 9c dd 7d b0 c8 91  |..#..v.d....}...|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top