Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 454 for addLink (0.28 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/dynamic_serving_content.go

    	}
    	defer w.Close()
    
    	if err := w.Add(c.certFile); err != nil {
    		return fmt.Errorf("error adding watch for file %s: %v", c.certFile, err)
    	}
    	if err := w.Add(c.keyFile); err != nil {
    		return fmt.Errorf("error adding watch for file %s: %v", c.keyFile, err)
    	}
    	// Trigger a check in case the file is updated before the watch starts.
    	c.queue.Add(workItemKey)
    
    	for {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildActionRunner.java

             */
            @Nullable
            public Throwable getClientFailure() {
                return clientFailure;
            }
    
            /**
             * Returns a copy of this result adding the given failures.
             */
            public Result addFailures(List<Throwable> failures) {
                if (failures.isEmpty()) {
                    return this;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/plugins/PluginTarget.java

    /**
     * Represents the target that a plugin should be applied to, such as a Gradle, Settings or Project object.
     * This is used to apply a plugin to a target in a way that is appropriate for that target, such as adding
     * additional functionality specific to the target or disallowing certain types of plugins to be applied.
     */
    public interface PluginTarget {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheInitScriptsIntegrationTest.groovy

            then:
            output.indexOf('initscript2!') < output.indexOf('initscript1!')
            configurationCache.assertStateStored()
        }
    
        def "invalidates cache upon adding init script to command line"() {
    
            given:
            def initScript1 = file('initscript1.gradle.kts').tap {
                text = 'println("initscript1!")'
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    // the new line is added after the block containing hint
    // (or hint itself, if not in a block).
    //
    // If no hint is provided, addLine appends the line to the end of
    // the last block with a matching first token,
    // or to the end of the file if no such block exists.
    func (x *FileSyntax) addLine(hint Expr, tokens ...string) *Line {
    	if hint == nil {
    		// If no hint given, add to the last statement of the given type.
    	Loop:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/init_scripts.adoc

    1. *Specify a file on the command line* with the option `-I` or `--init-script` followed by the path to the script.
    +
    The command line option can appear more than once, each time adding another init script. The build will fail if any files specified on the command line do not exist.
    2. *Put a file called `init.gradle(.kts)`* in the `__$<<directory_layout.adoc#dir:gradle_user_home,GRADLE_USER_HOME>>__/` directory.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModuleStateModificationListener.kt

         *
         * #### Examples
         *
         *  - The name of the module is being changed.
         *  - The module's content roots are being changed, such as adding another source folder to a source module.
         *  - If module A depends on module B and module B is being removed, in addition to the removal event for module B, module A also
         *    receives an update event.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/RepositoryHandler.java

    import org.gradle.api.artifacts.repositories.IvyArtifactRepository;
    import org.gradle.api.artifacts.repositories.MavenArtifactRepository;
    import org.gradle.declarative.dsl.model.annotations.Adding;
    import org.gradle.internal.HasInternalProtocol;
    
    import java.util.Map;
    
    /**
     * A {@code RepositoryHandler} manages a set of repositories, allowing repositories to be defined and queried.
     */
    @HasInternalProtocol
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 03:42:11 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocIntegrationTest.groovy

            file('gradle/javadocs/jetbrains-annotations/package-list') << ''
    
            expect:
            succeeds("javadoc")
        }
    
        @Issue("https://github.com/gradle/gradle/issues/4841")
        def "adding custom javadoc options makes task out-of-date"() {
            given: "a javadoc task without custom options"
            buildFile << """
                task javadoc(type: Javadoc) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/ScopedServiceRegistryTest.groovy

    import org.gradle.internal.service.scopes.ServiceScope
    import spock.lang.Specification
    
    class ScopedServiceRegistryTest extends Specification {
    
        def "fails when registering a service by adding #method in a wrong scope"() {
            given:
            def registry = scopedRegistry(Scope.Build)
    
            when:
            registration(registry)
    
            then:
            def exception = thrown(IllegalArgumentException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top