Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 958 for wcap (0.04 sec)

  1. docs/en/docs/img/deployment/https/https08.drawio

                        <mxGeometry x="-60" y="-540" width="330" height="260" as="geometry"/>
                    </mxCell>
                    <mxCell id="6" value="" style="rounded=0;whiteSpace=wrap;html=1;fontStyle=1;strokeWidth=4;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 20.9K bytes
    - Viewed (0)
  2. src/internal/cpu/cpu_ppc64x_linux.go

    //go:build ppc64 || ppc64le
    
    package cpu
    
    // ppc64 doesn't have a 'cpuid' equivalent, so we rely on HWCAP/HWCAP2.
    // These are initialized by archauxv and should not be changed after they are
    // initialized.
    var HWCap uint
    var HWCap2 uint
    
    // HWCAP bits. These are exposed by Linux.
    const (
    	// ISA Level
    	hwcap2_ARCH_2_07 = 0x80000000
    	hwcap2_ARCH_3_00 = 0x00800000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 20:05:43 UTC 2022
    - 885 bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/sys/cpu/cpu_linux_s390x.go

    package cpu
    
    const (
    	// bit mask values from /usr/include/bits/hwcap.h
    	hwcap_ZARCH  = 2
    	hwcap_STFLE  = 4
    	hwcap_MSA    = 8
    	hwcap_LDISP  = 16
    	hwcap_EIMM   = 32
    	hwcap_DFP    = 64
    	hwcap_ETF3EH = 256
    	hwcap_VX     = 2048
    	hwcap_VXE    = 8192
    )
    
    func initS390Xbase() {
    	// test HWCAP bit vector
    	has := func(featureMask uint) bool {
    		return hwCap&featureMask == featureMask
    	}
    
    	// mandatory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 02 15:41:00 UTC 2020
    - 890 bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ir/fmt.go

    	OAND:              "&",
    	OAPPEND:           "append",
    	OAS:               "=",
    	OAS2:              "=",
    	OBREAK:            "break",
    	OCALL:             "function call", // not actual syntax
    	OCAP:              "cap",
    	OCASE:             "case",
    	OCLEAR:            "clear",
    	OCLOSE:            "close",
    	OCOMPLEX:          "complex",
    	OBITNOT:           "^",
    	OCONTINUE:         "continue",
    	OCOPY:             "copy",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  5. src/runtime/os_linux_s390x.go

    	_HWCAP_VX = 1 << 11 // vector facility
    )
    
    func archauxv(tag, val uintptr) {
    	switch tag {
    	case _AT_HWCAP:
    		cpu.HWCap = uint(val)
    	}
    }
    
    func osArchInit() {}
    
    func checkS390xCPU() {
    	// Check if the present z-system has the hardware capability to carryout
    	// floating point operations. Check if hwcap reflects CPU capability for the
    	// necessary floating point hardware (HasVX) availability.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 17:36:28 UTC 2023
    - 825 bytes
    - Viewed (0)
  6. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/LineEndingNormalizingFileSystemLocationSnapshotHasherTest.groovy

            def file = file('foo') << contents
            def delegate = Mock(LineEndingNormalizingFileSystemLocationSnapshotHasher)
            def hasher = LineEndingNormalizingFileSystemLocationSnapshotHasher.wrap(delegate, LineEndingSensitivity.NORMALIZE_LINE_ENDINGS)
    
            when:
            hasher.hash(snapshot(file))
    
            then:
            0 * delegate._
    
            where:
            description               | contents
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/init/bootstraptoken.go

    		return errors.Wrap(err, "error updating or creating token")
    	}
    	// Create RBAC rules that makes the bootstrap tokens able to get nodes
    	if err := nodebootstraptokenphase.AllowBoostrapTokensToGetNodes(client); err != nil {
    		return errors.Wrap(err, "error allowing bootstrap tokens to get Nodes")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 11 08:02:50 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/functional/src/test/groovy/org/gradle/internal/io/IoSupplierTest.groovy

    package org.gradle.internal.io
    
    
    import static org.gradle.internal.io.IoSupplier.wrap
    
    class IoSupplierTest extends AbstractIoTest {
    
        def "executed when it doesn't throw"() {
            expect:
            wrap({ "lajos" }).get() == "lajos"
        }
    
        @Override
        protected void executeWithException(Throwable exception) {
            wrap({ throw exception }).get()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 987 bytes
    - Viewed (0)
  9. platforms/core-runtime/functional/src/test/groovy/org/gradle/internal/io/IoFunctionTest.groovy

    
    import static org.gradle.internal.io.IoFunction.wrap
    
    class IoFunctionTest extends AbstractIoTest {
    
        def "executed when it doesn't throw"() {
            expect:
            wrap({ String t -> "wrapped:$t" }).apply("lajos") == "wrapped:lajos"
        }
    
        @Override
        protected void executeWithException(Throwable exception) {
            wrap({ String t ->
                assert t == "lajos"
                throw exception
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/invalid_input.mlir

        %0 = tf_executor.island {
          tf_executor.yield
        }
        tf_executor.fetch
      }
      func.return
    }
    
    // CHECK: functions must be of a single Graph with single op Islands: tf_executor.island must perfectly wrap a single op
    
    // -----
    
    func.func @main() {
      tf_executor.graph {
        %0 = tf_executor.island {
          %1 = "tf.Const"() {value = dense<1> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 2.3K bytes
    - Viewed (0)
Back to top