Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 161 for osinit (0.15 sec)

  1. src/cmd/internal/osinfo/os_windows.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build windows
    
    package osinfo
    
    import (
    	"fmt"
    
    	"golang.org/x/sys/windows"
    )
    
    // Version returns the OS version name/number.
    func Version() (string, error) {
    	info := windows.RtlGetVersion()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 452 bytes
    - Viewed (0)
  2. src/internal/cpu/cpu_mips64x.go

    // initialized.
    var HWCap uint
    
    // HWCAP bits. These are exposed by the Linux kernel 5.4.
    const (
    	// CPU features
    	hwcap_MIPS_MSA = 1 << 1
    )
    
    func doinit() {
    	options = []option{
    		{Name: "msa", Feature: &MIPS64X.HasMSA},
    	}
    
    	// HWCAP feature bits
    	MIPS64X.HasMSA = isSet(HWCap, hwcap_MIPS_MSA)
    }
    
    func isSet(hwc uint, value uint) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 671 bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/AbstractProxyClassGenerator.java

    import org.objectweb.asm.MethodVisitor;
    import org.objectweb.asm.Opcodes;
    
    public class AbstractProxyClassGenerator {
        protected static final String CONSTRUCTOR_NAME = "<init>";
        protected static final String STATIC_CONSTRUCTOR_NAME = "<clinit>";
        protected static final String CONCRETE_SIGNATURE = null;
        protected static final String[] NO_EXCEPTIONS = new String[0];
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/KtCallableReturnTypeFilter.kt

                with(analysisSession) {
                    return when (symbol) {
                        is KaFunctionSymbol -> !type.isUnit
                        else -> true
                    }
                }
            }
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. src/cmd/internal/osinfo/os_js.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build js
    
    package osinfo
    
    import (
    	"fmt"
    	"syscall/js"
    )
    
    // Version returns the OS version name/number.
    func Version() (string, error) {
    	// Version detection on Wasm varies depending on the underlying runtime
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:43:17 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    	// and let mstart0 exit the thread.
    	gp.sched.g = guintptr(unsafe.Pointer(gp))
    	gp.sched.pc = getcallerpc()
    	gp.sched.sp = getcallersp()
    
    	asminit()
    	minit()
    
    	// Install signal handlers; after minit so that minit can
    	// prepare the thread to be able to handle the signals.
    	if gp.m == &m0 {
    		mstartm0()
    	}
    
    	if fn := gp.m.mstartfn; fn != nil {
    		fn()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. src/internal/cpu/cpu_arm.go

    var HWCap uint
    var HWCap2 uint
    var Platform string
    
    // HWCAP/HWCAP2 bits. These are exposed by Linux and FreeBSD.
    const (
    	hwcap_VFPv4 = 1 << 16
    	hwcap_IDIVA = 1 << 17
    	hwcap_LPAE  = 1 << 20
    )
    
    func doinit() {
    	options = []option{
    		{Name: "vfpv4", Feature: &ARM.HasVFPv4},
    		{Name: "idiva", Feature: &ARM.HasIDIVA},
    		{Name: "v7atomics", Feature: &ARM.HasV7Atomics},
    	}
    
    	// HWCAP feature bits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:38:55 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/sys/cpu/cpu_openbsd_arm64.go

    	var out uint64
    	nout := unsafe.Sizeof(out)
    	if err := sysctl(mib, (*byte)(unsafe.Pointer(&out)), &nout, nil, 0); err != nil {
    		return 0, false
    	}
    	return out, true
    }
    
    func doinit() {
    	setMinimalFeatures()
    
    	// Get ID_AA64ISAR0 and ID_AA64ISAR1 from sysctl.
    	isar0, ok := sysctlUint64([]uint32{_CTL_MACHDEP, _CPU_ID_AA64ISAR0})
    	if !ok {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/staticinit/sched.go

    	// is the most important case for us to get right.
    
    	init := call.Init()
    	var as2init *ir.AssignListStmt
    	if len(init) == 2 && init[0].Op() == ir.OAS2 && init[1].Op() == ir.OINLMARK {
    		as2init = init[0].(*ir.AssignListStmt)
    	} else if len(init) == 1 && init[0].Op() == ir.OINLMARK {
    		as2init = new(ir.AssignListStmt)
    	} else {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/org/apache/maven/artifact/maven-artifact/3.0-SNAPSHOT/maven-artifact-3.0-SNAPSHOT.jar

    public abstract void setOptional(boolean); public abstract versioning.ArtifactVersion getSelectedVersion() throws versioning.OverConstrainedVersi; public abstract boolean isSelectedVersionKno() throws versioning.OverConstrainedVersi; static void <clinit>(); } org/apache/maven/artifact/ArtifactStatus.class package org.apache.maven.artifact; public final synchronized class ArtifactStatus implements Comparable { public static final ArtifactStatus NONE; public static final ArtifactStatus GENERATED; public...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 160.1K bytes
    - Viewed (0)
Back to top