Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 723 for 21$ (0.06 sec)

  1. src/internal/types/testdata/fixedbugs/issue66285.go

    // -lang=go1.21
    
    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Note: Downgrading to go1.13 requires at least go1.21,
    //       hence the need for -lang=go1.21 at the top.
    
    //go:build go1.13
    
    package p
    
    import "io"
    
    // A "duplicate method" error should be reported for
    // all these interfaces, irrespective of which package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 766 bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/sha3/keccakf.go

    		a[4] = bc4 ^ (bc1 &^ bc0)
    
    		t = a[15] ^ d0
    		bc3 = bits.RotateLeft64(t, 41)
    		t = a[21] ^ d1
    		bc4 = bits.RotateLeft64(t, 2)
    		t = a[2] ^ d2
    		bc0 = bits.RotateLeft64(t, 62)
    		t = a[8] ^ d3
    		bc1 = bits.RotateLeft64(t, 55)
    		t = a[14] ^ d4
    		bc2 = bits.RotateLeft64(t, 39)
    		a[15] = bc0 ^ (bc2 &^ bc1)
    		a[21] = bc1 ^ (bc3 &^ bc2)
    		a[2] = bc2 ^ (bc4 &^ bc3)
    		a[8] = bc3 ^ (bc0 &^ bc4)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. .github/workflows/ci.yml

        steps:
          - name: 'Check out repository'
            uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
          - name: 'Set up JDK 21'
            uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1
            with:
              java-version: 21
              distribution: 'zulu'
              server-id: sonatype-nexus-snapshots
              server-username: CI_DEPLOY_USERNAME
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 16:25:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. buildscripts/verify-build.sh

    	export MINIO_ROOT_PASSWORD=$SECRET_KEY
    	"${MINIO[@]}" server "${WORK_DIR}/fs-disk" >"$WORK_DIR/fs-minio.log" 2>&1 &
    
    	"${WORK_DIR}/mc" ready verify
    }
    
    function start_minio_erasure() {
    	"${MINIO[@]}" server "${WORK_DIR}/erasure-disk1" "${WORK_DIR}/erasure-disk2" "${WORK_DIR}/erasure-disk3" "${WORK_DIR}/erasure-disk4" >"$WORK_DIR/erasure-minio.log" 2>&1 &
    
    	"${WORK_DIR}/mc" ready verify
    }
    
    function start_minio_erasure_sets() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 19:28:51 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/CacheLayoutTest.groovy

            then:
            cacheLayout.name == 'files'
            cacheLayout.key == 'files-2.1'
            cacheLayout.version == CacheVersion.parse("2.1")
            cacheLayout.version.toString() == '2.1'
            cacheLayout.getPath(new File('some/dir')) == new File('some/dir/files-2.1')
        }
    
        def "use metadata store layout"() {
            when:
            CacheLayout cacheLayout = CacheLayout.META_DATA
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 12:06:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/versions/toolchain_go121.go

    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build go1.21
    // +build go1.21
    
    package versions
    
    func init() {
    	if Compare(toolchain, Go1_21) < 0 {
    		toolchain = Go1_21
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 291 bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"BoolValue", Func, 21},
    		{"Debug", Func, 21},
    		{"DebugContext", Func, 21},
    		{"Default", Func, 21},
    		{"Duration", Func, 21},
    		{"DurationValue", Func, 21},
    		{"Error", Func, 21},
    		{"ErrorContext", Func, 21},
    		{"Float64", Func, 21},
    		{"Float64Value", Func, 21},
    		{"Group", Func, 21},
    		{"GroupValue", Func, 21},
    		{"Handler", Type, 21},
    		{"HandlerOptions", Type, 21},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  8. docs/bucket/replication/test_del_marker_proxying.sh

    minio server --address ":9001" --console-address ":10000" /tmp/sitea/{1...4}/disk{1...4} /tmp/sitea/{5...8}/disk{1...4} >/tmp/sitea_1.log 2>&1 &
    minio server --address ":9002" --console-address ":11000" /tmp/siteb/{1...4}/disk{1...4} /tmp/siteb/{5...8}/disk{1...4} >/tmp/siteb_1.log 2>&1 &
    echo "done"
    
    if [ ! -f ./mc ]; then
    	wget --quiet -O mc https://dl.minio.io/client/mc/release/linux-amd64/mc &&
    		chmod +x mc
    fi
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 11:38:26 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. buildscripts/rewrite-old-new.sh

    		exit 1
    	fi
    
    	(cd "${MC_BUILD_DIR}" && go build -o "$WORK_DIR/mc")
    
    	# remove mc source.
    	purge "${MC_BUILD_DIR}"
    
    	"${MINIO_OLD[@]}" --address ":$start_port" "${WORK_DIR}/xl{1...16}" >"${WORK_DIR}/server1.log" 2>&1 &
    	pid=$!
    	disown $pid
    
    	"${WORK_DIR}/mc" ready minio/
    
    	if ! ps -p ${pid} 1>&2 >/dev/null; then
    		echo "server1 log:"
    		cat "${WORK_DIR}/server1.log"
    		echo "FAILED"
    		purge "$WORK_DIR"
    		exit 1
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/counter/countertest/countertest_go121.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build go1.21
    
    package countertest
    
    import "testing"
    
    func init() {
    	// Extra safety check for go1.21+.
    	if !testing.Testing() {
    		panic("use of this package is disallowed in non-testing code")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 363 bytes
    - Viewed (0)
Back to top