Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 502 for picard (0.14 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/plan/edges/DependencySuccessorsOnlyNodeSet.java

            orderedDependencies.add(node);
            if (waitingFor == null) {
                waitingFor = new HashSet<>();
            }
            // It would be better to discard dependencies that have already completed at this point, rather than collecting them and checking their state later
            // However, it is not always known whether a dependency will be scheduled or not when it is added here.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/OutputEventTransformer.java

    import org.gradle.util.internal.GUtil;
    
    import java.util.Collections;
    import java.util.Map;
    import java.util.Set;
    import java.util.concurrent.ConcurrentHashMap;
    
    /**
     * Transforms the stream of output events to discard progress operations that are not interesting to the logging subsystem. This reduces the amount of work that downstream consumers have to do to process the stream. For example, these discarded events don't need to be written to the daemon client.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/text/transform/transform.go

    	return len(src), nil
    }
    
    type discard struct{ NopResetter }
    
    func (discard) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {
    	return 0, len(src), nil
    }
    
    var (
    	// Discard is a Transformer for which all Transform calls succeed
    	// by consuming all bytes and writing nothing.
    	Discard Transformer = discard{}
    
    	// Nop is a SpanningTransformer that copies src to dst.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 21 22:10:00 UTC 2020
    - 21.7K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/io/FilesCreateTempDirTest.java

     */
    
    @SuppressWarnings("deprecation") // tests of a deprecated method
    public class FilesCreateTempDirTest extends TestCase {
      public void testCreateTempDir() throws IOException {
        if (JAVA_IO_TMPDIR.value().equals("/sdcard")) {
          assertThrows(IllegalStateException.class, Files::createTempDir);
          return;
        }
        File temp = Files.createTempDir();
        try {
          assertThat(temp.exists()).isTrue();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 06 17:11:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/DependencyGenerator.groovy

     *
     * For example when numberOfProjects = 150, 10 layers will be created with sizes of
     * [1, 2, 6, 16, 50, 50, 16, 6, 2, 1]
     *
     * The dependencies are picked randomly with a random number generator that is seeded with the project number.
     * This way the function returns the same results each time it is evaluated.
     */
    class DependencyGenerator {
        Integer numberOfProjects
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 5.2K bytes
    - Viewed (0)
  6. src/net/hosts.go

    			return
    		}
    	}
    
    	if file != nil {
    		defer file.close()
    		for line, ok := file.readLine(); ok; line, ok = file.readLine() {
    			if i := bytealg.IndexByteString(line, '#'); i >= 0 {
    				// Discard comments.
    				line = line[0:i]
    			}
    			f := getFields(line)
    			if len(f) < 2 {
    				continue
    			}
    			addr := parseLiteralIP(f[0])
    			if addr == "" {
    				continue
    			}
    
    			var canonical string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 07:21:38 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/vcweb/vcstest/vcstest.go

    	if err != nil {
    		return nil, err
    	}
    	defer func() {
    		if err != nil {
    			os.RemoveAll(workDir)
    		}
    	}()
    
    	logger := log.Default()
    	if !testing.Verbose() {
    		logger = log.New(io.Discard, "", log.LstdFlags)
    	}
    	handler, err := vcweb.NewServer(scriptDir, workDir, logger)
    	if err != nil {
    		return nil, err
    	}
    	defer func() {
    		if err != nil {
    			handler.Close()
    		}
    	}()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:44:48 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/http2/Settings.kt

        }
    
      fun clear() {
        set = 0
        values.fill(0)
      }
    
      operator fun set(
        id: Int,
        value: Int,
      ): Settings {
        if (id < 0 || id >= values.size) {
          return this // Discard unknown settings.
        }
    
        val bit = 1 shl id
        set = set or bit
        values[id] = value
        return this
      }
    
      /** Returns true if a value has been assigned for the setting `id`. */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/MultiProjectContinuousIntegrationTest.groovy

            // MacOS builds with Intel machines can be too fast on CI and
            // changes generated during build are picked up only after the build which retriggers the build
            // Fix for issue: https://github.com/gradle/gradle-private/issues/3728
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6K bytes
    - Viewed (0)
  10. src/log/slog/text_handler_test.go

    func TestTextHandlerAlloc(t *testing.T) {
    	testenv.SkipIfOptimizationOff(t)
    	r := NewRecord(time.Now(), LevelInfo, "msg", 0)
    	for i := 0; i < 10; i++ {
    		r.AddAttrs(Int("x = y", i))
    	}
    	var h Handler = NewTextHandler(io.Discard, nil)
    	wantAllocs(t, 0, func() { h.Handle(context.Background(), r) })
    
    	h = h.WithGroup("s")
    	r.AddAttrs(Group("g", Int("a", 1)))
    	wantAllocs(t, 0, func() { h.Handle(context.Background(), r) })
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 19:05:59 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top