Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 101 for fnest (0.07 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/concurrent/TestExecutor.groovy

        TestExecutor(TestLogger logger) {
            this.logger = logger
        }
    
        void start() {
            lock.lock()
            try {
                if (owner != null) {
                    throw new IllegalStateException("Cannot nest async { } blocks.")
                }
                owner = Thread.currentThread()
            } finally {
                lock.unlock()
            }
        }
    
        void execute(Runnable runnable) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. okhttp-testing-support/src/main/kotlin/okhttp3/OkHttpClientTestRule.kt

                  }
                }
              }
            }
          }
    
          override fun flush() {
          }
    
          override fun close() {
          }
        }.apply {
          level = Level.FINEST
        }
    
      private fun applyLogger(fn: Logger.() -> Unit) {
        Logger.getLogger(OkHttpClient::class.java.`package`.name).fn()
        Logger.getLogger(OkHttpClient::class.java.name).fn()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/riscv/anames.go

    	"BSETI",
    	"WORD",
    	"BEQZ",
    	"BGEZ",
    	"BGT",
    	"BGTU",
    	"BGTZ",
    	"BLE",
    	"BLEU",
    	"BLEZ",
    	"BLTZ",
    	"BNEZ",
    	"FABSD",
    	"FABSS",
    	"FNEGD",
    	"FNEGS",
    	"FNED",
    	"FNES",
    	"MOV",
    	"MOVB",
    	"MOVBU",
    	"MOVF",
    	"MOVD",
    	"MOVH",
    	"MOVHU",
    	"MOVW",
    	"MOVWU",
    	"NEG",
    	"NEGW",
    	"NOT",
    	"SEQZ",
    	"SNEZ",
    	"LAST",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/NestedConfigureAutoCreateNamedDomainObjectContainerSpec.groovy

                this.parentName = parentName
                this.name = name
            }
        }
    
        def "can nest auto creation configure closures"() {
            given:
            def parent = instantiator.newInstance(Container, "top", "parent", { name1 ->
                instantiator.newInstance(Container, "parent", name1, { name2 ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 26 05:36:10 UTC 2018
    - 3.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/graph_optimization_pass.cc

      // Assign optimal data layout to layout sensitive operations and delete
      // redundant transposes from the IR.
      LayoutOptimizationPipelineOptions layout_optimization_options;
      CreateLayoutOptimizationPipeline(pm.nest<func::FuncOp>(),
                                       layout_optimization_options);
    
      // Prepare IR for exporting.
      pm.addPass(CreateBreakUpIslandsPass());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 09:56:53 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top