Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 319 for Calling (0.11 sec)

  1. src/runtime/sys_darwin.go

    	libcCall(unsafe.Pointer(abi.FuncPCABI0(syscall_x509)), unsafe.Pointer(&args))
    	exitsyscall()
    	return args.r1
    }
    func syscall_x509()
    
    // The *_trampoline functions convert from the Go calling convention to the C calling convention
    // and then call the underlying libc function.  They are defined in sys_darwin_$ARCH.s.
    
    //go:nosplit
    //go:cgo_unsafe_args
    func pthread_attr_init(attr *pthreadattr) int32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. src/path/filepath/path.go

    }
    
    // walk recursively descends path, calling walkFn.
    func walk(path string, info fs.FileInfo, walkFn WalkFunc) error {
    	if !info.IsDir() {
    		return walkFn(path, info, nil)
    	}
    
    	names, err := readDirNames(path)
    	err1 := walkFn(path, info, err)
    	// If err != nil, walk can't walk into this directory.
    	// err1 != nil means walkFn want walk to skip this directory or stop walking.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/io/Closer.java

       * in a {@code RuntimeException}. <b>Note:</b> Be sure to declare all of the checked exception
       * types your try block can throw when calling an overload of this method so as to avoid losing
       * the original exception type.
       *
       * <p>This method always throws, and as such should be called as {@code throw closer.rethrow(e);}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/dispatcher.go

    			if ignoreClientCallFailures {
    				// Ignore context cancelled from webhook metrics
    				if errors.Is(callErr.Reason, context.Canceled) {
    					klog.Warningf("Context canceled when calling webhook %v", hook.Name)
    				} else {
    					klog.Warningf("Failed calling webhook, failing open %v: %v", hook.Name, callErr)
    					admissionmetrics.Metrics.ObserveWebhookFailOpen(ctx, hook.Name, "admit")
    					annotator.addFailedOpenAnnotation()
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. pkg/spiffe/spiffe.go

    			var errMsg string
    			if err != nil {
    				errMsg = fmt.Sprintf("Calling %s failed with error: %v", endpoint, err)
    			} else if resp == nil {
    				errMsg = fmt.Sprintf("Calling %s failed with nil response", endpoint)
    			} else if resp.StatusCode != http.StatusOK {
    				b := make([]byte, 1024)
    				n, _ := resp.Body.Read(b)
    				errMsg = fmt.Sprintf("Calling %s failed with unexpected status: %v, fetching bundle: %s",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/io/Closer.java

       * in a {@code RuntimeException}. <b>Note:</b> Be sure to declare all of the checked exception
       * types your try block can throw when calling an overload of this method so as to avoid losing
       * the original exception type.
       *
       * <p>This method always throws, and as such should be called as {@code throw closer.rethrow(e);}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/Task.java

     * actions is executed in turn, by calling {@link Action#execute}. You can add actions to a task by calling {@link
     * #doFirst(Action)} or {@link #doLast(Action)}.</p>
     *
     * <p>Groovy closures can also be used to provide a task action. When the action is executed, the closure is called with
     * the task as parameter.  You can add action closures to a task by calling {@link #doFirst(groovy.lang.Closure)} or
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/dependencies/index.md

    !!! tip
        You'll see what other "things", apart from functions, can be used as dependencies in the next chapter.
    
    Whenever a new request arrives, **FastAPI** will take care of:
    
    * Calling your dependency ("dependable") function with the correct parameters.
    * Get the result from your function.
    * Assign that result to the parameter in your *path operation function*.
    
    ```mermaid
    graph TB
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. src/runtime/sys_linux_ppc64x.s

    //
    // Note, it is assumed this is always called indirectly (e.g via
    // a function pointer) as R2 may not be preserved when calling this
    // function. In those cases, the caller preserves their R2.
    TEXT runtimeĀ·sigtramp(SB),NOSPLIT|NOFRAME,$0
    #endif
    	// This is called with ELF calling conventions. Convert to Go.
    	// Allocate space for argument storage to call runtime.sigtrampgo.
    	STACK_AND_SAVE_HOST_TO_GO_ABI(32)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  10. src/go/token/position.go

    	}
    	return
    }
    
    // Position returns the Position value for the given file position p.
    // If p is out of bounds, it is adjusted to match the File.Offset behavior.
    // Calling f.Position(p) is equivalent to calling f.PositionFor(p, true).
    func (f *File) Position(p Pos) (pos Position) {
    	return f.PositionFor(p, true)
    }
    
    // -----------------------------------------------------------------------------
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
Back to top