Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 128 for CL (0.05 sec)

  1. pilot/pkg/config/kube/crdclient/client.go

    		cfg := TranslateObject(item, kind, cl.domainSuffix)
    		out = append(out, cfg)
    	}
    
    	return out
    }
    
    func (cl *Client) allKinds() map[config.GroupVersionKind]kclient.Untyped {
    	cl.kindsMu.RLock()
    	defer cl.kindsMu.RUnlock()
    	return maps.Clone(cl.kinds)
    }
    
    func (cl *Client) kind(r config.GroupVersionKind) (kclient.Untyped, bool) {
    	cl.kindsMu.RLock()
    	defer cl.kindsMu.RUnlock()
    	ch, ok := cl.kinds[r]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

                                 llvm::cl::Optional, llvm::cl::init("mlir"));
    
    // NOLINTNEXTLINE
    opt<bool> verbose(
        "v", llvm::cl::desc("Dump intermediate translations to output dir."),
        llvm::cl::Optional, llvm::cl::init(false));
    
    // NOLINTNEXTLINE
    opt<bool> elide_large_elements_attrs(
        "e", llvm::cl::desc("Elide large elements attrs."), llvm::cl::Optional,
        llvm::cl::init(false));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiSpecification.groovy

        BuildTestFile populate(String projectName, @DelegatesTo(BuildTestFile) Closure cl) {
            new BuildTestFixture(projectDir).withBuildInSubDir().populate(projectName, cl)
        }
    
        TestFile singleProjectBuildInSubfolder(String projectName, @DelegatesTo(BuildTestFile) Closure cl = {}) {
            new BuildTestFixture(projectDir).withBuildInSubDir().singleProjectBuild(projectName, cl)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  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/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApi.groovy

            connectorConfigurers << cl
        }
    
        def <T> T withConnection(@DelegatesTo(ProjectConnection) Closure<T> cl) {
            def connector = connector()
            withConnection(connector, cl)
        }
    
        def <T> T withConnection(connector, @DelegatesTo(ProjectConnection) Closure<T> cl) {
            return withConnectionRaw(connector, cl)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:07:23 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/work/DefaultWorkerLeaseServiceWorkerLeaseTest.groovy

            async {
                start {
                    def cl = registry.startWorker()
                    instant.worker1
                    thread.blockUntil.worker2
                    cl.leaseFinish()
                }
                start {
                    def cl = registry.startWorker()
                    instant.worker2
                    thread.blockUntil.worker1
                    cl.leaseFinish()
                }
            }
    
            cleanup:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/ResolveTestFixture.groovy

                if (this.root != null) {
                    throw new IllegalStateException("Root node is already defined")
                }
                this.root = projectNode(projectPath, moduleVersion)
                cl.resolveStrategy = Closure.DELEGATE_ONLY
                cl.delegate = this.root
                cl.call()
                return this.root
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/DefaultModuleRegistryTest.groovy

            module.runtimeClasspath.asFiles == [runtimeDep]
        }
    
        def "locates module using jar from runtime ClassLoader"() {
            given:
            def cl = classLoaderFor([jarFile, runtimeDep])
            def registry = new DefaultModuleRegistry(cl, ClassPath.EMPTY, null)
    
            expect:
            def module = registry.getModule("gradle-some-module")
            module.implementationClasspath.asFiles == [jarFile]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top