Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 394 for CL (0.03 sec)

  1. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classloader/DefaultClassLoaderFactoryTest.groovy

            when:
            def cl = new URLClassLoader(classpath.asURLArray, factory.createFilteringClassLoader(getClass().classLoader, new FilteringClassLoader.Spec()))
            def c = cl.loadClass(DefaultClassLoaderFactoryTestHelper.name)
    
            then:
            c != DefaultClassLoaderFactoryTestHelper
    
            when:
            Thread.currentThread().contextClassLoader = cl
            c.getConstructor().newInstance().doStuff()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/SystemPathVersionLocatorTest.groovy

        def "can locate a known visual studio install on the path"() {
            def vsDir = tmpDir.createDir("vs")
            def compiler = vsDir.file("cl.exe")
    
            when:
            List<VisualStudioInstallCandidate> metadata = locator.getVisualStudioInstalls()
    
            then:
            1 * os.findInPath("cl.exe") >> compiler
            1 * versionDeterminer.getVisualStudioMetadataFromCompiler(compiler) >> vsMetadata(vsDir, "15.0")
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. cmd/tier-last-day-stats.go

    }
    
    func (l lastDayTierStats) merge(m lastDayTierStats) (merged lastDayTierStats) {
    	cl := l.clone()
    	cm := m.clone()
    
    	if cl.UpdatedAt.After(cm.UpdatedAt) {
    		cm.forwardTo(cl.UpdatedAt)
    		merged.UpdatedAt = cl.UpdatedAt
    	} else {
    		cl.forwardTo(cm.UpdatedAt)
    		merged.UpdatedAt = cm.UpdatedAt
    	}
    
    	for i := range cl.Bins {
    		merged.Bins[i] = cl.Bins[i].add(cm.Bins[i])
    	}
    
    	return merged
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 19 22:54:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/internal/classpath/transforms/LambdaSerializationTransformerTest.groovy

            }
    
            acceptClass(classData, deserializeLambdaSizeEvaluator)
    
            return maxMethodSize
        }
    
        <T extends ClassVisitor> T acceptClass(Class cl, T visitor) {
            def fileName = cl.name.replace('.', '/') + ".class"
            byte[] classData = cl.classLoader.getResource(fileName).bytes
            acceptClass(classData, visitor)
            return visitor
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 11:19:58 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. api/go1.4.txt

    pkg crypto/tls, type ConnectionState struct, TLSUnique []uint8
    
    # CL 153420045 crypto/x509: continue to recognise MaxPathLen of zero as "no value"., Adam Langley <******@****.***>
    pkg crypto/x509, type Certificate struct, MaxPathLenZero bool
    
    # CL 158950043 database/sql: add Drivers, returning list of registered drivers, Russ Cox <******@****.***>
    pkg database/sql, func Drivers() []string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 12 03:01:01 UTC 2014
    - 34K bytes
    - Viewed (0)
Back to top