Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 67 for Weiner (0.28 sec)

  1. src/runtime/netpoll_kqueue_pipe.go

    	netpollBreakWr = uintptr(w)
    }
    
    func wakeNetpoll(_ int32) {
    	for {
    		var b byte
    		n := write(netpollBreakWr, unsafe.Pointer(&b), 1)
    		if n == 1 || n == -_EAGAIN {
    			break
    		}
    		if n == -_EINTR {
    			continue
    		}
    		println("runtime: netpollBreak write failed with", -n)
    		throw("runtime: netpollBreak write failed")
    	}
    }
    
    func isWakeup(ev *keventt) bool {
    	if uintptr(ev.ident) == netpollBreakRd {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ForkingGradleHandle.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.integtests.fixtures.executer;
    
    import com.google.common.base.Joiner;
    import org.gradle.api.Action;
    import org.gradle.api.UncheckedIOException;
    import org.gradle.api.internal.artifacts.ivyservice.ArtifactCachesProvider;
    import org.gradle.internal.Factory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. src/runtime/defs1_netbsd_arm64.go

    // created by cgo -cdefs and then converted to Go
    // cgo -cdefs defs_netbsd.go defs_netbsd_arm.go
    
    package runtime
    
    const (
    	_EINTR  = 0x4
    	_EFAULT = 0xe
    	_EAGAIN = 0x23
    
    	_O_WRONLY   = 0x1
    	_O_NONBLOCK = 0x4
    	_O_CREAT    = 0x200
    	_O_TRUNC    = 0x400
    	_O_CLOEXEC  = 0x400000
    
    	_PROT_NONE  = 0x0
    	_PROT_READ  = 0x1
    	_PROT_WRITE = 0x2
    	_PROT_EXEC  = 0x4
    
    	_MAP_ANON    = 0x1000
    	_MAP_PRIVATE = 0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/HealthExpirationStrategy.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.launcher.daemon.server.health;
    
    import com.google.common.base.Joiner;
    import org.gradle.api.internal.DocumentationRegistry;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    import org.gradle.internal.util.NumberUtil;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaseCrossBuildResultsStore.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.performance.results;
    
    import com.google.common.base.Joiner;
    import com.google.common.collect.ImmutableList;
    import com.google.common.collect.Lists;
    import com.google.common.collect.Sets;
    import org.gradle.performance.measure.Duration;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  6. src/runtime/defs1_netbsd_386.go

    // created by cgo -cdefs and then converted to Go
    // cgo -cdefs defs_netbsd.go defs_netbsd_386.go
    
    package runtime
    
    const (
    	_EINTR  = 0x4
    	_EFAULT = 0xe
    	_EAGAIN = 0x23
    
    	_O_WRONLY   = 0x1
    	_O_NONBLOCK = 0x4
    	_O_CREAT    = 0x200
    	_O_TRUNC    = 0x400
    	_O_CLOEXEC  = 0x400000
    
    	_PROT_NONE  = 0x0
    	_PROT_READ  = 0x1
    	_PROT_WRITE = 0x2
    	_PROT_EXEC  = 0x4
    
    	_MAP_ANON    = 0x1000
    	_MAP_PRIVATE = 0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. src/runtime/defs1_netbsd_amd64.go

    // created by cgo -cdefs and then converted to Go
    // cgo -cdefs defs_netbsd.go defs_netbsd_amd64.go
    
    package runtime
    
    const (
    	_EINTR  = 0x4
    	_EFAULT = 0xe
    	_EAGAIN = 0x23
    
    	_O_WRONLY   = 0x1
    	_O_NONBLOCK = 0x4
    	_O_CREAT    = 0x200
    	_O_TRUNC    = 0x400
    	_O_CLOEXEC  = 0x400000
    
    	_PROT_NONE  = 0x0
    	_PROT_READ  = 0x1
    	_PROT_WRITE = 0x2
    	_PROT_EXEC  = 0x4
    
    	_MAP_ANON    = 0x1000
    	_MAP_PRIVATE = 0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/LogContent.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.fixtures.executer;
    
    import com.google.common.base.Joiner;
    import com.google.common.collect.ImmutableList;
    import com.google.common.collect.ImmutableList.Builder;
    import net.rubygrapefruit.ansi.AnsiParser;
    import net.rubygrapefruit.ansi.console.AnsiConsole;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. src/runtime/defs1_netbsd_arm.go

    // created by cgo -cdefs and then converted to Go
    // cgo -cdefs defs_netbsd.go defs_netbsd_arm.go
    
    package runtime
    
    const (
    	_EINTR  = 0x4
    	_EFAULT = 0xe
    	_EAGAIN = 0x23
    
    	_O_WRONLY   = 0x1
    	_O_NONBLOCK = 0x4
    	_O_CREAT    = 0x200
    	_O_TRUNC    = 0x400
    	_O_CLOEXEC  = 0x400000
    
    	_PROT_NONE  = 0x0
    	_PROT_READ  = 0x1
    	_PROT_WRITE = 0x2
    	_PROT_EXEC  = 0x4
    
    	_MAP_ANON    = 0x1000
    	_MAP_PRIVATE = 0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. src/runtime/defs_freebsd_arm.go

    // go tool cgo -godefs defs_freebsd.go
    
    package runtime
    
    import "unsafe"
    
    const (
    	_NBBY            = 0x8
    	_CTL_MAXNAME     = 0x18
    	_CPU_LEVEL_WHICH = 0x3
    	_CPU_WHICH_PID   = 0x2
    )
    
    const (
    	_EINTR     = 0x4
    	_EFAULT    = 0xe
    	_EAGAIN    = 0x23
    	_ETIMEDOUT = 0x3c
    
    	_O_WRONLY   = 0x1
    	_O_NONBLOCK = 0x4
    	_O_CREAT    = 0x200
    	_O_TRUNC    = 0x400
    	_O_CLOEXEC  = 0x100000
    
    	_PROT_NONE  = 0x0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top