Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 5,637 for need (0.04 sec)

  1. dbflute_fess/schema/_readme.txt

    Directory for files of schema info
    
    Files are auto-generated by DBFlute tasks.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jul 04 22:46:31 UTC 2015
    - 129 bytes
    - Viewed (0)
  2. src/sync/waitgroup.go

    		w := uint32(state)
    		if v == 0 {
    			// Counter is 0, no need to wait.
    			if race.Enabled {
    				race.Enable()
    				race.Acquire(unsafe.Pointer(wg))
    			}
    			return
    		}
    		// Increment waiters count.
    		if wg.state.CompareAndSwap(state, state+1) {
    			if race.Enabled && w == 0 {
    				// Wait must be synchronized with the first Add.
    				// Need to model this is as a write to race with the read in Add.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. pkg/util/filesystem/util_windows.go

    )
    
    const (
    	// Amount of time to wait between attempting to use a Unix domain socket.
    	// As detailed in https://github.com/kubernetes/kubernetes/issues/104584
    	// the first attempt will most likely fail, hence the need to retry
    	socketDialRetryPeriod = 1 * time.Second
    	// Overall timeout value to dial a Unix domain socket, including retries
    	socketDialTimeout = 4 * time.Second
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. build/README.md

    ## Build artifacts
    The build system output all its products to a top level directory in the source repository named `_output`.
    These include the binary compiled packages (e.g. kubectl, kube-scheduler etc.) and archived Docker images.
    If you intend to run a component with a docker image you will need to import it from this directory with
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 07:20:57 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/handler.go

    	// This looks a bit bonkers, but here's what's happening.  We need to have /apis handling registered in gorestful in order to have
    	// swagger generated for compatibility.  Doing that with `/apis` as a webservice, means that it forcibly 404s (no defaulting allowed)
    	// all requests which are not /apis or /apis/.  We need those calls to fall through behind gorestful for proper delegation.  Trying to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 14 17:10:00 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  6. futures/README.md

    The modules under this directory will be released exactly once each. Once that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 12 21:42:09 UTC 2018
    - 141 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/filters/maxinflight_test.go

    	// errors from prematurely closing the server
    	responses := &sync.WaitGroup{}
    	responses.Add(AllowedNonMutatingInflightRequestsNo * 2)
    
    	// Block is used to keep requests in flight for as long as we need to. All requests will
    	// be unblocked at the same time.
    	block := &sync.WaitGroup{}
    	block.Add(1)
    
    	waitForCalls := true
    	waitForCallsMutex := sync.Mutex{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/BlockingHttpsServer.java

    import java.io.IOException;
    import java.net.InetSocketAddress;
    import java.util.Arrays;
    import java.util.function.Predicate;
    
    /**
     * An HTTPS server fixture for tests.
     *
     * Unless you really need HTTPS, you should use a plain {@link BlockingHttpServer}.
     */
    public class BlockingHttpsServer extends BlockingHttpServer {
        public BlockingHttpsServer() throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. src/os/executable_path.go

    // executable file
    // errWd will be checked later, if we need to use initWd
    var initWd, errWd = Getwd()
    
    func executable() (string, error) {
    	var exePath string
    	if len(Args) == 0 || Args[0] == "" {
    		return "", ErrNotExist
    	}
    	if IsPathSeparator(Args[0][0]) {
    		// Args[0] is an absolute path, so it is the executable.
    		// Note that we only need to worry about Unix paths here.
    		exePath = Args[0]
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  10. releasenotes/notes/remove-anyuid-openshift.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    docs:
    - 'https://istio.io/latest/docs/setup/platform-setup/openshift/'
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 25 19:10:42 UTC 2023
    - 297 bytes
    - Viewed (0)
Back to top