Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 243 for isset (0.11 sec)

  1. src/vendor/golang.org/x/sys/cpu/cpu_x86.go

    	}
    
    	_, _, ecx1, edx1 := cpuid(1, 0)
    	X86.HasSSE2 = isSet(26, edx1)
    
    	X86.HasSSE3 = isSet(0, ecx1)
    	X86.HasPCLMULQDQ = isSet(1, ecx1)
    	X86.HasSSSE3 = isSet(9, ecx1)
    	X86.HasFMA = isSet(12, ecx1)
    	X86.HasCX16 = isSet(13, ecx1)
    	X86.HasSSE41 = isSet(19, ecx1)
    	X86.HasSSE42 = isSet(20, ecx1)
    	X86.HasPOPCNT = isSet(23, ecx1)
    	X86.HasAES = isSet(25, ecx1)
    	X86.HasOSXSAVE = isSet(27, ecx1)
    	X86.HasRDRAND = isSet(30, ecx1)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. src/internal/cpu/cpu_ppc64x_linux.go

    	// CPU features
    	hwcap2_DARN = 0x00200000
    	hwcap2_SCV  = 0x00100000
    )
    
    func osinit() {
    	PPC64.IsPOWER8 = isSet(HWCap2, hwcap2_ARCH_2_07)
    	PPC64.IsPOWER9 = isSet(HWCap2, hwcap2_ARCH_3_00)
    	PPC64.IsPOWER10 = isSet(HWCap2, hwcap2_ARCH_3_1)
    	PPC64.HasDARN = isSet(HWCap2, hwcap2_DARN)
    	PPC64.HasSCV = isSet(HWCap2, hwcap2_SCV)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 20:05:43 UTC 2022
    - 885 bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/files/injection-template.yaml

      {{- if or (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPU`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemory`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPULimit`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemoryLimit`) }}
        {{- if or (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPU`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemory`) }}
          requests:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  4. src/internal/cpu/cpu_x86.go

    	_, ebx7, _, _ := cpuid(7, 0)
    	X86.HasBMI1 = isSet(ebx7, cpuid_BMI1)
    	X86.HasAVX2 = isSet(ebx7, cpuid_AVX2) && osSupportsAVX
    	X86.HasBMI2 = isSet(ebx7, cpuid_BMI2)
    	X86.HasERMS = isSet(ebx7, cpuid_ERMS)
    	X86.HasADX = isSet(ebx7, cpuid_ADX)
    	X86.HasSHA = isSet(ebx7, cpuid_SHA)
    
    	X86.HasAVX512F = isSet(ebx7, cpuid_AVX512F) && osSupportsAVX512
    	if X86.HasAVX512F {
    		X86.HasAVX512BW = isSet(ebx7, cpuid_AVX512BW)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 13:40:20 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/sys/cpu/cpu_linux_arm.go

    	ARM.HasTHUMBEE = isSet(hwCap, hwcap_THUMBEE)
    	ARM.HasNEON = isSet(hwCap, hwcap_NEON)
    	ARM.HasVFPv3 = isSet(hwCap, hwcap_VFPv3)
    	ARM.HasVFPv3D16 = isSet(hwCap, hwcap_VFPv3D16)
    	ARM.HasTLS = isSet(hwCap, hwcap_TLS)
    	ARM.HasVFPv4 = isSet(hwCap, hwcap_VFPv4)
    	ARM.HasIDIVA = isSet(hwCap, hwcap_IDIVA)
    	ARM.HasIDIVT = isSet(hwCap, hwcap_IDIVT)
    	ARM.HasVFPD32 = isSet(hwCap, hwcap_VFPD32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 19 21:26:10 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/nio/PosixFilePermissionConverter.java

            if (isSet(mode, 0400)) {
                result.add(OWNER_READ);
            }
            if (isSet(mode, 0200)) {
                result.add(OWNER_WRITE);
            }
            if (isSet(mode, 0100)) {
                result.add(OWNER_EXECUTE);
            }
    
            if (isSet(mode, 040)) {
                result.add(GROUP_READ);
            }
            if (isSet(mode, 020)) {
                result.add(GROUP_WRITE);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/sys/cpu/cpu_linux_arm64.go

    	ARM64.HasASIMDHP = isSet(hwCap, hwcap_ASIMDHP)
    	ARM64.HasCPUID = isSet(hwCap, hwcap_CPUID)
    	ARM64.HasASIMDRDM = isSet(hwCap, hwcap_ASIMDRDM)
    	ARM64.HasJSCVT = isSet(hwCap, hwcap_JSCVT)
    	ARM64.HasFCMA = isSet(hwCap, hwcap_FCMA)
    	ARM64.HasLRCPC = isSet(hwCap, hwcap_LRCPC)
    	ARM64.HasDCPOP = isSet(hwCap, hwcap_DCPOP)
    	ARM64.HasSHA3 = isSet(hwCap, hwcap_SHA3)
    	ARM64.HasSM3 = isSet(hwCap, hwcap_SM3)
    	ARM64.HasSM4 = isSet(hwCap, hwcap_SM4)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. cmd/common-main.go

    	//nolint:gocritic
    	if !env.IsSet(config.EnvRootUser) && env.IsSet(config.EnvRootPassword) {
    		logger.Fatal(config.ErrMissingEnvCredentialRootUser(nil), "Unable to start MinIO")
    	} else if env.IsSet(config.EnvRootUser) && !env.IsSet(config.EnvRootPassword) {
    		logger.Fatal(config.ErrMissingEnvCredentialRootPassword(nil), "Unable to start MinIO")
    	} else if !env.IsSet(config.EnvRootUser) && !env.IsSet(config.EnvRootPassword) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inputs/traffic-params.yaml.7.template.gen.yaml

    templates:
      sidecar: |
        {{- define "resources"  }}
          {{- if or (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPU`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemory`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPULimit`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemoryLimit`) }}
            {{- if or (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPU`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemory`) }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inputs/hello.yaml.14.template.gen.yaml

    templates:
      sidecar: |
        {{- define "resources"  }}
          {{- if or (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPU`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemory`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPULimit`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemoryLimit`) }}
            {{- if or (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPU`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemory`) }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
Back to top