Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 350 for CL (0.02 sec)

  1. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/internal/transform/NestedModelRuleDslDetectionIntegrationTest.groovy

            buildFile << '''
    class UnmanagedThing {
        def getSomeProp() {
            return this
        }
        def conf(Closure cl) {
            cl.delegate = this
            cl.call()
        }
    }
    
    class MyPlugin extends RuleSource {
        @Model
        UnmanagedThing thing() { return new UnmanagedThing() }
    }
    apply plugin: MyPlugin
    
    model {
        thing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. doc/next/5-toolchain.md

    <!-- https://go.dev/issue/62737 , https://golang.org/cl/576681,  https://golang.org/cl/577615 -->
    The compiler in Go 1.23 can now overlap the stack frame slots of local variables
    accessed in disjoint regions of a function, which reduces stack usage
    for Go applications.
    
    <!-- https://go.dev/cl/577935 -->
    For 386 and amd64, the compiler will use information from PGO to align certain
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/daemon-protocol/src/test/groovy/org/gradle/tooling/internal/provider/serialization/PayloadSerializerTest.groovy

            def cl = isolated(PayloadInterface).loadClass(PayloadInterface.name)
    
            when:
            def serialized = originator.serialize(cl)
            def received = receiver.deserialize(serialized)
    
            then:
            received != cl
            received.name == cl.name
        }
    
        def "reuses ClassLoaders for multiple invocations"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/lite/tfl_quantizer.cc

    #include "tensorflow/compiler/mlir/lite/schema/schema_generated.h"
    #include "tensorflow/lite/c/c_api_types.h"
    
    using llvm::cl::opt;
    
    // NOLINTNEXTLINE
    static opt<std::string> inputFileName(llvm::cl::Positional,
                                          llvm::cl::desc("<input file>"),
                                          llvm::cl::init("-"));
    
    namespace mlir {
    namespace {
    
    TfLiteStatus QuantizeAnnotatedModel(llvm::StringRef buffer,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/daemon-services/src/test/groovy/org/gradle/internal/daemon/serialization/DaemonSidePayloadClassLoaderFactoryTest.groovy

            given:
            classpathTransformer.transform(_, _) >> [url1, url2]
    
            when:
            def cl = registry.getClassLoaderFor(new VisitableURLClassLoader.Spec("test", [url1, url2]), [null])
    
            then:
            cl instanceof VisitableURLClassLoader
            cl.URLs == [url1, url2] as URL[]
        }
    
        def "creates ClassLoader for jar classpath"() {
            def jarFile = tmpDir.createFile("file1.jar")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ConfigurableClassLoaderHierarchyHasher.java

            }
    
            private boolean addToHash(ClassLoader cl) {
                byte[] knownId = knownClassLoaders.get(cl);
                if (knownId != null) {
                    hasher.putBytes(knownId);
                    return false;
                }
                if (cl instanceof CachingClassLoader || cl instanceof MultiParentClassLoader) {
                    return true;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/GroovyPluginImplementation.groovy

                        println("apply INSTANCE = " + sys.getProperty("INSTANCE"))
    
                        // Call from closure
                        def cl = { p ->
                            println("\$p CLOSURE = " + sys.getProperty("CLOSURE"))
                        }
                        cl("apply")
    
                        project.tasks.register("thing") { t ->
                            t.doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/typeconversion/DefaultTypeConverter.java

                super(cl);
            }
    
            @Override
            protected void convertNumberToNumber(BigDecimal n, NotationConvertResult<? super Integer> result) {
                result.converted(n.intValueExact());
            }
        }
    
        private static class LongNumberConverter extends NumberConverter<Long> {
            public LongNumberConverter(Class<Long> cl) {
                super(cl);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/snapshot/impl/DefaultIsolatableFactoryTest.groovy

            loader.addURL(ClasspathUtil.getClasspathForClass(GroovyObject).toURI().toURL())
            def cl = loader.parseClass("package ${Thing.package.name}; interface Thing extends ${Named.name} { }")
            assert cl != Thing
            assert Named.isAssignableFrom(cl)
            assert cl.name == Thing.name
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 17K bytes
    - Viewed (0)
  10. platforms/core-runtime/client-services/src/test/groovy/org/gradle/internal/daemon/client/serialization/ClientSidePayloadClassLoaderFactoryTest.groovy

            def url2 = new URL("http://localhost/file2.jar")
    
            when:
            def cl = registry.getClassLoaderFor(new VisitableURLClassLoader.Spec("test", [url1, url2]), [null])
    
            then:
            cl instanceof VisitableURLClassLoader
            cl.name == "test-client-payload-loader"
            cl.URLs == [url1, url2] as URL[]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top