Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 5,264 for because3 (0.39 sec)

  1. platforms/software/maven/build.gradle.kts

        api(project(":resources"))
    
        api(libs.guava)
        api(libs.inject)
        api(libs.jsr305)
        api(libs.maven3Model) {
            because("We use the metadata model classes to create POM metadata files for components")
        }
        api(libs.maven3RepositoryMetadata) {
            because("We use the metadata model classes to create repository metadata files")
        }
    
        implementation(project(":functional"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/io/CharSequenceReader.java

       *   even back to `this.seq`. However, that may suggest that we're defending against concurrent
       *   mutation, which is not an actual risk because we use `synchronized`.
       * - Make `remaining` require a non-null `seq` argument. But this is a bit weird because the
       *   method, while it would avoid the instance field `seq` would still access the instance field
       *   `pos`.
       */
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/io/CharSequenceReader.java

       *   even back to `this.seq`. However, that may suggest that we're defending against concurrent
       *   mutation, which is not an actual risk because we use `synchronized`.
       * - Make `remaining` require a non-null `seq` argument. But this is a bit weird because the
       *   method, while it would avoid the instance field `seq` would still access the instance field
       *   `pos`.
       */
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. platforms/ide/ide/build.gradle.kts

        runtimeOnly(project(":testing-jvm"))
    
        testFixturesApi(project(":base-services")) {
            because("test fixtures export the Action class")
        }
        testFixturesApi(project(":logging")) {
            because("test fixtures export the ConsoleOutput class")
        }
        testFixturesApi(project(":tooling-api")) {
            because("test fixtures export the EclipseWorkspace and EclipseWorkspaceProject classes")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. src/go/doc/testdata/issue22856.go

    // NewSliceOfSlice is not a factory function because slices of a slice of
    // type *T are not factory functions of type T.
    func NewSliceOfSlice() [][]T { return []T{[]T{}} }
    
    // NewPointerSliceOfSlice is not a factory function because slices of a
    // slice of type *T are not factory functions of type T.
    func NewPointerSliceOfSlice() [][]*T { return []*T{[]*T{}} }
    
    // NewSlice3 is not a factory function because 3 nested slices of type T
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 12 16:37:37 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  6. .github/workflows/stale-issues.yml

              only-labels: "stat:awaiting response"
              stale-issue-message: > 
                This issue is stale because it has been open for 7 days with no activity.
                It will be closed if no further activity occurs. Thank you.
              close-issue-message: >
                This issue was closed because it has been inactive for 7 days since being marked as stale.
                Please reopen if you'd like to work on this further.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 23 20:04:38 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/rules/OverlappingOutputsIntegrationTest.groovy

            // second cannot be loaded from the cache because it overlaps with first
            result.assertTaskNotSkipped(second)
    
            when:
            withBuildCache().run(first)
            then:
            // first overwrites second's output if executed on its own
            sharedOutput.text == "Generated by ${first}"
            // first is not loaded from cache because of overlap
            result.assertTaskNotSkipped(first)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:54:14 UTC 2024
    - 30K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/CapabilityResolutionDetails.java

         *
         * @param notation the selected candidate
         *
         * @return this details instance
         */
        CapabilityResolutionDetails select(Object notation);
    
        /**
         * Automatically selects the candidate module which has the highest version of the
         * capability. A reason is automatically added so calling {@link #because(String)} would override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/BuildScriptVisibilityIntegrationTest.groovy

    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    
    class BuildScriptVisibilityIntegrationTest extends AbstractIntegrationSpec {
        @ToBeFixedForConfigurationCache(because = "test expects scripts evaluation")
        def "methods defined in project build script are visible to descendant projects"() {
            createDirs("child1")
            settingsFile << "include 'child1'"
            buildFile """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  10. src/runtime/mwbbuf.go

    // above sequence. There must be no preemption points while buf is in
    // use because it is a per-P resource. There must be no preemption
    // points between the buffer put and the write to memory because this
    // could allow a GC phase change, which could result in missed write
    // barriers.
    //
    // getX must be nowritebarrierrec to because write barriers here would
    // corrupt the write barrier buffer. It (and everything it calls, if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top