Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 35 for Boo (0.02 sec)

  1. src/html/template/url_test.go

    		urlNormalizer("http://example.com:80/foo?q=bar%20&baz=x+y#frag")
    	}
    }
    
    func BenchmarkSrcsetFilter(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		srcsetFilterAndEscaper(" /foo/bar.png 200w, /baz/boo(1).png")
    	}
    }
    
    func BenchmarkSrcsetFilterNoSpecials(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		srcsetFilterAndEscaper("http://example.com:80/foo?q=bar%20&baz=x+y#frag")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm-infrastructure/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorData.groovy

        @Test public void pass() {}
        @Test public void pass2() {}
        @Test public void passSlowly() {}
        @Test public void passSlowly2() {}
        @Test public void fail() { throw new RuntimeException("Boo!") }
    }
    public class ATestClassWithSlowMethods {
        @Test public void pass() {}
        @Test public void passSlowly() {}
    }
    
    @RunWith(Suite.class)
    @Suite.SuiteClasses([ATestClass.class, BTestClass.class])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ComponentAttributesDynamicVersionIntegrationTest.groovy

                    // but since integration tests are pretty slow we do both in one go, knowing that
                    // configuration-level already has its own test
                    conf.attributes.attribute(quality, 'boo')
                }
    
                dependencies {
                    attributesSchema {
                        attribute(quality)
                    }
                    conf('org.test:module:$requested') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/upgrade/staticpods_test.go

    			manifestShouldChange: true,
    		},
    		{
    			description: "any wait error should result in a rollback and an abort 1",
    			waitErrsToReturn: map[string]error{
    				waitForHashes:        errors.New("boo! failed"),
    				waitForHashChange:    nil,
    				waitForPodsWithLabel: nil,
    			},
    			moveFileFunc:         os.Rename,
    			expectedErr:          true,
    			manifestShouldChange: false,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 32K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ResolutionResultGraphBuilderSpec.groovy

            node("c", ComponentSelectionReasons.of(ComponentSelectionReasons.CONFLICT_RESOLUTION))
            node("d")
            resolvedConf("a", [dep("a", "b"), dep("a", "c"), dep("a", "d", new RuntimeException("Boo!"))])
            resolvedConf("b", [])
            resolvedConf("c", [])
            resolvedConf("d", [])
    
            when:
            def deps = builder.getRoot(id("a")).dependencies
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/StreamingResolutionResultBuilderTest.groovy

            def dep1 = node(2, "org", "dep1", "2.0", of(CONFLICT_RESOLUTION))
            root.outgoingEdges >> [
                    dep(selector1, 1, 2),
                    dep(selector2, 1, new RuntimeException("Boo!"))
            ]
    
            builder.start(root)
    
            builder.visitNode(root)
            builder.visitNode(dep1)
            builder.visitSelector(selector1)
            builder.visitSelector(selector2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. pkg/volume/csi/csi_plugin_test.go

    			shouldFail: false,
    		},
    		{
    			pluginName: "test.plugin",
    			endpoint:   "/var/log/kubelet/plugins_registry/myplugin/csi.sock",
    			versions:   []string{"v1.2.3", "boo", "v0.3.0", "2.0.1"},
    			shouldFail: false,
    		},
    		{
    			pluginName: "test.plugin",
    			endpoint:   "/var/log/kubelet/plugins_registry/myplugin/csi.sock",
    			versions:   []string{"4.9.12", "2.0.1"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  8. guava-gwt/pom.xml

              </sourceFileExcludes>
              <!-- The above exclusion doesn't actually matter unless I prevent Javadoc from autodiscovering the source in the sourcepath, which defaults to the source directory :\ Boo for -sourcepath. -->
              <sourcepath>doesnotexist</sourcepath>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 15:00:55 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/http2/HpackTest.kt

          0x3F, 0xE1, 0x3F,
          0x40, 3, 'b'.code, 'a'.code, 'r'.code, 3, 'f'.code, 'o'.code, 'o'.code,
        )
    
        // No more dynamic table updates should be emitted.
        hpackWriter!!.writeHeaders(listOf(Header("far", "boo")))
        assertBytes(0x40, 3, 'f'.code, 'a'.code, 'r'.code, 3, 'b'.code, 'o'.code, 'o'.code)
      }
    
      @Test
      fun noDynamicTableSizeUpdateWhenSizeIsEqual() {
        val currentSize = hpackWriter!!.headerTableSizeSetting
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/Test.java

     *   useJUnitPlatform()
     *
     *   // set a system property for the test JVM(s)
     *   systemProperty 'some.prop', 'value'
     *
     *   // explicitly include or exclude tests
     *   include 'org/foo/**'
     *   exclude 'org/boo/**'
     *
     *   // show standard out and standard error of the test JVM(s) on the console
     *   testLogging.showStandardStreams = true
     *
     *   // set heap size for the test JVM(s)
     *   minHeapSize = "128m"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 42.6K bytes
    - Viewed (0)
Back to top