Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for readAsString (0.49 sec)

  1. platforms/core-runtime/daemon-server/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonMain.java

                gradleHomeDir = new File(decoder.readString());
                daemonBaseDir = new File(decoder.readString());
                idleTimeoutMs = decoder.readSmallInt();
                periodicCheckIntervalMs = decoder.readSmallInt();
                singleUse = decoder.readBoolean();
                nativeServicesMode = NativeServicesMode.values()[decoder.readSmallInt()];
                daemonUid = decoder.readString();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskNodeCodec.kt

                    }
                }
            }
        }
    
        private
        suspend fun ReadContext.readTask(): Task {
            val taskType = readClassOf<Task>()
            val projectPath = readString()
            val taskName = readString()
            val uniqueId = readLong()
            val incompatibleReason = readNullableString()
    
            val task = createTask(projectPath, taskName, taskType, uniqueId, incompatibleReason)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. src/debug/buildinfo/buildinfo.go

    			readPtr = func(b []byte) uint64 { return uint64(bo.Uint32(b)) }
    		} else if ptrSize == 8 {
    			readPtr = bo.Uint64
    		} else {
    			return "", "", errNotGoExe
    		}
    		vers = readString(x, ptrSize, readPtr, readPtr(data[16:]))
    		mod = readString(x, ptrSize, readPtr, readPtr(data[16+ptrSize:]))
    	}
    	if vers == "" {
    		return "", "", errNotGoExe
    	}
    	if len(mod) >= 33 && mod[len(mod)-17] == '\n' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  4. src/go/build/read.go

    	if !isIdent(c) {
    		r.syntaxError()
    		return
    	}
    	for isIdent(r.peekByte(false)) {
    		r.peek = 0
    	}
    }
    
    // readString reads a quoted string literal from the input.
    // If an identifier is not present, readString records a syntax error.
    func (r *importReader) readString() {
    	switch r.nextByte(true) {
    	case '`':
    		for r.err == nil {
    			if r.nextByte(false) == '`' {
    				break
    			}
    			if r.eof {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

            withGradleIsolate(rootBuild.gradle, userTypesCodec) {
                val identityPath = Path.path(readString())
                val hasProjects = readBoolean()
                if (hasProjects) {
                    val rootProjectName = readString()
                    val projects: List<ProjectWithNoWork> = readList().uncheckedCast()
                    BuildWithNoWork(identityPath, rootProjectName, projects)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheIO.kt

                    intermediateModels[modelKey] = address
                }
                val metadata = mutableMapOf<Path, BlockAddress>()
                readCollection {
                    val path = Path.path(readString())
                    val address = addressSerializer.read(this)
                    metadata[path] = address
                }
                val sideEffects = readList {
                    addressSerializer.read(this)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/DaemonMessageSerializer.java

                encoder.writeString(message.getResponse());
            }
    
            @Override
            public UserResponse read(Decoder decoder) throws Exception {
                return new UserResponse(decoder.readString());
            }
        }
    
        private static class CloseInputSerializer implements Serializer<CloseInput> {
            @Override
            public void write(Encoder encoder, CloseInput value) {
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/ProviderCodecs.kt

        }
    
        override suspend fun ReadContext.decode(): BuildServiceProvider<*, *>? =
            decodePreservingSharedIdentity {
                val buildIdentifier = readNonNull<BuildIdentifier>()
                val name = readString()
                val implementationType = readClassOf<BuildService<*>>()
                val isResolved = readBoolean()
                if (isResolved) {
                    val parameters = read() as BuildServiceParameters?
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/LocalFileDependencyBackedArtifactSetCodec.kt

                val mappings = registry.create()!!
                readCollection {
                    val name = readString()
                    val attributes = readNonNull<AttributeContainer>()
                    val mapping = mappings.create(name).attributes
                    @Suppress("UNCHECKED_CAST")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintCheckerTest.kt

                undefined()
    
            override fun readSmallLong(): Long =
                undefined()
    
            override fun getInputStream(): InputStream =
                undefined()
    
            override fun readString(): String =
                undefined()
    
            override fun readBoolean(): Boolean =
                undefined()
    
            override fun readBytes(buffer: ByteArray?): Unit =
                undefined()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top