Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,019 for data_ (0.04 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/language/DataTypeInternal.kt

    object DataTypeInternal {
    
        @Serializable
        @SerialName("int")
        data object DefaultIntDataType : DataType.IntDataType {
            override val constantType: Class<Int> = Int::class.java
            override fun toString(): String = "Int"
            private
            fun readResolve(): Any = DefaultIntDataType
        }
    
        @Serializable
        @SerialName("long")
        data object DefaultLongDataType : DataType.LongDataType {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:03 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tile.go

    	}
    	return tileHash(data[start:end]), nil
    }
    
    // tileHash computes the subtree hash corresponding to the (2^K)-1 hashes in data.
    func tileHash(data []byte) Hash {
    	if len(data) == 0 {
    		panic("bad math in tileHash")
    	}
    	if len(data) == HashSize {
    		var h Hash
    		copy(h[:], data)
    		return h
    	}
    	n := len(data) / 2
    	return NodeHash(tileHash(data[:n]), tileHash(data[n:]))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_messages.go

    			m.supportedSignatureAlgorithms[i] = SignatureScheme(data[0])<<8 | SignatureScheme(data[1])
    			data = data[2:]
    		}
    	}
    
    	if len(data) < 2 {
    		return false
    	}
    	casLength := uint16(data[0])<<8 | uint16(data[1])
    	data = data[2:]
    	if len(data) < int(casLength) {
    		return false
    	}
    	cas := make([]byte, casLength)
    	copy(cas, data)
    	data = data[casLength:]
    
    	m.certificateAuthorities = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/SymbolByFqName.kt

                "typealias:",
                "enum_entry_initializer:",
                "script",
                "sam_constructor:"
            )
    
            fun create(data: String): SymbolData {
                val key = data.substringBefore(":")
                val value = data.substringAfter(":").trim()
                return when (key) {
                    "script" -> ScriptData
                    "package" -> PackageData(extractPackageFqName(value))
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. src/internal/chacha8rand/chacha8.go

    // does not need these.
    func Marshal(s *State) []byte {
    	data := make([]byte, 6*8)
    	copy(data, "chacha8:")
    	used := (s.c/ctrInc)*chunk + s.i
    	byteorder.BePutUint64(data[1*8:], uint64(used))
    	for i, seed := range s.seed {
    		byteorder.LePutUint64(data[(2+i)*8:], seed)
    	}
    	return data
    }
    
    type errUnmarshalChaCha8 struct{}
    
    func (*errUnmarshalChaCha8) Error() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:47:29 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. src/runtime/coverage/coverage.go

    func WriteMetaDir(dir string) error {
    	return cfile.WriteMetaDir(dir)
    }
    
    // WriteMeta writes the meta-data content (the payload that would
    // normally be emitted to a meta-data file) for the currently running
    // program to the writer 'w'. An error will be returned if the
    // operation can't be completed successfully (for example, if the
    // currently running program was not built with "-cover", or if a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:41:02 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. src/crypto/aes/gcm_s390x.go

    func (g *gcmAsm) paddedGHASH(hash *[16]byte, data []byte) {
    	siz := len(data) &^ 0xf // align size to 16-bytes
    	if siz > 0 {
    		ghash(&g.hashKey, hash, data[:siz])
    		data = data[siz:]
    	}
    	if len(data) > 0 {
    		var s [16]byte
    		copy(s[:], data)
    		ghash(&g.hashKey, hash, s[:])
    	}
    }
    
    // cryptBlocksGCM encrypts src using AES in counter mode using the given
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/DocumentResolution.kt

            data class LiteralValueResolved(val value: Any) : ValueNodeResolution, SuccessfulResolution
    
            sealed interface ValueFactoryResolution : ValueNodeResolution {
                data class ValueFactoryResolved(val function: SchemaFunction) : ValueFactoryResolution, SuccessfulResolution
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    		if n > 0 {
    			buf.Truncate(buf.Len() - 1) // remove trailing comma
    		}
    	case *http2DataFrame:
    		data := f.Data()
    		const max = 256
    		if len(data) > max {
    			data = data[:max]
    		}
    		fmt.Fprintf(&buf, " data=%q", data)
    		if len(f.Data()) > max {
    			fmt.Fprintf(&buf, " (%d bytes omitted)", len(f.Data())-max)
    		}
    	case *http2WindowUpdateFrame:
    		if f.StreamID == 0 {
    			buf.WriteString(" (conn)")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  10. pkg/volume/util/atomic_writer.go

    //
    //     The user visible files are symbolic links into the internal data directory:
    //     <target-dir>/podName         -> ..data/podName
    //     <target-dir>/usr -> ..data/usr
    //     <target-dir>/k8s -> ..data/k8s
    //
    //     The data directory itself is a link to a timestamped directory with
    //     the real data:
    //     <target-dir>/..data          -> ..2016_02_01_15_04_05.12345678/
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top