Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 112 for enter_0 (0.15 sec)

  1. guava/src/com/google/common/io/ByteStreams.java

       *       channel have their own file descriptors. Generally this only happens when both channels
       *       are files or sockets. This performs zero copies - the bytes never enter userspace.
       *   <li>Use mmap(2) or equivalent. Requires that either the input channel or the output channel
       *       have file descriptors. Bytes are copied from the file into a kernel buffer, then directly
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 17 18:59:58 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

            collection = mapEntry.getValue();
            valueIterator = collection.iterator();
          }
          /*
           * uncheckedCastNullableTToT is safe: The first call to this method always enters the !hasNext() case and
           * populates key, after which it's never cleared.
           */
          return output(uncheckedCastNullableTToT(key), valueIterator.next());
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 46.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

            collection = mapEntry.getValue();
            valueIterator = collection.iterator();
          }
          /*
           * uncheckedCastNullableTToT is safe: The first call to this method always enters the !hasNext() case and
           * populates key, after which it's never cleared.
           */
          return output(uncheckedCastNullableTToT(key), valueIterator.next());
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 48K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testcarchive/carchive_test.go

    	}
    
    	var wg sync.WaitGroup
    	wg.Add(1)
    	var errsb strings.Builder
    	go func() {
    		defer wg.Done()
    		io.Copy(&errsb, r)
    	}()
    
    	// Give the program a chance to enter the function.
    	// If the program doesn't get there the test will still
    	// pass, although it doesn't quite test what we intended.
    	// This is fine as long as the program normally makes it.
    	time.Sleep(time.Millisecond)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  5. src/runtime/os_windows.go

    //
    //go:nosplit
    func osPreemptExtEnter(mp *m) {
    	for !atomic.Cas(&mp.preemptExtLock, 0, 1) {
    		// An asynchronous preemption is in progress. It's not
    		// safe to enter external code because it may call
    		// ExitProcess and deadlock with SuspendThread.
    		// Ideally we would do the preemption ourselves, but
    		// can't since there may be untyped syscall arguments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  6. src/runtime/mgcsweep.go

    // If preserve=true, don't return it to heap nor relink in mcentral lists;
    // caller takes care of it.
    func (sl *sweepLocked) sweep(preserve bool) bool {
    	// It's critical that we enter this function with preemption disabled,
    	// GC must not start while we are in the middle of this function.
    	gp := getg()
    	if gp.m.locks == 0 && gp.m.mallocing == 0 && gp != gp.m.g0 {
    		throw("mspan.sweep: m is not locked")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loadelf/ldelf.go

    			sb.SetExternal(true)
    		}
    
    		sb.SetSize(int64(sect.size))
    		sb.SetAlign(int32(sect.align))
    		sb.SetReadOnly(sect.readOnlyMem)
    
    		sect.sym = sb.Sym()
    	}
    
    	// enter sub-symbols into symbol table.
    	// symbol 0 is the null symbol.
    	symbols := make([]loader.Sym, elfobj.nsymtab)
    
    	for i := 1; i < elfobj.nsymtab; i++ {
    		var elfsym ElfSym
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  8. pilot/pkg/model/service.go

    	return fmt.Sprintf("Name:%s Port:%d Protocol:%v", p.Name, p.Port, p.Protocol)
    }
    
    // PortList is a set of ports
    type PortList []*Port
    
    // TrafficDirection defines whether traffic exists a service instance or enters a service instance
    type TrafficDirection string
    
    const (
    	// TrafficDirectionInbound indicates inbound traffic
    	TrafficDirectionInbound TrafficDirection = "inbound"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    === Terminating Continuous Build
    If Gradle is attached to an interactive input source, such as a terminal, the continuous build can be exited by pressing `CTRL-D` (On Microsoft Windows, it is required to also press `ENTER` or `RETURN` after `CTRL-D`).
    
    If Gradle is not attached to an interactive input source (e.g. is running as part of a script), the build process must be terminated (e.g. using the `kill` command or similar).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  10. docs/en/docs/deployment/docker.md

    ```
    
    </div>
    
    !!! info
        There are other formats and tools to define and install package dependencies.
    
    ### Create the **FastAPI** Code
    
    * Create an `app` directory and enter it.
    * Create an empty file `__init__.py`.
    * Create a `main.py` file with:
    
    ```Python
    from typing import Union
    
    from fastapi import FastAPI
    
    app = FastAPI()
    
    
    @app.get("/")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
Back to top