Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 238 for states_ (0.14 sec)

  1. docs/en/docs/tutorial/security/simple-oauth2.md

    But for the login *path operation*, we need to use these names to be compatible with the spec (and be able to, for example, use the integrated API documentation system).
    
    The spec also states that the `username` and `password` must be sent as form data (so, no JSON here).
    
    ### `scope`
    
    The spec also says that the client can send another form field "`scope`".
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api_experimental.h

    // Returns the status for the tensor handle. In TFRT, a tensor handle can carry
    // error info if error happens. If so, the status will be set with the error
    // info. If not, status will be set as OK.
    TF_CAPI_EXPORT extern void TFE_TensorHandleGetStatus(TFE_TensorHandle* h,
                                                         TF_Status* status);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 22:37:46 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  3. maven-core/src/site/apt/offline-mode.apt

      descriptor should declare whether it requires online/offline status.
      This value should be a java.lang.Boolean, so it can implement 3VL
      (three value logic: yes, no, don't-care). The requiresOnline
      field in the mojo descriptor has the following semantics:
    
      [true] Online status is required for this mojo to function
             correctly.
    
      [false] <<(Default)>> Either status is acceptable for the mojo to
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            ComponentGraphResolveState state = potentialEdge.state;
            VirtualPlatformState virtualPlatformState = null;
            if (state == null || state instanceof LenientPlatformGraphResolveState) {
                virtualPlatformState = potentialEdge.component.getModule().getPlatformState();
                virtualPlatformState.participatingModule(component.getModule());
            }
            if (state == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  5. src/net/sendfile_test.go

    		// the pipe to the connection. This will call into sendfile.
    		defer wg.Done()
    		conn, err := ln.Accept()
    		if err != nil {
    			t.Error(err)
    			return
    		}
    		defer conn.Close()
    		// The comment above states that this should call into sendfile,
    		// but empirically it doesn't seem to do so at this time.
    		// If it does, or does on some platforms, this CopyN should be wrapped
    		// in expectSendfile.
    		_, err = io.CopyN(conn, r, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    In order to generate or update lock state, you specify the `--write-locks` command line argument in addition to the normal tasks that would trigger configurations to be resolved.
    This will cause the creation of lock state for each resolved configuration in that build execution.
    Note that if lock state existed previously, it is overwritten.
    
    NOTE: Gradle will not write lock state to disk if the build fails.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. src/runtime/preempt.go

    // goroutine to continue from its current safe-point.
    func resumeG(state suspendGState) {
    	if state.dead {
    		// We didn't actually stop anything.
    		return
    	}
    
    	gp := state.g
    	switch s := readgstatus(gp); s {
    	default:
    		dumpgstatus(gp)
    		throw("unexpected g status")
    
    	case _Grunnable | _Gscan,
    		_Gwaiting | _Gscan,
    		_Gsyscall | _Gscan:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. src/internal/trace/oldtrace.go

    			for gid := range it.createdPreInit {
    				// These are goroutines that already existed when tracing started but for which we
    				// received neither GoWaiting, GoInSyscall, or GoStart. These are goroutines that are in
    				// the states _Gidle or _Grunnable.
    				it.extra = append(it.extra, Event{
    					ctx: schedCtx{
    						// G: GoID(gid),
    						G: NoGoroutine,
    						P: NoProc,
    						M: NoThread,
    					},
    					table: it.evt,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/fsys/fsys.go

    func readDir(dir string) ([]fs.FileInfo, error) {
    	entries, err := os.ReadDir(dir)
    	if err != nil {
    		if os.IsNotExist(err) {
    			return nil, err
    		}
    		if dirfi, staterr := os.Stat(dir); staterr == nil && !dirfi.IsDir() {
    			return nil, &fs.PathError{Op: "ReadDir", Path: dir, Err: errNotDir}
    		}
    		return nil, err
    	}
    
    	fis := make([]fs.FileInfo, 0, len(entries))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	}
    
    	if status.State != runtimeapi.ContainerState_CONTAINER_CREATED {
    		// If container is not in the created state, we have tried and
    		// started the container. Set the StartedAt time.
    		cStatus.StartedAt = time.Unix(0, status.StartedAt)
    	}
    	if status.State == runtimeapi.ContainerState_CONTAINER_EXITED {
    		cStatus.Reason = status.Reason
    		cStatus.Message = status.Message
    		cStatus.ExitCode = int(status.ExitCode)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
Back to top