Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for fromSpec (0.23 sec)

  1. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/FileTreeCodec.kt

                roots.add(toSpec(sourceTree))
            }
        }
    
        private
        fun fromSpec(spec: FileTreeSpec): FileTreeInternal = when (spec) {
            is AdaptedFileTreeSpec -> fileCollectionFactory.treeOf(spec.tree)
            is FilteredFileTreeSpec -> spec.tree.matching(spec.patterns)
            is FilteredMinimalFileTreeSpec -> fromSpec(spec.tree).matching(spec.patterns)
            is WrappedFileCollectionTreeSpec -> spec.collection.asFileTree
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/ApiGroovyCompiler.java

            this.projectLayout = projectLayout;
        }
    
        private static abstract class IncrementalCompilationCustomizer extends CompilationCustomizer {
            static IncrementalCompilationCustomizer fromSpec(GroovyJavaJointCompileSpec spec, ApiCompilerResult result) {
                if (spec.incrementalCompilationEnabled()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  3. security/tools/jwt/samples/gen-jwt.py

    def main(args):
        """Generates a signed JSON Web Token from local private key."""
        with open(args.key) as f:
            pem_data = f.read()
        f.closed
    
        pem_data_encode = pem_data.encode("utf-8")
        key = jwk.JWK.from_pem(pem_data_encode)
    
        if args.jwks:
            with open(args.jwks, "w+") as fout:
                fout.write("{ \"keys\":[ ")
                fout.write(key.export(private_key=False))
                fout.write("]}")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 16:38:57 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top