Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,299 for 21$ (0.04 sec)

  1. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/ClassMethodNameStackTraceSpecTest.groovy

            spec.isSatisfiedBy(new StackTraceElement("ClassName", "methodName", "OtherFile.java", 21))
            spec.isSatisfiedBy(new StackTraceElement('ClassName$1', "methodName", "ClassName.java", 21))
            spec.isSatisfiedBy(new StackTraceElement('ClassName$1$22', "methodName", "ClassName.kt", 21))
        }
    
        def "rejects elements whose class or method name does not match"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. src/packaging/common/scripts/preinst

            # Create fess group if not existing
            if ! getent group "$FESS_GROUP" > /dev/null 2>&1 ; then
                echo -n "Creating $FESS_GROUP group..."
                addgroup --quiet --system "$FESS_GROUP"
                echo " OK"
            fi
    
            # Create fess user if not existing
            if ! id $FESS_USER > /dev/null 2>&1 ; then
                echo -n "Creating $FESS_USER user..."
                adduser --quiet \
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 01 09:48:15 UTC 2016
    - 2.3K bytes
    - Viewed (0)
  3. src/internal/types/testdata/fixedbugs/issue59338a.go

    var _ func(int) = g /* ERROR "implicitly instantiated function in assignment requires go1.21 or later" */
    var _ func(int) string = h[ /* ERROR "partially instantiated function in assignment requires go1.21 or later" */ int]
    
    func f1(func(int))      {}
    func f2(int, func(int)) {}
    
    func _() {
    	f1(g /* ERROR "implicitly instantiated function as argument requires go1.21 or later" */)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 17:35:44 UTC 2023
    - 727 bytes
    - Viewed (0)
  4. 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)
  5. .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)
  6. test/slice3err.go

    	_ = array[i:1:2]
    	_ = array[i:2:1] // ERROR "invalid slice index|invalid slice indices|inverted slice"
    	_ = array[1:j:2]
    	_ = array[2:j:1] // ERROR "invalid slice index|invalid slice indices"
    	_ = array[1:2:k]
    	_ = array[2:1:k] // ERROR "invalid slice index|invalid slice indices|inverted slice"
    	
    	_ = slice[1:2]
    	_ = slice[2:1] // ERROR "invalid slice index|invalid slice indices|inverted slice"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 14 21:28:48 UTC 2020
    - 5.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rocache/ReadOnlyDependencyCacheWithinContainerTest.groovy

                .succeeds("resolve")
    
            then:
            result.with {
                assertOutputContains("/gradle-home/caches/modules-2/files-2.1/org.readonly/core/1.0/")
                assertOutputContains("/gradle-home/caches/modules-2/files-2.1/org.readonly/util/1.0/")
            }
    
            cleanup:
            container.stopContainer()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  8. 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)
  9. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/graph/CachingDirectedGraphWalkerTest.groovy

            when:
            walker.add(0)
    
            and:
            _ * graph.getNodeValues(0, _, _) >> { args -> args[2] << 4; args[2] << 1 }
            _ * graph.getNodeValues(1, _, _) >> { args -> args[2] << 4; args[2] << 2 }
            _ * graph.getNodeValues(2, _, _) >> { args -> args[2] << 1; args[2] << 3 }
            _ * graph.getNodeValues(3, _, _) >> { args -> args[2] << 2 }
            _ * graph.getNodeValues(4, _, _) >> { args -> args[2] << 5 }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/AbstractComponentSelectionRulesIntegrationTest.groovy

                    }
                    candidates << selection.candidate.version
                }
                """,
            "select 2.1": """{ ComponentSelection selection ->
                    if (selection.candidate.version != '2.1') {
                        selection.reject("not 2.1")
                    }
                    candidates << selection.candidate.version
                }
                """,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top