Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 6,078 for kimd (0.04 sec)

  1. src/vendor/golang.org/x/crypto/sha3/sha3_s390x.go

    // message digest' (KIMD) and 'compute last message digest' (KLMD)
    // instructions to compute SHA-3 and SHAKE hashes on IBM Z.
    
    import (
    	"hash"
    
    	"golang.org/x/sys/cpu"
    )
    
    // codes represent 7-bit KIMD/KLMD function codes as defined in
    // the Principles of Operation.
    type code uint64
    
    const (
    	// function codes for KIMD/KLMD
    	sha3_224  code = 32
    	sha3_256       = 33
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. src/internal/cpu/cpu.go

    	HasAES    bool // KM-AES{128,192,256} functions
    	HasAESCBC bool // KMC-AES{128,192,256} functions
    	HasAESCTR bool // KMCTR-AES{128,192,256} functions
    	HasAESGCM bool // KMA-GCM-AES{128,192,256} functions
    	HasGHASH  bool // KIMD-GHASH function
    	HasSHA1   bool // K{I,L}MD-SHA-1 functions
    	HasSHA256 bool // K{I,L}MD-SHA-256 functions
    	HasSHA512 bool // K{I,L}MD-SHA-512 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)
  3. src/vendor/golang.org/x/sys/cpu/cpu.go

    	HasSSE2             bool // Streaming SIMD extension 2 (always available on amd64)
    	HasSSE3             bool // Streaming SIMD extension 3
    	HasSSSE3            bool // Supplemental streaming SIMD extension 3
    	HasSSE41            bool // Streaming SIMD extension 4 and 4.1
    	HasSSE42            bool // Streaming SIMD extension 4 and 4.2
    	_                   CacheLinePad
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. src/crypto/aes/gcm_s390x.go

    	"errors"
    	"internal/byteorder"
    	"internal/cpu"
    )
    
    // This file contains two implementations of AES-GCM. The first implementation
    // (gcmAsm) uses the KMCTR instruction to encrypt using AES in counter mode and
    // the KIMD instruction for GHASH. The second implementation (gcmKMA) uses the
    // newer KMA instruction which performs both operations.
    
    // gcmCount represents a 16-byte big-endian count value.
    type gcmCount [16]byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. prow/integ-suite-kind.sh

    # LoadBalancer in Kind is supported using metallb
    export TEST_ENV=kind-metallb
    
    # See https://kind.sigs.k8s.io/docs/user/quick-start/#loading-an-image-into-your-cluster
    export PULL_POLICY=IfNotPresent
    
    # We run a local-registry in a docker container that KinD nodes pull from
    # These values are must match what is in config/trustworthy-jwt.yaml
    export KIND_REGISTRY_NAME="kind-registry"
    export KIND_REGISTRY_PORT="5000"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 05:42:41 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. pilot/pkg/xds/cds.go

    // Map of all configs that do not impact CDS
    var skippedCdsConfigs = sets.New(
    	kind.Gateway,
    	kind.WorkloadEntry,
    	kind.WorkloadGroup,
    	kind.AuthorizationPolicy,
    	kind.RequestAuthentication,
    	kind.Secret,
    	kind.Telemetry,
    	kind.WasmPlugin,
    	kind.ProxyConfig,
    	kind.DNSName,
    
    	kind.KubernetesGateway,
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 21:27:52 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/BuildLogicChangeFixture.groovy

        static List<Spec> specs() {
            [Kind.values(), Language.values()].combinations().collect { Kind kind, Language language ->
                new Spec(language, kind)
            }
        }
    
        @Immutable
        static class Spec {
            Language language
            Kind kind
    
            @Override
            String toString() {
                "$language project ($kind)"
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  8. pilot/pkg/xds/proxy_dependencies_test.go

    	}
    
    	sidecarScopeKindNames := map[kind.Kind]string{
    		kind.ServiceEntry: svcName, kind.VirtualService: vsName, kind.DestinationRule: drName, kind.Sidecar: scName,
    	}
    	for kind, name := range sidecarScopeKindNames {
    		sidecar.SidecarScope.AddConfigDependencies(model.ConfigKey{Kind: kind, Name: name, Namespace: nsName}.HashCode())
    	}
    	for kind := range UnAffectedConfigKinds[model.SidecarProxy] {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  9. src/log/slog/value.go

    		return kindStrings[k]
    	}
    	return "<unknown slog.Kind>"
    }
    
    // Unexported version of Kind, just so we can store Kinds in Values.
    // (No user-provided value has this type.)
    type kind Kind
    
    // Kind returns v's Kind.
    func (v Value) Kind() Kind {
    	switch x := v.any.(type) {
    	case Kind:
    		return x
    	case stringptr:
    		return KindString
    	case timeLocation, timeTime:
    		return KindTime
    	case groupptr:
    		return KindGroup
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/JsonModelWriter.kt

                            property("kind", trace.kind.name)
                            comma()
                            property("name", trace.name)
                            comma()
                            property("from", projectPathFrom(trace.trace))
                        }
    
                        else -> {
                            property("kind", trace.kind.name)
                            comma()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top