Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 111 for readlen (0.17 sec)

  1. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

    # Bytecode interception infrastructure: Instrumentation and bytecode upgrades
    
    
    ## Abstract
    
    This README describes the current state of bytecode interception infrastructure, used for configuration cache instrumentation and bytecode upgrades for property migration.
    
    
    ## Naming
    
    The naming is hard.
    That is the case also for this infrastructure.
    In next section we will use next terms:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/plugin/plugin.go

    	End   uint64   // virtual address of last byte in sym (Start+size-1)
    }
    
    // A UI manages user interactions.
    type UI interface {
    	// ReadLine returns a line of text (a command) read from the user.
    	// prompt is printed before reading the command.
    	ReadLine(prompt string) (string, error)
    
    	// Print shows a message to the user.
    	// It formats the text as fmt.Print would and adds a final \n if not already present.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/context/DefaultDaemonContext.java

                JavaLanguageVersion javaVersion = JavaLanguageVersion.of(decoder.readSmallInt());
                File registryDir = new File(decoder.readString());
                Long pid = decoder.readBoolean() ? decoder.readLong() : null;
                Integer idle = decoder.readBoolean() ? decoder.readInt() : null;
                int daemonOptCount = decoder.readInt();
                List<String> daemonOpts = new ArrayList<String>(daemonOptCount);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    	End   uint64   // virtual address of last byte in sym (Start+size-1)
    }
    
    // A UI manages user interactions.
    type UI interface {
    	// ReadLine returns a line of text (a command) read from the user.
    	// prompt is printed before reading the command.
    	ReadLine(prompt string) (string, error)
    
    	// Print shows a message to the user.
    	// It formats the text as fmt.Print would and adds a final \n if not already present.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/util/GFileUtils.java

            logDeprecation();
            BufferedReader reader = null;
            FileReader fileReader = null;
            try {
                fileReader = new FileReader(file);
                reader = new BufferedReader(fileReader);
    
                org.gradle.util.internal.LimitedDescription description = new org.gradle.util.internal.LimitedDescription(maxLines);
                String line = reader.readLine();
                while (line != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. src/os/file_unix.go

    	})
    	if e != nil {
    		return &LinkError{"symlink", oldname, newname, e}
    	}
    	return nil
    }
    
    func readlink(name string) (string, error) {
    	for len := 128; ; len *= 2 {
    		b := make([]byte, len)
    		var (
    			n int
    			e error
    		)
    		for {
    			n, e = fixCount(syscall.Readlink(name, b))
    			if e != syscall.EINTR {
    				break
    			}
    		}
    		// buffer too small
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/client-services/src/main/java/org/gradle/internal/daemon/client/clientinput/DaemonClientInputForwarder.java

                executor.execute(() -> {
                    while (true) {
                        String input;
                        try {
                            input = reader.readLine();
                        } catch (IOException e) {
                            throw UncheckedException.throwAsUncheckedException(e);
                        }
                        if (input == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheStandardStreamsIntegrationTest.groovy

                        String name;
                        if (args.length < 1) {
                            try (BufferedReader in = new BufferedReader(new InputStreamReader(System.in))) {
                                name = in.readLine();
                                if (name != null) {
                                    name = name.trim();
                                }
                            }
                        } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecIntegrationTest.groovy

            mainJavaFile.text = mainClass("""
                try {
                    String location = System.getProperty("input.file");
                    BufferedReader reader = new BufferedReader(new FileReader(location));
                    String input = reader.readLine();
                    reader.close();
                    FileWriter out = new FileWriter(args[args.length - 1], false);
                    out.write(input);
                    out.close();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. pkg/volume/util/atomic_writer.go

    		return err
    	}
    
    	// (2)
    	dataDirPath := filepath.Join(w.targetDir, dataDirName)
    	oldTsDir, err := os.Readlink(dataDirPath)
    	if err != nil {
    		if !os.IsNotExist(err) {
    			klog.Errorf("%s: error reading link for data directory: %v", w.logContext, err)
    			return err
    		}
    		// although Readlink() returns "" on err, don't be fragile by relying on it (since it's not specified in docs)
    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