Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 101 for fnest (0.11 sec)

  1. src/cmd/go/testdata/mod/example.com_nest_v1.1.0.txt

    Written by hand.
    Test case for nested modules without an explicit relationship.
    This is the top-level module.
    
    -- .mod --
    module example.com/nest
    -- .info --
    {"Version": "v1.1.0"}
    -- go.mod --
    module example.com/nest
    -- sub/x/x.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 19:29:47 UTC 2019
    - 244 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/example.com_nest_sub_v1.0.0.txt

    Written by hand.
    Test case for nested modules without an explicit relationship.
    This is nested below the top-level module.
    
    -- .mod --
    module example.com/nest/sub
    -- .info --
    {"Version": "v1.0.0"}
    -- go.mod --
    module example.com/nest/sub
    -- y/y.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 19:29:47 UTC 2019
    - 261 bytes
    - Viewed (0)
  3. okcurl/src/main/kotlin/okhttp3/curl/logging/LoggingUtil.kt

                activeLogger.addHandler(handler)
              }
    
              if (sslDebug) {
                val activeLogger = getLogger("javax.net.ssl")
    
                activeLogger.level = Level.FINEST
                handler.level = Level.FINEST
                handler.formatter = MessageFormatter
                activeLogger.addHandler(handler)
              }
            }
          }
        }
    
        fun getLogger(name: String): Logger {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Apr 05 03:30:42 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. src/runtime/pprof/protobuf.go

    func (b *protobuf) startMessage() msgOffset {
    	b.nest++
    	return msgOffset(len(b.data))
    }
    
    func (b *protobuf) endMessage(tag int, start msgOffset) {
    	n1 := int(start)
    	n2 := len(b.data)
    	b.length(tag, n2-n1)
    	n3 := len(b.data)
    	copy(b.tmp[:], b.data[n2:n3])
    	copy(b.data[n1+(n3-n2):], b.data[n1:n2])
    	copy(b.data[n1:], b.tmp[:n3-n2])
    	b.nest--
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 20:09:46 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  5. test-site/test/IntegrationTest.java

    import org.junit.*;
    
    import play.mvc.*;
    import play.test.*;
    import play.libs.F.*;
    
    import static play.test.Helpers.*;
    import static org.fest.assertions.Assertions.*;
    
    import static org.fluentlenium.core.filter.FilterConstructor.*;
    
    public class IntegrationTest {
    
        /**
         * add your integration test here
         * in this example we just check if the welcome page is being shown
         */
        @Test
        public void test() {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 773 bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/GroovyInteroperabilityTest.kt

                on { invokeMethod(any(), any()) } doReturn expectedNestedInvokeResult
            }
    
            val expectedInvokeResult = Any()
            val delegate = mock<GroovyObject> {
                on { invokeMethod(eq("nest"), any()) }.thenAnswer {
                    val varargs = uncheckedCast<Array<Any?>>(it.getArgument(1))
                    val closure = uncheckedCast<Closure<Any>?>(varargs[0])
                    ConfigureUtil
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  7. test-site/test/ApplicationTest.java

    import play.data.validation.Constraints.RequiredValidator;
    import play.i18n.Lang;
    import play.libs.F;
    import play.libs.F.*;
    import play.twirl.api.Content;
    
    import static play.test.Helpers.*;
    import static org.fest.assertions.Assertions.*;
    
    
    /**
    *
    * Simple (JUnit) tests that can call all parts of a play app.
    * If you are interested in mocking a whole application, see the wiki for more details.
    *
    */
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.1K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/plugins/PluginBuildsNestingIntegrationTest.groovy

        def "can nest included plugin builds"() {
            when:
            settingsFile << """
                pluginManagement {
                    includeBuild("${build1.buildName}")
                }
            """
            build1.settingsFile << """
                includeBuild("../${build2.buildName}")
            """
    
            then:
            succeeds()
        }
    
        def "can nest early included plugin builds"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 08 11:18:10 UTC 2020
    - 7.4K bytes
    - Viewed (0)
  9. okhttp-testing-support/src/main/kotlin/okhttp3/OkHttpDebugLogging.kt

        handler: Handler = logHandler(),
      ): Closeable {
        val logger = Logger.getLogger(loggerClass)
        if (configuredLoggers.add(logger)) {
          logger.addHandler(handler)
          logger.level = Level.FINEST
        }
        return Closeable {
          logger.removeHandler(handler)
        }
      }
    
      fun enable(loggerClass: KClass<*>) = enable(loggerClass.java.name)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/endtoend_test.go

    		// Comma to separate argument gets a space; comma within does not.
    		var buf []byte
    		nest := 0
    		for i := 0; i < len(printed); i++ {
    			c := printed[i]
    			switch c {
    			case '{', '[':
    				nest++
    			case '}', ']':
    				nest--
    			case ',':
    				buf = append(buf, ',')
    				if nest == 0 {
    					buf = append(buf, ' ')
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 18:42:59 UTC 2023
    - 11.6K bytes
    - Viewed (0)
Back to top