Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,157 for expecting (0.33 sec)

  1. test/reorder2.go

    	err := 0
    	var t TT
    	if a("1")("2")("3"); log != "a(1)a(2)a(3)" {
    		println("expecting a(1)a(2)a(3) , got ", log)
    		err++
    	}
    	log = ""
    
    	if t.a("1").a(t.b("2")); log != "a(1)b(2)a(2)" {
    		println("expecting a(1)b(2)a(2), got ", log)
    		err++
    	}
    	log = ""
    	if a("3")(b("4"))(b("5")); log != "a(3)b(4)a(4)b(5)a(5)" {
    		println("expecting a(3)b(4)a(4)b(5)a(5), got ", log)
    		err++
    	}
    	log = ""
    	var i I = T1(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 7.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/CombinatorsTest.kt

            val parser = combinator.symbol("foo") * combinator.symbol("bar")
            assertFailure(parser("foo"), "Expecting symbol 'bar'")
            assertFailure(parser("bar"), "Expecting symbol 'foo', but got 'bar' instead")
            assertFailure(parser("foobar"), "Expecting symbol 'foo', but got 'foobar' instead")
        }
    
        private
        fun assertFailure(parse: ParserResult<*>, reason: String) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/PluginDependenciesSpecScopeTest.kt

        fun `given a single id, it should create a single request with no version`() {
            expecting(plugin(id = "plugin-id")) {
                id("plugin-id")
            }
        }
    
        @Test
        fun `given a single id and apply value, it should create a single request with no version`() {
            listOf(true, false).forEach { applyValue ->
                expecting(plugin(id = "plugin-id", isApply = applyValue)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 06:46:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. test/fixedbugs/issue19467.dir/z.go

    		frame, more := ci.Next()
    		frames = append(frames, frame)
    		if !more {
    			break
    		}
    	}
    	expecting := []string{
    		"test/mysync.(*WaitGroup).Add",
    		"test/mysync.(*WaitGroup).Done",
    	}
    	for i := 0; i < 2; i++ {
    		if frames[i].Function != expecting[i] {
    			log.Fatalf("frame %d: got %s, want %s", i, frames[i].Function, expecting[i])
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 17:50:47 UTC 2022
    - 696 bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ExpectInAnyOrder.java

        }
    
        @Override
        public boolean expecting(HttpExchange exchange) {
            lock.lock();
            try {
                if (current != null) {
                    return current.expecting(exchange);
                }
                for (TrackingHttpHandler handler : available) {
                    if (handler.expecting(exchange)) {
                        return true;
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. pkg/log/config_test.go

    	if err := Configure(o); err != nil {
    		t.Errorf("Expecting success, got %v", err)
    	} else if s.GetOutputLevel() != InfoLevel {
    		t.Errorf("Expecting InfoLevel, got %v", s.GetOutputLevel())
    	}
    
    	o = DefaultOptions()
    	o.stackTraceLevels = "default:debug,all:info"
    	if err := Configure(o); err != nil {
    		t.Errorf("Expecting success, got %v", err)
    	} else if s.GetStackTraceLevel() != InfoLevel {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. test/fixedbugs/issue13319.go

    // license that can be found in the LICENSE file.
    
    package main
    
    func f(int, int) {
        switch x {
        case 1:
            f(1, g()   // ERROR "expecting \)|possibly missing comma or \)"
        case 2:
            f()
        case 3:
            f(1, g()   // ERROR "expecting \)|possibly missing comma or \)"
        }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 00:26:58 UTC 2022
    - 423 bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/PluginsBlockInterpreterTest.kt

            assertDynamicInterpretationOf(
                """java""",
                "Expecting token of type RBRACE, but got IDENTIFIER ('java') instead"
            )
        }
    
        @Test
        fun `unsupported syntax - version catalog alias`() {
            assertDynamicInterpretationOf(
                """alias(libs.plugins.jmh)""",
                "Expecting token of type RBRACE, but got IDENTIFIER ('alias') instead"
            )
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 15:15:27 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  9. docs/site-replication/run-multi-site-minio-idp.sh

    sleep 10
    
    ./mc admin policy info minio1 rw
    if [ $? -eq 0 ]; then
    	echo "expecting the command to fail, exiting.."
    	exit_1
    fi
    
    ./mc admin policy info minio2 rw
    if [ $? -eq 0 ]; then
    	echo "expecting the command to fail, exiting.."
    	exit_1
    fi
    
    ./mc admin policy info minio3 rw
    if [ $? -eq 0 ]; then
    	echo "expecting the command to fail, exiting.."
    	exit_1
    fi
    
    ./mc admin user info minio1 foobar
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. pkg/log/default_test.go

    			}
    			funcs.Store(pt)
    
    			if c.debugEnabled != DebugEnabled() {
    				t.Errorf("Got %v, expecting %v", DebugEnabled(), c.debugEnabled)
    			}
    
    			if c.infoEnabled != InfoEnabled() {
    				t.Errorf("Got %v, expecting %v", InfoEnabled(), c.infoEnabled)
    			}
    
    			if c.warnEnabled != WarnEnabled() {
    				t.Errorf("Got %v, expecting %v", WarnEnabled(), c.warnEnabled)
    			}
    
    			if c.errorEnabled != ErrorEnabled() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top