Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 40 for fnest (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/ide/problems-api/src/test/groovy/org/gradle/internal/code/DefaultUserCodeApplicationContextTest.groovy

                assert context.current().id == id
                assert context.current().source == source
            }
    
            and:
            context.current() == null
        }
    
        def "can nest application"() {
            def source = Stub(UserCodeSource)
            def source2 = Stub(UserCodeSource)
            def action = Mock(Action)
            def action2 = Mock(Action)
            def id1
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 27 13:19:04 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. samples/bookinfo/policy/productpage_envoy_ratelimit.yaml

                route:
                  action: ANY
          patch:
            operation: MERGE
            value:
              rate_limits:
                - actions: # any actions in here
                      # Multiple actions nest the descriptors
                      # - generic_key:
                      # descriptor_value: "test"
                  - request_headers:
                      header_name: ":path"
                      descriptor_key: "PATH"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 10 15:30:28 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  8. tests/integration/telemetry/policy/testdata/enable_envoy_ratelimit.yaml

                route:
                  action: ANY
          patch:
            operation: MERGE
            value:
              rate_limits:
                - actions: # any actions in here
                      # Multiple actions nest the descriptors
                      # - generic_key:
                      # descriptor_value: "test"
                  - request_headers:
                      header_name: ":path"
                      descriptor_key: "PATH"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 13 16:44:49 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/TestLogHandler.kt

          }
        }
    
      private var previousLevel: Level? = null
    
      override fun beforeEach(context: ExtensionContext?) {
        previousLevel = logger.level
        logger.addHandler(handler)
        logger.setLevel(Level.FINEST)
      }
    
      override fun afterEach(context: ExtensionContext?) {
        logger.setLevel(previousLevel)
        logger.removeHandler(handler)
      }
    
      override fun apply(
        base: Statement,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherRegistry.java

        /**
         * Configures debug logging.
         *
         * When enabled, {@link net.rubygrapefruit.platform.internal.jni.NativeLogger} will emit {@link java.util.logging.Level#FINEST} logs.
         */
        void setDebugLoggingEnabled(boolean debugLoggingEnabled);
    
        /**
         * Close the watcher registry. Stops watching without handling the changes.
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top