Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 573 for Sall (0.09 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

                }
            }
        }
    
        private void addAnchorsForHeadings(Document document) {
            // add anchors for all of the headings
            for (Element heading : document.body().select("h2,h3,h4")) {
                String anchorName = heading.text().toLowerCase().replaceAll(" ", "-");
                heading.attr("id", anchorName);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/NativeCompilerTest.groovy

                getPreCompiledHeaderObjectFile() >> null
            }
    
            and:
            def actualArgs = compiler.getArguments(compileSpec)
    
            then:
            // Almost all options are stripped when using the options file
            actualArgs != commandLineArgs
            // options file should exist
            testDir.file("options.txt").exists()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Codec.kt

        var immediateMode: Boolean // TODO:configuration-cache prevent StackOverflowErrors when crossing protocols
    
        suspend fun read(): Any?
    
        fun readClass(): Class<*>
    
        /**
         * Defers the given [action] until all objects have been read.
         */
        fun onFinish(action: () -> Unit)
    
        fun <T : Any> getSingletonProperty(propertyType: Class<T>): T
    }
    
    
    inline
    fun <reified T : Any> ReadContext.getSingletonProperty(): T =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/SocketConnection.java

                    count = socket.write(buffer);
                    if (count < 0) {
                        throw new EOFException();
                    } else if (count == 0) {
                        // buffer was full, just call Thread.yield
                        Thread.yield();
                    }
                }
                return count;
            }
    
            private void waitForWriteBufferToDrain() throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/AbstractInstrumentationProcessor.java

                // The order in which the executable elements are listed should be the order in which they appear in the code but
                // we take an extra measure of care here and ensure the ordering between all elements.
                .sorted(Comparator.comparing(AbstractInstrumentationProcessor::elementQualifiedName))
                .distinct()
                .collect(Collectors.toList());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/plan/MissingTaskDependencyDetector.java

            node.getHardSuccessors().forEach(successor -> {
                // We are searching for dependencies between tasks, so we can skip everything which is not a task when searching.
                // For example we can skip all the transform nodes between two task nodes.
                if (successor instanceof TaskNode || successor instanceof OrdinalNode) {
                    if (seenNodes.add(successor)) {
                        queue.add(successor);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/daemon/DaemonGroovyCompiler.java

            MinimalGroovyCompilerDaemonForkOptions groovyOptions = spec.getGroovyCompileOptions().getForkOptions();
            // Ant is optional dependency of groovy(-all) module but mandatory dependency of Groovy compiler;
            // that's why we add it here. The following assumes that any Groovy compiler version supported by Gradle
            // is compatible with Gradle's current Ant version.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/DefaultAnalysisSchema.kt

        @Serializable
        @SerialName("configuringLambdaArgument")
        data class DefaultConfiguringLambdaArgument(override val objectType: DataTypeRef) : ConfigureAccessor.ConfiguringLambdaArgument
    
        // TODO: configure all elements by addition key?
        // TODO: Do we want to support configuring external objects?
    }
    
    
    @Serializable
    data class DefaultFqName(override val packageName: String, override val simpleName: String) : FqName {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeStateTest.groovy

            def parent2Edge = edge(root, false)
            def parent1 = parent1Edge.targetComponent.nodes[0]
            def parent2 = parent2Edge.targetComponent.nodes[0]
            collectOwnStrictVersions(root, ['a']) //root, on all paths
            collectOwnStrictVersions(parent1, ['b', 'c'])
            collectOwnStrictVersions(parent2, ['b', 'd'])
    
            def child = nextNode()
            def edge1 = edge(parent1, false, null, child)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/build.gradle

                displayName = "Aggregating test results of an application/distribution (Incubating)"
                description = "Report all test results using the application/distribution of a multi-module project."
                category = "Java"
                common {
                    from(templates.javaApplicationAsSubproject)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
Back to top