Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,833 for emptypb (0.12 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileCollectionIntegrationTest.groovy

            // TODO - should not invalidate the cache for this expression
            "'empty=' + tree.empty"                                                                         | "empty=false"               | "empty=false"                      | "empty=false"
            // TODO - should not invalidate the cache for this expression until the file is removed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/ws/WebSocketReaderTest.kt

        data.write("8a00".decodeHex()) // Pong
        data.write("80026c6f".decodeHex()) // lo
        clientReader.processNextFrame()
        callback.assertPong(EMPTY)
        callback.assertPong(EMPTY)
        callback.assertPong(EMPTY)
        callback.assertPong(EMPTY)
        callback.assertTextMessage("Hello")
      }
    
      @Test fun clientTwoFrameCompressedHelloWithPongs() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/signature_def.mlir

    // CHECK-NEXT:      quantization: {
    // CHECK-EMPTY:
    // CHECK-NEXT:      },
    // CHECK-NEXT:      shape_signature: [ -1, 384 ],
    // CHECK-NEXT:      has_rank: true
    // CHECK-NEXT:    }, {
    // CHECK-NEXT:      shape: [ 1, 384 ],
    // CHECK-NEXT:      buffer: 2,
    // CHECK-NEXT:      name: "serving_default_input1:0",
    // CHECK-NEXT:      quantization: {
    // CHECK-EMPTY:
    // CHECK-NEXT:      },
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 18:55:51 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/util/TrieTest.groovy

     */
    
    package org.gradle.internal.util
    
    import spock.lang.Specification
    
    class TrieTest extends Specification {
    
        def "empty trie is empty"() {
            def empty = Trie.from()
            expect:
            !empty.find("")
            !empty.find("alma")
        }
    
        def "can find exact match"() {
            def trie = Trie.from("aaa", "bbb")
            expect:
            trie.find("aaa")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/DefaultModuleRegistryTest.groovy

        def "requires no additional module classpath when run from distribution"() {
            given:
            def registry = new DefaultModuleRegistry(classLoaderFor([]), ClassPath.EMPTY, new GradleInstallation(distDir))
    
            expect:
            registry.additionalClassPath.empty
        }
    
        def "requires additional module classpath when no distribution available"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysisTest.groovy

            def a = analysis(
                [:], [:], empty(), empty(), "Some cause"
            )
    
            expect:
            a.findTransitiveDependents(["DoesNotMatter"], [:]).isDependencyToAll()
        }
    
        def "marks as dependency to all if constants has change and compilerApi is not available"() {
            given:
            def a = analysis(
                [:], [:], empty(), empty(), null,
                CompilerApiData.unavailable()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/fuzzer/fuzzer.go

    	// This is intentionally empty because component config does not exists in the public api
    	// (empty mean all ComponentConfigs fields nil, and this is necessary for getting roundtrip passing)
    }
    
    func fuzzLocalEtcd(obj *kubeadm.LocalEtcd, c fuzz.Continue) {
    	c.FuzzNoCustom(obj)
    
    	// Pinning values for fields that get defaults if fuzz value is empty string or nil (thus making the round trip test fail)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_config.cc

                                QuantizationSpecs* quant_specs) {
      quant_specs->inference_type = inference_type;
    
      // If min/max are not specified, just return;
      if (node_mins.empty() || node_maxs.empty()) return false;
    
      // Otherwise make sure min/max has the same size as inputs.
      if (IsQuantizationType(inference_type)) {
        // min/max should have same size as inputs, or shouldn't be specified.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeCompositeBuildIntegrationTest.groovy

            xcodeProject("${rootProjectName}.xcodeproj")
            xcodeProject("app/app.xcodeproj")
            xcodeProject("greeter/greeter.xcodeproj")
            xcodeProject("empty/empty.xcodeproj")
            xcodeProject("util/util.xcodeproj")
            xcodeProject("other/other.xcodeproj")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 03:57:28 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryWithStaticLinkagePublishingIntegrationTest.groovy

            debugLink.dependencies.empty
            debugLink.files.size() == 1
            debugLink.files[0].name == staticLibraryName('test')
            debugLink.files[0].url == withStaticLibrarySuffix("test_debug-1.2")
            def debugRuntime = debugMetadata.variant('debugRuntime')
            debugRuntime.dependencies.empty
            debugRuntime.files.empty
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top