Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 218 for CL (0.05 sec)

  1. 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)
  2. 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)
  3. testing/integ-test/src/integTest/groovy/org/gradle/integtests/CustomPluginIntegrationTest.groovy

            Project.class.classLoader.loadClass('${implClassName}')
            def cl
            try {
                cl = getClass().classLoader
                cl.loadClass('${implClassName}')
                assert false: 'should fail'
            } catch (ClassNotFoundException e) {
                // expected
            } finally {
                if (cl instanceof URLClassLoader) {
                    cl.close()
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/WellKnownClassLoaderRegistry.java

        private final PayloadClassLoaderRegistry delegate;
    
        static {
            ImmutableSet.Builder<ClassLoader> builder = ImmutableSet.builder();
            for (ClassLoader cl = PLATFORM_CLASS_LOADER; cl != null; cl = cl.getParent()) {
                builder.add(cl);
            }
            PLATFORM_CLASS_LOADERS = builder.build();
        }
    
        public WellKnownClassLoaderRegistry(PayloadClassLoaderRegistry delegate) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_quantizable_spots_as_functions_drq.cc

          llvm::cl::desc("The minimum required number of elements in a weight "
                         "array to apply quantization.")};
    
      Option<QuantMethod> quantization_method_{
          *this, "quantization-method",
          llvm::cl::init(tensorflow::quantization::QuantizationMethod::
                             METHOD_DYNAMIC_RANGE_INT8),
          llvm::cl::desc("Choose quantization method."),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/internal/classpath/DefaultCachedClasspathTransformerTest.groovy

            def original2 = cl.thing(123)
            def result2 = recreate(original2).call()
    
            result2 == "123"
        }
    
        def "class can include only serializable lambda"() {
            given:
            def cl = transformAndLoad(ClassWithSerializableLambda, ClassWithSerializableLambda.SerializableThing)
    
            expect:
            def original = cl.thing(123)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/DefaultSerializerTest.groovy

            DefaultSerializer serializer = new DefaultSerializer(classLoader)
    
            Class cl = classLoader.parseClass('package org.gradle.cache; class TestObj implements Serializable { }')
            Object o = cl.newInstance(new Object[0])
    
            when:
            def r = serialize(o, serializer)
    
            then:
            cl.isInstance(r)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. doc/next/7-ports.md

    ### OpenBSD {#openbsd}
    
    <!-- go.dev/issue/55999, CL 518629, CL 518630 -->
    Go 1.23 adds experimental support for OpenBSD on 64-bit RISC-V (`GOOS=openbsd`, `GOARCH=riscv64`).
    
    ### ARM64 {#arm64}
    
    <!-- go.dev/issue/60905, CL 559555 -->
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/internal/operations/MaxWorkersTest.groovy

                            }
                        })
                    })
                    cl.leaseFinish()
                }
                start {
                    spec.thread.blockUntil.worker1
                    spec.instant.worker2Ready
                    def cl = workerLeaseService.startWorker()
                    spec.instant.worker2
                    cl.leaseFinish()
                }
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. .github/ISSUE_TEMPLATE/12-telemetry.yml

        description: >
          A CL containing proposed changes to the
          [config.txt](https://go.googlesource.com/telemetry/+/master/internal/chartconfig/config.txt)
          chart configuration.
          See the [chartconfig](https://pkg.go.dev/golang.org/x/telemetry/internal/chartconfig)
          package for an explanation of the chart config format.
          For an example change, see [CL 564619](https://go.dev/cl/564619).
      validations:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 19:58:26 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top