Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 63 for hasFiles (0.15 sec)

  1. platforms/software/version-control/src/main/java/org/gradle/vcs/internal/DefaultVcsMappingsStore.java

        @Override
        public VcsResolver asResolver() {
            return this;
        }
    
        @Nullable
        @Override
        public VersionControlSpec locateVcsFor(ModuleComponentSelector selector) {
            if (!hasRules()) {
                return null;
            }
            VcsMappingInternal mapping = vcsMappingFactory.create(selector);
            applyTo(mapping);
            if (mapping.hasRepository()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classpath/TransformedClassPathTest.groovy

            then:
            cp.asFiles == outputClassPath.asFiles
            cp.findTransformedEntryFor(file(original)) == (transformed != null ? file(transformed) : null)
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 11:14:30 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/SourcePathProviderTest.kt

                    scriptFile = null,
                    projectDir = folder("project"),
                    gradleHomeDir = folder("gradle"),
                    sourceDistributionResolver = mock()
                ).asFiles,
                hasItems(
                    folder("project/buildSrc/src/main/foo"),
                    folder("project/buildSrc/src/main/bar"),
                    folder("gradle/src/gradle-foo"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 17:35:41 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. .github/workflows/maven.yml

          uses: actions/setup-java@v2
          with:
            java-version: '17'
            distribution: 'temurin'
        - uses: actions/cache@v1
          with:
            path: ~/.m2/repository
            key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
            restore-keys: |
              ${{ runner.os }}-maven-
        - name: Build with Maven
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Fri Nov 17 21:22:20 UTC 2023
    - 822 bytes
    - Viewed (0)
  5. .github/workflows/codeql-analysis.yml

        - name: Cache Gradle Modules
          uses: actions/cache@v4
          with:
            path: |
              ~/.gradle/caches/modules-2/
              ~/.gradle/caches/build-cache-1/
              ~/.gradle/caches/signatures/
              ~/.gradle/caches/keyrings/
            key: ${{ runner.os }}-gradle-cache-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/action/FessUserBean.java

            return user.isEditable();
        }
    
        public boolean hasRole(final String role) {
            return stream(user.getRoleNames()).get(stream -> stream.anyMatch(s -> s.equals(role)));
        }
    
        public boolean hasRoles(final String[] acceptedRoles) {
            return stream(user.getRoleNames())
                    .get(stream -> stream.anyMatch(s1 -> stream(acceptedRoles).get(s3 -> s3.anyMatch(s2 -> s2.equals(s1)))));
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. .github/workflows/maven.yml

          uses: actions/setup-java@v2
          with:
            java-version: '17'
            distribution: 'temurin'
        - uses: actions/cache@v1
          with:
            path: ~/.m2/repository
            key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
            restore-keys: |
              ${{ runner.os }}-maven-
        - name: Build with Maven
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Fri Nov 17 21:30:22 UTC 2023
    - 822 bytes
    - Viewed (0)
  8. .github/workflows/codeql-analysis.yml

          with:
            java-version: '17'
            distribution: 'temurin'
        - name: Cache Maven packages
          uses: actions/cache@v4
          with:
            path: ~/.m2/repository
            key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
            restore-keys: ${{ runner.os }}-m2
        - name: Build with Maven
          run: mvn -B package --file pom.xml
    
        - name: Perform CodeQL Analysis
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 10 03:25:34 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. .github/workflows/maven.yml

          uses: actions/setup-java@v4
          with:
            java-version: '17'
            distribution: 'temurin'
        - uses: actions/cache@v4
          with:
            path: ~/.m2/repository
            key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
            restore-keys: |
              ${{ runner.os }}-maven-
        - name: Download Plugins with Maven
          run: mvn -B antrun:run --file pom.xml
        - name: Build with Maven
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 10 03:25:34 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/DistributionFactoryTest.groovy

            def result = dist.getToolingImplementationClasspath(progressLoggerFactory, buildProgressListener, customUserHome, cancellationToken)
    
            expect:
            result.asFiles.name as Set == ['gradle-core-0.9.jar', 'gradle-launcher-0.9.jar'] as Set
            (result.asFiles.path as Set).every { it.contains('customUserHome')}
        }
    
        def usesZipDistributionInstalledIntoSpecifiedUserHomeDirAsImplementationClasspath() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.7K bytes
    - Viewed (0)
Back to top