Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 149 for CL (0.02 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/test/groovy/org/gradle/internal/typeconversion/DefaultTypeConverterTest.groovy

        }
    
        def "cannot convert arbitrary type to Long"() {
            when:
            def cl = {}
            converter.convert(cl, Long.class, false)
    
            then:
            def e = thrown(UnsupportedNotationException)
            e.message == TextUtil.toPlatformLineSeparators("""Cannot convert the provided notation to an object of type Long: ${cl.toString()}.
    The following types/formats are supported:
      - A String or CharSequence
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 13.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top