Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for L1213 (0.04 sec)

  1. tests/hooks_test.go

    		t.Errorf("invalid data after update, got %+v", product)
    	}
    
    	var result Product3
    	DB.First(&result, product.ID)
    
    	AssertEqual(t, result, product)
    
    	// Select to change Code, but nothing updated, price should not change
    	DB.Model(&product).Select("code").Updates(Product3{Name: "L1214", Code: "L1213"})
    
    	if product.Price != 220 || product.Code != "L1213" || product.Name != "Product New3" {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Feb 18 01:20:29 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/result/DefaultBuildableModuleVersionListingResolveResultTest.groovy

            !descriptor.hasResult()
        }
    
        def "can mark as listed using version strings"() {
            when:
            descriptor.listed(['1.2', '1.3'])
    
            then:
            descriptor.state == Listed
            descriptor.authoritative
            descriptor.versions == ['1.2', '1.3'] as Set
        }
    
        def "can mark as failed"() {
            org.gradle.internal.Factory<String> broken = { "too bad" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/events/SelectOptionPromptEventTest.groovy

            def event = new SelectOptionPromptEvent(123, "question", ["11", "12", "13"], 1)
    
            assert event.prompt == TextUtil.toPlatformLineSeparators("""question:
      1: 11
      2: 12
      3: 13
    Enter selection (default: 12) [1..3] """)
        }
    
        def "accepts valid input"() {
            def event = new SelectOptionPromptEvent(123, "question", ["1", "2", "3", "4"], 1)
    
            expect:
            def result = event.convert(input)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/modulecache/dynamicversions/TwoStageModuleVersionsCacheTest.groovy

            0 * readCache._
        }
    
        def "reading aggregates read and write caches"() {
            def r1 = new ModuleVersionsCacheEntry(["1.0", "1.1"] as Set, 0L)
            def r2 = new ModuleVersionsCacheEntry(["1.2", "1.3"]  as Set, 123L)
    
            when:
            def result = twoStageCache.get(key)
    
            then:
            1 * readCache.get(key) >> {
                r1
            }
            1 * writeCache.get(key) >> {
                r2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/tests/replace_cast_hacks_with_tf_xla_ops_large_constants.mlir

    // RUN: tf-quant-opt %s -split-input-file -inline -quant-replace-cast-hacks-with-tf-xla-ops | FileCheck %s
    
    // -----
    
    module attributes {tf.versions = {bad_consumers = [], min_consumer = 12 : i32, producer = 1213 : i32}, tf_saved_model.semantics} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. .github/workflows/update-rbe.yml

            map sigbuild-r2.13-python3.8 2.13-python3.8
            map sigbuild-r2.13-python3.9 2.13-python3.9
            map sigbuild-r2.13-python3.10 2.13-python3.10
            map sigbuild-r2.13-python3.11 2.13-python3.11
            # TF 2.13 + Clang (containers are the same, but env vars in configs.bzl are different)
            map sigbuild-r2.13-clang 2.13-python3.9
            map sigbuild-r2.13-clang-python3.8 2.13-python3.8
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 10 15:40:34 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/example_test.go

    // 12: 9 | fib                 | value   : func(x int) int
    // 12: 9 | fib(x - 1)          | value   : int
    // 12: 9 | fib(x - 1) - fib(x - 2) | value   : int
    // 12:13 | x                   | var     : int
    // 12:13 | x - 1               | value   : int
    // 12:15 | 1                   | value   : int = 1
    // 12:20 | fib                 | value   : func(x int) int
    // 12:20 | fib(x - 2)          | value   : int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 28 17:58:07 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseJavaProjectIntegrationTest.groovy

            where:
            version | expectedContainer
            '1.1'   | 'JRE-1.1'
            '1.2'   | 'J2SE-1.2'
            '1.3'   | 'J2SE-1.3'
            '1.4'   | 'J2SE-1.4'
            '1.5'   | 'J2SE-1.5'
            '1.6'   | 'JavaSE-1.6'
            '1.7'   | 'JavaSE-1.7'
            '1.8'   | 'JavaSE-1.8'
            '1.9'   | 'JavaSE-9'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. src/runtime/symtabinl_test.go

    	tiu1++ // +3
    } // +4
    func tiuInlined2() { // +5
    	tiuInlined1() // +6
    	tiu2++        // +7
    } // +8
    func tiuTest() { // +9
    	tiuInlined1() // +10
    	tiuInlined2() // +11
    	tiu3++        // +12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. src/go/types/example_test.go

    	// 12: 9 | fib                 | value   : func(x int) int
    	// 12: 9 | fib(x - 1)          | value   : int
    	// 12: 9 | fib(x-1) - fib(x-2) | value   : int
    	// 12:13 | x                   | var     : int
    	// 12:13 | x - 1               | value   : int
    	// 12:15 | 1                   | value   : int = 1
    	// 12:20 | fib                 | value   : func(x int) int
    	// 12:20 | fib(x - 2)          | value   : int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)