Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 326 for Sall (0.08 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/api/DaemonConnection.java

         *
         * @return null On end of connection or timeout.
         */
        Object receive(long timeoutValue, TimeUnit timeoutUnits);
    
        /**
         * Blocks until all handlers have been notified and any queued messages have been dispatched to the client.
         */
        @Override
        void stop();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/dsl/KotlinDslPluginGradlePluginCrossVersionSmokeTest.kt

                    "The Provider.forUseAtConfigurationTime method has been deprecated. " +
                        "This is scheduled to be removed in Gradle 9.0. " +
                        "Simply remove the call. " +
                        "Consult the upgrading guide for further information: " +
                        "https://docs.gradle.org/current/userguide/upgrading_version_7.html#for_use_at_configuration_time_deprecation")
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:39:25 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblemsSummary.kt

                        causes.add(it)
                    }
                }
                return true
            }
        }
    }
    
    
    internal
    class Summary(
        /**
         * Total of all problems, regardless of severity.
         */
        val problemCount: Int,
    
        /**
         * Total number of problems that are failures.
         */
        val failureCount: Int,
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/CheckstylePlugin.java

            ProviderFactory providers = project.getProviders();
            Provider<RegularFile> reportsDir = layout.file(providers.provider(() -> extension.getReportsDir()));
            task.getReports().all(action(report -> {
                report.getRequired().convention(!report.getName().equals("sarif"));
                report.getOutputLocation().convention(
                    layout.getProjectDirectory().file(providers.provider(() -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 08:01:57 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskExecutionIntegrationTest.groovy

                def tasksFile = file("tasks.txt")
                tasksFile.text = ''
                gradle.taskGraph.whenReady {
                    allprojects {
                        tasks.matching { it.group == "mygroup" }.all {
                            tasksFile << path + '\\n'
                        }
                    }
                }
            """
        }
    
        List<String> getCreatedTasks() {
            file("tasks.txt").readLines().sort()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. subprojects/core/src/testFixtures/groovy/org/gradle/process/ShellScript.groovy

         * String literals include surrounding quotes and have special symbols escaped.
         * The returned string can be used to generate call to a method that accepts varargs.
         *
         * @param cmd the command line elements to be converted
         * @return a comma-separated list of string literals
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleBuildDocumentationPlugin.java

                task.getPort().convention(webserverPort);
    
                task.dependsOn(extension.getRenderedDocumentation());
            });
    
            tasks.register("docs", task -> {
                task.setDescription("Generates all documentation");
                task.setGroup("documentation");
                task.dependsOn(extension.getRenderedDocumentation());
            });
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 20:04:00 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/package-info.java

     *  </ul>
     *  <p>
     *  On serialization of an object of some type, the {@link org.gradle.internal.serialize.graph.codecs.BindingsBackedCodec bindings-backed composite codec}
     *  will query all bindings to find which one knows how to encode the type at hand,
     *  by invoking {@link org.gradle.internal.serialize.graph.codecs.Binding#encodingForType(java.lang.Class)} on each binding. If a binding supports the type,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/archive/ZipEntry.java

        String getName();
    
        /**
         * This method or {@link #withInputStream(IoFunction)} ()} may or may not support being called more than
         * once per entry.  Use {@link #canReopen()} to determine if more than one call is supported.
         */
        byte[] getContent() throws IOException;
    
        /**
         * Declare an action to be run against this ZipEntry's content as a {@link InputStream}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:00 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. 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)
Back to top