Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,008 for prepends (0.24 sec)

  1. guava-tests/test/com/google/common/reflect/InvokableTest.java

        Invokable<?, Prepender> delegate = Prepender.constructor(String.class, int.class);
        Prepender prepender = delegate.invoke(null, "a", 1);
        assertEquals("a", prepender.prefix);
        assertEquals(1, prepender.times);
      }
    
      public void testConstructor_returning() throws Exception {
        Invokable<?, Prepender> delegate =
            Prepender.constructor(String.class, int.class).returning(Prepender.class);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/native/xcode_plugin.adoc

    [[sec:xcode_lifecycle_tasks]]
    === Lifecycle Tasks
    
    `xcode` — link:{groovyDslPath}/org.gradle.api.Task.html[Task]::
    _Depends on_: `__projectName__XcodeWorkspace` and all `xcodeProject` tasks
    +
    Generates all Xcode configuration files.
    
    `cleanXcode` — link:{groovyDslPath}/org.gradle.api.tasks.Delete.html[Delete]::
    _Depends on_: all Xcode project and workspace file clean tasks
    +
    Removes all Xcode configuration files.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/core-plugins/visual_studio_plugin.adoc

    === Lifecycle Tasks
    
    `visualStudio` — link:{groovyDslPath}/org.gradle.api.Task.html[Task]::
    _Depends on_: `__projectName__VisualStudioSolution` and all Visual Studio project file generation tasks
    +
    Generates all Visual Studio configuration files.
    
    `cleanVisualStudio` — link:{groovyDslPath}/org.gradle.api.tasks.Delete.html[Delete]::
    _Depends on_: all Visual Studio project and solution file clean tasks
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/artifact/MavenArtifactProperties.java

     *
     * @see org.eclipse.aether.artifact.ArtifactProperties
     * @since 4.0.0
     */
    public final class MavenArtifactProperties {
        /**
         * A boolean flag indicating whether the artifact presents some kind of bundle that physically includes its
         * dependencies, e.g. a fat WAR.
         */
        public static final String INCLUDES_DEPENDENCIES = "includesDependencies";
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    Copies production resources into the production resources directory.
    
    `classes`::
    _Depends on_: `compileJava`, `processResources`
    +
    This is an aggregate task that just depends on other tasks. Other plugins may attach additional compilation tasks to it.
    
    `compileTestJava` — link:{groovyDslPath}/org.gradle.api.tasks.compile.JavaCompile.html[JavaCompile]::
    _Depends on_: `classes`, and all tasks that contribute to the test compilation classpath
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/artifact/MavenArtifactProperties.java

     *
     * @see org.eclipse.aether.artifact.ArtifactProperties
     * @since 4.0.0
     */
    public final class MavenArtifactProperties {
        /**
         * A boolean flag indicating whether the artifact presents some kind of bundle that physically includes its
         * dependencies, e.g. a fat WAR.
         */
        public static final String INCLUDES_DEPENDENCIES = "includesDependencies";
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/credentials-handling/pass-credentials-to-external-tool-via-stdin/README.adoc

    This sample shows how credentials can be passed to an external tool that normally accepts them via standard input.
    
    Let's pretend that we have to log in to some system before performing some operation.
    This could be some external system that requires authentication before allowing us to upload some artifacts.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. build/lib/release.sh

          local client_bins=("${KUBE_CLIENT_BINARIES[@]}")
          if [[ "${platform%/*}" = 'windows' ]]; then
            client_bins=("${KUBE_CLIENT_BINARIES_WIN[@]}")
          fi
    
          # This fancy expression will expand to prepend a path
          # (${LOCAL_OUTPUT_BINPATH}/${platform}/) to every item in the
          # client_bins array.
          cp "${client_bins[@]/#/${LOCAL_OUTPUT_BINPATH}/${platform}/}" \
            "${release_stage}/client/bin/"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/core-plugins/project_report_plugin.adoc

    `taskReport` — link:{groovyDslPath}/org.gradle.api.tasks.diagnostics.TaskReportTask.html[TaskReportTask]::
    Generates the project task report.
    
    `projectReport` — link:{groovyDslPath}/org.gradle.api.Task.html[Task]::
    _Depends on_: `dependencyReport`, `propertyReport`, `taskReport`, `htmlDependencyReport`
    +
    Generates all project reports.
    
    
    [[sec:project_reports_project_layout]]
    == Project layout
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/ClassifierToVariantResolveIntegrationTest.groovy

                        }
                    }
                }
            }
    
        }
    
        /**
         * A Gradle consumer should _not_ do this, but use attributes instead. However,
         * there's nothing which prevents this from being done, so we must make sure it is
         * supported. The path is exactly the same as when a Maven consumer wants to depend
         * on a library published with Gradle that uses variants published using different
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.7K bytes
    - Viewed (0)
Back to top