Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 63 for hasFiles (0.18 sec)

  1. subprojects/core-api/src/main/java/org/gradle/vcs/internal/VcsMappingsStore.java

            @Nullable
            @Override
            public VersionControlSpec locateVcsFor(ModuleComponentSelector selector) {
                return null;
            }
    
            @Override
            public boolean hasRules() {
                return false;
            }
        };
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. .github/workflows/test.yml

          - uses: actions/cache@v4
            id: cache
            with:
              path: ${{ env.pythonLocation }}
              key: ${{ runner.os }}-python-${{ env.pythonLocation }}-pydantic-v2-${{ hashFiles('pyproject.toml', 'requirements-tests.txt', 'requirements-docs-tests.txt') }}-test-v08
          - name: Install Dependencies
            if: steps.cache.outputs.cache-hit != 'true'
            run: pip install -r requirements-tests.txt
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 10 00:30:25 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/initialization/loadercache/FileClasspathHasher.groovy

    /**
     * Creates snapshot based on file paths.
     */
    class FileClasspathHasher implements ClasspathHasher {
        @Override
        HashCode hash(ClassPath classpath) {
            def hasher = Hashing.newHasher()
            classpath.asFiles*.path.each { String path ->
                hasher.putString(path)
            }
            return hasher.hash();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 18 07:07:38 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/KotlinScriptClassPathProvider.kt

    internal
    fun gradleKotlinDslOf(project: Project): List<File> =
        kotlinScriptClassPathProviderOf(project).run {
            gradleKotlinDsl.asFiles
        }
    
    
    fun gradleKotlinDslJarsOf(project: Project): FileCollection =
        project.fileCollectionOf(
            kotlinScriptClassPathProviderOf(project).gradleKotlinDslJars.asFiles.filter(::isGradleKotlinDslJar),
            "gradleKotlinDsl"
        )
    
    
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/serialize/ClassPathEncodingExtensions.kt

        }
    }
    
    
    internal
    fun Encoder.writeDefaultClassPath(classPath: ClassPath) {
        writeCollection(classPath.asFiles) {
            writeFile(it)
        }
    }
    
    
    internal
    fun Encoder.writeTransformedClassPath(classPath: TransformedClassPath) {
        writeCollection(classPath.asFiles.zip(classPath.asTransformedFiles)) {
            writeFile(it.first)
            writeFile(it.second)
        }
    }
    
    
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. platforms/core-execution/workers/src/test/groovy/org/gradle/process/internal/worker/child/WorkerProcessClassPathProviderTest.groovy

            1 * cacheBuilder.open() >> { initializer.accept(cache); return cache }
            _ * cache.getBaseDir() >> cacheDir
            1 * cache.close()
            0 * cache._
            classpath.asFiles == [jarFile]
            jarFile.file
        }
    
        def reusesTheCachedClasspath() {
            def cacheDir = tmpDir.testDirectory
            def jarFile = cacheDir.file('gradle-worker.jar')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:54 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java

                    if (user.hasRoles(fessConfig.getAuthenticationAdminRolesAsArray())) {
                        return;
                    }
                    final Method executeMethod = resource.getExecuteMethod();
                    final Secured secured = executeMethod.getAnnotation(Secured.class);
                    if (secured != null && user.hasRoles(secured.value())) {
                        return;
                    }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/base/FessLoginAction.java

            return getUserBean().map(this::redirectByUser).orElse(asHtml(virtualHost(path_Login_IndexJsp)));
        }
    
        protected HtmlResponse redirectByUser(final FessUserBean user) {
            if (user.hasRoles(fessConfig.getAuthenticationAdminRolesAsArray())) {
                return redirect(AdminDashboardAction.class);
            }
            final Class<? extends FessAdminAction> actionClass = AdminAction.getAdminActionClass(user);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/DependencyClassPathProviderTest.groovy

        def "uses modules to determine gradle API classpath"() {
            when:
            def classpath = provider.findClassPath("GRADLE_API")
    
            then:
            classpath.asFiles.collect{it.name} == [
                "gradle-worker-main-runtime",
                "gradle-launcher-runtime",
                "gradle-cli-runtime",
                "gradle-workers-runtime",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/DynamicModulesClassPathProviderTest.groovy

            def provider = new DynamicModulesClassPathProvider(moduleRegistry, pluginModuleRegistry)
    
            when:
            def classpath = provider.findClassPath("GRADLE_EXTENSIONS")
    
            then:
            classpath.asFiles.collect { it.name } == [
                "gradle-workers.jar",
                "gradle-dependency-management.jar",
                "gradle-plugin-use.jar",
                "gradle-instrumentation-declarations.jar",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 18 09:54:09 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top