Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 305 for tcCall (0.22 sec)

  1. src/main/java/org/codelibs/fess/es/user/bsbhv/BsRoleBhv.java

        public int[] batchInsert(List<Role> list, RequestOptionCall<BulkRequestBuilder> call) {
            return batchInsert(list, call, null);
        }
    
        public int[] batchInsert(List<Role> list, RequestOptionCall<BulkRequestBuilder> call,
                RequestOptionCall<IndexRequestBuilder> entityCall) {
            return doBatchInsert(new BulkList<>(list, call, entityCall), null);
        }
    
        public int[] batchUpdate(List<Role> list) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. testing/architecture-test/src/changes/archunit-store/stored.rules

    no\ classes\ should\ call\ method\ RoleBasedConfigurationContainerInternal.resolvableDependencyScopeUnlocked(String)\ or\ should\ call\ method\ RoleBasedConfigurationContainerInternal.resolvableDependencyScopeUnlocked(String,\ Action)\ or\ should\ call\ method\ RoleBasedConfigurationContainerInternal.maybeCreateResolvableUnlocked(String)\ or\ should\ call\ method\ RoleBasedConfigurationContainerInternal.maybeCreateConsumableUnlocked(String)\...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/localFunctionLocalClosureMutating.kt

    // MODULE: context
    
    // FILE: context.kt
    fun test() {
        var x = 0
    
        fun call() {
            x = 1
        }
    
        <caret_context>call()
    }
    
    
    // MODULE: main
    // MODULE_KIND: CodeFragment
    // CONTEXT_MODULE: context
    
    // FILE: fragment.kt
    // CODE_FRAGMENT_KIND: EXPRESSION
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 270 bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/localFunctionLocalClosureMutating.ir.txt

              BLOCK_BODY
                SET_VAR 'var x: kotlin.Int [var] declared in <root>.test' type=kotlin.Unit origin=EQ
                  CONST Int type=kotlin.Int value=1
            CALL 'local final fun call (): kotlin.Unit declared in <root>.test' type=kotlin.Unit origin=null
      FILE fqName:<root> fileName:fragment.kt
        CLASS CLASS name:CodeFragment modality:FINAL visibility:public superTypes:[kotlin.Any]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/inlineFunctionUsage.ir.txt

            EXPRESSION_BODY
              BLOCK type=kotlin.Unit origin=null
                CALL 'public final fun forEach <T> (action: kotlin.Function1<T of kotlin.collections.forEach, kotlin.Unit>): kotlin.Unit [inline] declared in kotlin.collections' type=kotlin.Unit origin=null
                  <T>: kotlin.Int
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 30 10:27:47 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. test/escape_mutations.go

    	copy(out, []byte(s)) // ERROR "zero-copy string->\[\]byte conversion" "\(\[\]byte\)\(s\) does not escape"
    }
    
    func i(s string) byte { // ERROR "s does not escape, mutate, or call"
    	p := []byte(s) // ERROR "zero-copy string->\[\]byte conversion" "\(\[\]byte\)\(s\) does not escape"
    	return p[20]
    }
    
    func j(s string, x byte) { // ERROR "s does not escape, mutate, or call"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 18 11:58:37 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/kotlinDsl/interoperability-kotlinClosure/kotlin/build.gradle.kts

        fun takingParameterLessClosure(closure: Closure<*>) =
            require(closure.call() == "result") { "parameter-less closure" }
    
        fun takingUnaryClosure(closure: Closure<*>) =
            require(closure.call("foo") == "result from single parameter foo") { "unary closure" }
    
        fun takingBinaryClosure(closure: Closure<*>) =
            require(closure.call("foo", "bar") == "result from parameters foo and bar") { "binary closure" }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. testing/internal-testing/src/test/groovy/org/gradle/testing/internal/util/RetryUtilTest.groovy

            thrown(Exception)
            retryCount * closure.call() >> {
                throw new Exception()
            }
        }
    
        def "closure succeed on second try returns retry count of 2"() {
            given:
            def closure = Mock(Closure)
            def retryCount = 2
    
            when:
            def result = RetryUtil.retry(retryCount, closure)
    
            then:
            1 * closure.call() >> {
                throw new Exception()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/Callback.kt

       * timeout. Because networks can fail during an exchange, it is possible that the remote server
       * accepted the request before the failure.
       */
      fun onFailure(
        call: Call,
        e: IOException,
      )
    
      /**
       * Called when the HTTP response was successfully returned by the remote server. The callback may
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. src/runtime/debug_test.go

    	// The biggest risk is having a write barrier in the debug call
    	// injection test code fire, because it runs in a signal handler
    	// and may not have a P.
    	//
    	// We use 8 Ps so there's room for the debug call worker,
    	// something that's trying to preempt the call worker, and the
    	// goroutine that's trying to stop the call worker.
    	ogomaxprocs := runtime.GOMAXPROCS(8)
    	ogcpercent := debug.SetGCPercent(-1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 15:08:04 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top