Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 42 for Wignall (0.24 sec)

  1. api/go1.16.txt

    pkg syscall (darwin-arm64), const SIGIOT = 6
    pkg syscall (darwin-arm64), const SIGIOT Signal
    pkg syscall (darwin-arm64), const SIGPROF = 27
    pkg syscall (darwin-arm64), const SIGPROF Signal
    pkg syscall (darwin-arm64), const SIGSTOP = 17
    pkg syscall (darwin-arm64), const SIGSTOP Signal
    pkg syscall (darwin-arm64), const SIGSYS = 12
    pkg syscall (darwin-arm64), const SIGSYS Signal
    pkg syscall (darwin-arm64), const SIGTSTP = 18
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/concurrent/TaskRunner.kt

            SynchronousQueue(),
            threadFactory,
          )
    
        override fun nanoTime() = System.nanoTime()
    
        override fun coordinatorNotify(taskRunner: TaskRunner) {
          taskRunner.condition.signal()
        }
    
        /**
         * Wait a duration in nanoseconds. Unlike [java.lang.Object.wait] this interprets 0 as
         * "don't wait" instead of "wait forever".
         */
        @Throws(InterruptedException::class)
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 9.6K bytes
    - Viewed (0)
  3. dbflute_fess/dfprop/basicInfoMap.dfprop

        #  Elements of this map are as below:
        #   o isApplicationBehaviorProject: (NotRequired - Default false)
        #    Does the project is for application behaviors?
        #    This property is a main signal for Application Behavior.
        #    Other properties (for Application Behavior) work when this is true.
        #   o libraryProjectPackageBase: (NotRequired - Default same as application's one)
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 9.2K bytes
    - Viewed (0)
  4. api/go1.14.txt

    pkg syscall (freebsd-arm64), const SIGIOT = 6
    pkg syscall (freebsd-arm64), const SIGIOT Signal
    pkg syscall (freebsd-arm64), const SIGLIBRT = 33
    pkg syscall (freebsd-arm64), const SIGLIBRT Signal
    pkg syscall (freebsd-arm64), const SIGLWP = 32
    pkg syscall (freebsd-arm64), const SIGLWP Signal
    pkg syscall (freebsd-arm64), const SIGPROF = 27
    pkg syscall (freebsd-arm64), const SIGPROF Signal
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  5. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react
      // by sending a graceful termination signal to the containers in the pod. After that 30 seconds,
      // the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup,
      // remove the pod from the API. In the presence of network partitions, this object may still
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 53.3K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.13.md

    For detailed release notes on the three alpha features from SIG AWS, please refer to the following Changelogs:
    
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu May 05 13:44:43 GMT 2022
    - 273.1K bytes
    - Viewed (0)
  7. docs/changelogs/changelog_3x.md

     *  New: HPACK compression is now dynamic. This should improve performance when
        transmitting request headers over HTTP/2.
     *  New: `Dispatcher.setIdleCallback()` can be used to signal when there are no
        calls in flight. This is useful for [testing with
        Espresso][okhttp_idling_resource].
     *  New: Upgrade to Okio 1.9.0.
    
         ```xml
         <dependency>
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sun Feb 06 14:55:54 GMT 2022
    - 50.8K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/batch/v1/generated.proto

      // job should be run with.  Setting to null means that the success of any
      // pod signals the success of all pods, and allows parallelism to have any positive
      // value.  Setting to 1 means that parallelism is limited to 1 and the success of that
      // pod signals the success of the job.
      // More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/
      // +optional
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 21.1K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/Dispatcher.kt

          }
        }
    
        return isRunning
      }
    
      /** Used by [Call.execute] to signal it is in-flight. */
      internal fun executed(call: RealCall) =
        this.withLock {
          runningSyncCalls.add(call)
        }
    
      /** Used by [AsyncCall.run] to signal completion. */
      internal fun finished(call: AsyncCall) {
        call.callsPerHost.decrementAndGet()
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Apr 20 17:03:43 GMT 2024
    - 9K bytes
    - Viewed (0)
  10. src/packaging/common/systemd/fess.service

    ExecStart=${packaging.fess.bin.dir}/fess
    
    # Connects standard output to /dev/null
    StandardOutput=null
    
    # Connects standard error to journal
    StandardError=journal
    
    # When a JVM receives a SIGTERM signal it exits with code 143
    SuccessExitStatus=143
    
    # Specifies the maximum file descriptor number that can be opened by this process
    LimitNOFILE=${packaging.os.max.open.files}
    
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 1.1K bytes
    - Viewed (0)
Back to top