Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 306 for middle3 (0.13 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

            mavenRepo.module("org", "middle1").dependsOnModules('leaf1', 'leaf2').publish()
            mavenRepo.module("org", "middle2").dependsOnModules('leaf3', 'leaf4').publish()
            mavenRepo.module("org", "middle3").dependsOnModules('leaf2').publish()
    
            mavenRepo.module("org", "toplevel").dependsOnModules("middle1", "middle2").publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyReportTaskIntegrationTest.groovy

            mavenRepo.module("org", "leaf4").publish()
    
            mavenRepo.module("org", "middle1").dependsOnModules('leaf1', 'leaf2').publish()
            mavenRepo.module("org", "middle2").dependsOnModules('leaf3', 'leaf4').publish()
    
            mavenRepo.module("org", "toplevel").dependsOnModules("middle1", "middle2").publish()
    
            file("build.gradle") << """
                repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 05:32:54 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest.groovy

            repo.module('org', 'leaf3').publish()
            repo.module('org', 'leaf4').publish()
    
            repo.module('org', 'middle1').dependsOnModules("leaf1", "leaf2").publish()
            repo.module('org', 'middle2').dependsOnModules("leaf3", "leaf4").publish()
    
            repo.module('org', 'top').dependsOnModules("middle1", "middle2").publish()
    
            file('build.gradle') << """
                repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/CertificatePinner.kt

     * The easiest way to pin a host is turn on pinning with a broken configuration and read the
     * expected configuration when the connection fails. Be sure to do this on a trusted network, and
     * without man-in-the-middle tools like [Charles][charles] or [Fiddler][fiddler].
     *
     * For example, to pin `https://publicobject.com`, start with a broken configuration:
     *
     * ```java
     * String hostname = "publicobject.com";
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. src/testing/iotest/reader.go

    			return fmt.Errorf("Seek(%d, 0) from EOF = %d, %v, want %d, nil", middle/2, off, err, middle/2)
    		}
    		data, err = io.ReadAll(r)
    		if err != nil {
    			return fmt.Errorf("ReadAll from offset %d: %v", middle/2, err)
    		}
    		if !bytes.Equal(data, content[middle/2:]) {
    			return fmt.Errorf("ReadAll from offset %d = %q\n\twant %q", middle/2, data, content[middle/2:])
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/DependencyGenerator.groovy

                return false
            }
    
            Integer middle = numberOfProjects / 3
            if (middle == 0) {
                middle = 1
            }
            if (isEven(middle) && isOdd(numberOfProjects)) {
                middle -= 1
            }
            Integer middleInc = 1
            if (isOdd(numberOfProjects)) {
                middleInc = 2
            }
    
            while (middle < numberOfProjects) {
                for (v in layerSizes) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 5.2K bytes
    - Viewed (0)
  7. src/testing/panic_test.go

    		want: `
    ran inner cleanup 1
    ran middle cleanup 1
    ran outer cleanup
    --- FAIL: TestPanicHelper (N.NNs)
        panic_test.go:NNN: TestPanicHelper
    `,
    	}, {
    		desc:  "subtest panics with middle cleanup panic",
    		flags: []string{"-test_panic_test=TestPanicHelper/1", "-test_panic_cleanup", "-test_panic_cleanup_panic=middle"},
    		want: `
    ran inner cleanup 1
    ran middle cleanup 1
    ran outer cleanup
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 16:49:24 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  8. test/slice3err.go

    	_ = array[::k] // ERROR "middle index required in 3-index slice|invalid slice indices"
    	_ = array[i::k] // ERROR "middle index required in 3-index slice|invalid slice indices"
    	_ = array[:j:k]
    	_ = array[i:j:k]
    	
    	_ = slice[:]
    	_ = slice[i:]
    	_ = slice[:j]
    	_ = slice[i:j]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 14 21:28:48 UTC 2020
    - 5.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/SortedLists.java

        while (lower <= upper) {
          int middle = (lower + upper) >>> 1;
          int c = comparator.compare(key, list.get(middle));
          if (c < 0) {
            upper = middle - 1;
          } else if (c > 0) {
            lower = middle + 1;
          } else {
            return lower
                + presentBehavior.resultIndex(
                    comparator, key, list.subList(lower, upper + 1), middle - lower);
          }
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/SortedLists.java

        while (lower <= upper) {
          int middle = (lower + upper) >>> 1;
          int c = comparator.compare(key, list.get(middle));
          if (c < 0) {
            upper = middle - 1;
          } else if (c > 0) {
            lower = middle + 1;
          } else {
            return lower
                + presentBehavior.resultIndex(
                    comparator, key, list.subList(lower, upper + 1), middle - lower);
          }
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top