Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 57 for osinit (0.27 sec)

  1. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    public byte[] decode(byte[]); public static byte[] encodeBase64(byte[], boolean); public static byte[] decodeBase64(byte[]); static byte[] discardWhitespace(byte[]); static byte[] discardNonBase64(byte[]); public byte[] encode(byte[]); static void <clinit>(); } org/codehaus/plexus/util/CachedMap.class package org.codehaus.plexus.util; public final synchronized class CachedMap implements java.util.Map { private final FastMap _backingFastMap; private final java.util.Map _backingMap; private final FastMap...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeInfoProvider.kt

        public val KaType.isUnit: Boolean get() = withValidityAssertion { isClassTypeWithClassId(DefaultTypeClassIds.UNIT) }
        public val KaType.isInt: Boolean get() = withValidityAssertion { isClassTypeWithClassId(DefaultTypeClassIds.INT) }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. src/internal/cpu/cpu.go

    // before normal init functions are run. env is set by runtime if the OS supports
    // cpu feature options in GODEBUG.
    func Initialize(env string) {
    	doinit()
    	processOptions(env)
    }
    
    // options contains the cpu debug options that can be used in GODEBUG.
    // Options are arch dependent and are added by the arch specific doinit functions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/sys/cpu/cpu_linux_arm64.go

    	for _, b := range un.Release[:] {
    		if b == 0 {
    			break
    		}
    		sb.WriteByte(byte(b))
    	}
    	major, minor, _, ok := parseRelease(sb.String())
    	return ok && (major > 4 || major == 4 && minor >= 11)
    }
    
    func doinit() {
    	if err := readHWCAP(); err != nil {
    		// We failed to read /proc/self/auxv. This can happen if the binary has
    		// been given extra capabilities(7) with /bin/setcap.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/sys/cpu/cpu_arm64.go

    		{Name: "asimdfhm", Feature: &ARM64.HasASIMDFHM},
    	}
    }
    
    func archInit() {
    	switch runtime.GOOS {
    	case "freebsd":
    		readARM64Registers()
    	case "linux", "netbsd", "openbsd":
    		doinit()
    	default:
    		// Many platforms don't seem to allow reading these registers.
    		setMinimalFeatures()
    	}
    }
    
    // setMinimalFeatures fakes the minimal ARM64 features expected by
    // TestARM64minimalFeatures.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inject/multi-init.yaml.injected

          initContainers:
          - command:
            - sh
            - -c
            - "true"
            image: busybox
            name: init-one
            resources: {}
          - command:
            - sh
            - -c
            - "true"
            image: busybox
            name: init-two
            resources: {}
          - args:
            - istio-iptables
            - -p
            - "15001"
            - -z
            - "15006"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirDataFlowInfoProvider.kt

            val collector = FirElementCollector()
            firStatements.forEach { it.accept(collector) }
    
            val firValuedReturnExpressions = collector.firReturnExpressions.filter { !it.result.resolvedType.isUnit }
    
            val defaultStatement = statements.last()
            val firDefaultStatement = firStatements.last()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 14:04:46 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/componentconfigs/fakeconfig_test.go

    func testClusterConfigMap(yaml string, signIt bool) *v1.ConfigMap {
    	cm := &v1.ConfigMap{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      constants.KubeadmConfigConfigMap,
    			Namespace: metav1.NamespaceSystem,
    		},
    		Data: map[string]string{
    			constants.ClusterConfigurationConfigMapKey: dedent.Dedent(yaml),
    		},
    	}
    
    	if signIt {
    		SignConfigMap(cm)
    	}
    
    	return cm
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:36:00 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

        !returnsUnit(namedFunction) ->
            true
        namedFunction.bodyExpression == body ->
            analyze(namedFunction) {
                (body as KtExpression).getKaType()?.isUnit == true
            }
        else ->
            false
    }
    
    
    private fun KaSession.isSimpleVariableAccessCall(reference: KtReferenceExpression): Boolean =
        when (val resolution = reference.resolveCallOld()) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. src/internal/cpu/cpu_x86.go

    	cpuid_SHA      = 1 << 29
    	cpuid_AVX512BW = 1 << 30
    	cpuid_AVX512VL = 1 << 31
    
    	// edx bits for CPUID 0x80000001
    	cpuid_RDTSCP = 1 << 27
    )
    
    var maxExtendedFunctionInformation uint32
    
    func doinit() {
    	options = []option{
    		{Name: "adx", Feature: &X86.HasADX},
    		{Name: "aes", Feature: &X86.HasAES},
    		{Name: "erms", Feature: &X86.HasERMS},
    		{Name: "pclmulqdq", Feature: &X86.HasPCLMULQDQ},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 13:40:20 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top