Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 6,372 for callB (0.05 sec)

  1. okhttp/src/main/kotlin/okhttp3/Interceptor.kt

     *
     * Other exception types cancel the current call:
     *
     *  * For synchronous calls made with [Call.execute], the exception is propagated to the caller.
     *
     *  * For asynchronous calls made with [Call.enqueue], an [IOException] is propagated to the caller
     *    indicating that the call was canceled. The interceptor's exception is delivered to the current
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/resource_access_test.go

    			}
    		}()
    	}
    
    	// and here we wait for all the goroutines
    	wg.Wait()
    	// since all the calls with the same namespace will be held, they must
    	// be caught on the singleflight group. there are two different sets of
    	// namespace calls hence only 2.
    	if listCallCountTestNamespace1 != 1 {
    		t.Errorf("Expected 1 resource quota call, got %d", listCallCountTestNamespace1)
    	}
    	if listCallCountTestNamespace2 != 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 13:54:56 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/unveil_openbsd.go

    		return err
    	}
    	return unveil(pathPtr, flagsPtr)
    }
    
    // UnveilBlock blocks future unveil calls.
    // For more information see unveil(2).
    func UnveilBlock() error {
    	if err := supportsUnveil(); err != nil {
    		return err
    	}
    	return unveil(nil, nil)
    }
    
    // supportsUnveil checks for availability of the unveil(2) system call based
    // on the running OpenBSD version.
    func supportsUnveil() error {
    	maj, min, err := majmin()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10SmartCastProvider.kt

            val smartCasts = bindingContext[BindingContext.IMPLICIT_RECEIVER_SMARTCAST, expression] ?: return emptyList()
            val call = bindingContext[BindingContext.CALL, expression] ?: return emptyList()
            val resolvedCall = bindingContext[BindingContext.RESOLVED_CALL, call] ?: return emptyList()
            return listOfNotNull(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KaFirInvokeFunctionReference.kt

        override fun KaSession.resolveToSymbols(): Collection<KaSymbol> {
            return expression.resolveCallOld()?.calls.orEmpty().mapNotNull { call ->
                (call as? KaSimpleFunctionCall)
                    ?.takeIf { it.isImplicitInvoke }
                    ?.partiallyAppliedSymbol
                    ?.symbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. test/fixedbugs/issue4468.go

    // license that can be found in the LICENSE file.
    
    // Issue 4468: go/defer calls may not be parenthesized.
    
    package p
    
    type T int
    
    func (t *T) F() T {
    	return *t
    }
    
    type S struct {
    	t T
    }
    
    func F() {
    	go F            // ERROR "must be function call"
    	defer F         // ERROR "must be function call"
    	go (F)		// ERROR "must be function call|must not be parenthesized"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 759 bytes
    - Viewed (0)
  7. src/iter/iter.go

    // It is valid to call next after reaching the end of the sequence
    // or after calling stop. These calls will continue
    // to return the zero V and false.
    //
    // Stop ends the iteration. It must be called when the caller is
    // no longer interested in next values and next has not yet
    // signaled that the sequence is over (with a false boolean return).
    // It is valid to call stop multiple times and when next has
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:28 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/plugin/use/internal/PluginUseScriptBlockMetadataCompiler.java

                                    if (!call.isImplicitThis()) {
                                        restrict(call, formatErrorMessage(BASE_MESSAGE));
                                    } else {
                                        ConstantExpression lineNumberExpression = new ConstantExpression(call.getLineNumber(), true);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 28 01:30:32 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  9. src/runtime/sys_openbsd_386.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    //
    // System calls and other sys.stuff for 386, OpenBSD
    // System calls are implemented in libc/libpthread, this file
    // contains trampolines that convert from Go to C calling convention.
    // Some direct system call implementations currently remain.
    //
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "textflag.h"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/ResponseBody.kt

     *
     * ```java
     * Call call = client.newCall(request);
     * call.enqueue(new Callback() {
     *   public void onResponse(Call call, Response response) throws IOException {
     *     try (ResponseBody responseBody = response.body()) {
     *     ... // Use the response.
     *     }
     *   }
     *
     *   public void onFailure(Call call, IOException e) {
     *   ... // Handle the failure.
     *   }
     * });
     * ```
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top