Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for week (0.03 sec)

  1. .teamcity/src/main/kotlin/model/CIBuildModel.kt

        READY_FOR_RELEASE("Ready for Release", "Once a day: Rerun tests in more environments", "ReadyforRelease"),
        HISTORICAL_PERFORMANCE("Historical Performance", "Once a week: Run performance tests for multiple Gradle versions", "HistoricalPerformance"),
        EXPERIMENTAL_VFS_RETENTION("Experimental FS Watching", "On demand checks to run tests with file system watching enabled", "ExperimentalVfsRetention"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/GeneratePrecompiledScriptPluginAccessors.kt

        }
    
        override fun flush() = safely {
            captureOutput.flush()
            super.flush()
        }
    
        fun stop() = safely {
            isCapturing!!.remove()
            // Give a chance for other threads' weak references to the local to be GCed if any
            isCapturing = null
        }
    
        private
        fun safely(block: () -> Unit) =
            try {
                synchronized(this, block)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractGradleViolationRule.groovy

            if (method.changeStatus == JApiChangeStatus.REMOVED) {
                return false
            }
            // @Override has source retention - so we need to peek into the sources
            return repository.isOverride(method)
        }
    
        Violation acceptOrReject(JApiCompatibility member, Violation rejection) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/Collectors.java

                if (o == null || getClass() != o.getClass()) {
                    return false;
                }
                ElementsFromCollection<?> that = (ElementsFromCollection<?>) o;
    
                // We're fine with having weak contract of Iterable/Collection.equals.
                @SuppressWarnings("UndefinedEquals")
                boolean result = Objects.equal(value, that.value);
                return result;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:15:09 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. .idea/inspectionProfiles/Gradle.xml

        <option name="myName" value="Gradle" />
        <inspection_tool class="21f28a86-2ba8-3048-9ce1-b6f10d4d4a12" enabled="true" level="WEAK WARNING" enabled_by_default="true" editorAttributes="INFO_ATTRIBUTES" />
        <inspection_tool class="73cd39e8-e54e-3a38-ad1b-b883fff4b1eb" enabled="true" level="WEAK WARNING" enabled_by_default="true" editorAttributes="INFO_ATTRIBUTES" />
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:43 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/SourceMetaDataVisitor.java

            classStack.push(currentClass);
            action.run();
            classStack.pop();
        }
    
        private ClassMetaData getCurrentClass() {
            return classStack.peek();
        }
    
        private void visitExtendedTypes(NodeWithExtends<?> node) {
            ClassMetaData currentClass = getCurrentClass();
            for (ClassOrInterfaceType extendedType : node.getExtendedTypes()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 21 13:27:02 UTC 2023
    - 11.7K bytes
    - Viewed (0)
Back to top