Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for oboo (0.05 sec)

  1. src/bytes/bytes_test.go

    	{"abc", "x", -1},
    	{"barfoobarfooyyyzzzyyyzzzyyyzzzyyyxxxzzzyyy", "x", 33},
    	{"fofofofooofoboo", "oo", 7},
    	{"fofofofofofoboo", "ob", 11},
    	{"fofofofofofoboo", "boo", 12},
    	{"fofofofofofoboo", "oboo", 11},
    	{"fofofofofoooboo", "fooo", 8},
    	{"fofofofofofoboo", "foboo", 10},
    	{"fofofofofofoboo", "fofob", 8},
    	{"fofofofofofofoffofoobarfoo", "foffof", 12},
    	{"fofofofofoofofoffofoobarfoo", "foffof", 13},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  2. pilot/pkg/config/file/util/kubeyaml/kubeyaml_test.go

    	{
    		merged: `
    yaml: foo
    ---
    bar: boo
    `,
    		split: []string{
    			`
    yaml: foo
    `,
    			`bar: boo
    `,
    		},
    	},
    	{
    		merged: `
    yaml: foo
    ---
    bar: boo
    `,
    		split: []string{
    			`
    yaml: foo
    `,
    			``,
    			`bar: boo
    `,
    		},
    	},
    	{
    		merged: `
    yaml: foo
    ---
    bar: boo`,
    		split: []string{
    			`
    yaml: foo`,
    			`bar: boo`,
    		},
    	},
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/FailingIncrementalTasksIntegrationTest.groovy

                            throw new RuntimeException("Boo!")
                        }
                        outFile << "xxx"
                    }
                }
            """
    
            expect:
            succeeds "foo"
    
            when:
            file("out.txt") << "force rerun"
            fails "foo"
            then:
            failureHasCause "Boo!"
    
            when:
            fails "foo", "--info"
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 01 14:32:13 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/testdata/issue26237/b.dir/b.go

    package b
    
    var q int
    
    func Top(x int) int {
    	q += 1
    	if q != x {
    		return 3
    	}
    	return 4
    }
    
    func OOO(x int) int {
    	defer func() { q += x & 7 }()
    	return Top(x + 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 20 15:46:11 UTC 2019
    - 166 bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/testdata/issue26237/main/main.go

    package main
    
    import (
    	"fmt"
    
    	b "cmd/link/internal/ld/testdata/issue26237/b.dir"
    )
    
    var skyx int
    
    func main() {
    	skyx += b.OOO(skyx)
    	if b.Top(1) == 99 {
    		fmt.Printf("Beware the Jabberwock, my son!\n")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 20 15:46:11 UTC 2019
    - 210 bytes
    - Viewed (0)
  6. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/JodExtractorTest.java

        protected void tearDown() throws Exception {
            jodExtractor.destroy();
            super.tearDown();
        }
    
        public void test_getText_ooow() {
            InputStream in = ResourceUtil.getResourceAsStream("extractor/ooo/test.odt");
            Map<String, String> params = new HashMap<String, String>();
            params.put("resourceName", "test.odt");
            ExtractData extractData = jodExtractor.getText(in, params);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestFilteringIntegrationTest.groovy

                        throw new RuntimeException("Boo!");
                    }
                }
            """
            file("src/test/java/org/gradle/OtherTest.java") << """
                package org.gradle;
                ${testFrameworkImports}
                public class OtherTest {
                    @Test public void pass() {}
                    @Test public void fail() { throw new RuntimeException("Boo!"); }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  8. pkg/config/schema/resource/schema_test.go

    				Proto:        "google.protobuf.Empty",
    			},
    			expectError: true,
    		},
    		{
    			name: "invalid proto",
    			b: Builder{
    				Kind:         "Boo",
    				Plural:       "Boos",
    				ProtoPackage: "github.com/gogo/protobuf/types",
    				Proto:        "boo",
    			},
    			expectError: true,
    		},
    	}
    
    	for _, c := range cases {
    		t.Run(c.name, func(t *testing.T) {
    			g := NewWithT(t)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/Binary2JUnitXmlReportGeneratorSpec.groovy

            }
            generator.xmlWriter.write(fooTest, _) >> { throw new IOException("Boo!") }
    
            when:
            generator.generate()
    
            then:
            def ex = thrown(MultipleBuildOperationFailures)
            ex.causes.size() == 1
            ex.causes[0].message.startsWith('Could not write XML test results for FooTest')
            ex.causes[0].cause.message == "Boo!"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:07:01 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/FileUtilsTest.groovy

            withExtension("/some/path/to/foo.baz", ".bar") == "/some/path/to/foo.bar"
            withExtension("\\some\\path\\to\\foo.baz", ".bar") == "\\some\\path\\to\\foo.bar"
            withExtension("/some/path/to/foo.boo.baz", ".bar") == "/some/path/to/foo.boo.bar"
            withExtension("/some/path/to/foo.bar", ".bar") == "/some/path/to/foo.bar"
        }
    
        def "can determine if one path start with another"(String path, String startsWithPath, boolean result) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top