Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 315 for approach (0.17 sec)

  1. platforms/documentation/docs/src/docs/userguide/running-builds/getting_started_eng.adoc

    Everyone has to start somewhere, and if you're new to Gradle, this is where to begin.
    
    To get started using Gradle:
    
    1. Read the <<gradle_intro,core concepts chapters>>.
    2. Follow the <<getting_started,tutorial>> for a hands-on approach.
    
    [[gradle_intro]]
    == 1. Gradle Core Concepts
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/credentials-handling/publishing-credentials/README.adoc

    This sample shows how credentials can be used when publishing artifacts to a Maven repository using link:{userManualPath}/build_environment.html#sec:project_properties[project properties].
    This approach allows you to keep sensitive configuration out of your project's source code and inject it only when needed.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/composite-builds/basic/README.adoc

    echo "includeBuild '../my-utils'" >> settings.gradle
    gradle run
    ```
    
    With this configuration, the module dependencies from `my-app` to `my-utils` will always be substituted with project dependencies.
    
    While simple, this approach has the downside of modifying the `my-app` build.
    
    == Using separate composite build
    
    It is also possible to create a separate composite build that includes both the `my-app` and `my-utils` builds.
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/cmd/server/testing/testserver.go

    // test, we can just look at the runtime call stack. However, bazel compiles go
    // binaries with the -trimpath option so the simple approach fails however we
    // can consult environment variables to derive the path.
    //
    // The approach taken here works for both go test and bazel on the assumption
    // that if and only if trimpath is passed, we are running under bazel.
    func pkgPath(t Logger) (string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 9K bytes
    - Viewed (1)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/getting_started_dev.adoc

    To get started engineering Gradle builds:
    
    1. Read the <<gradle_author_intro,build basics chapters>>.
    2. Follow the <<author_tutorial,tutorial>> for a hands-on approach.
    
    [[gradle_author_intro]]
    == 1. Authoring Gradle Builds Basics
    
    The basics section goes through some Gradle authoring basics so that you can quickly understand how to configure builds, create tasks, and write plugins.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/collect/testing/IteratorTester.java

     * variety of sequences of the {@link Iterator#next}, {@link Iterator#hasNext} and {@link
     * Iterator#remove} operations. This utility takes the brute-force approach of trying <i>all</i>
     * possible sequences of these operations, up to a given number of steps. So, if the caller
     * specifies to use <i>n</i> steps, a total of <i>3^n</i> tests are actually performed.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/TaskInternal.java

        /**
         * "Lifecycle dependencies" are dependencies of this task declared via an explicit {@link Task#dependsOn(Object...)} call,
         * as opposed to the recommended approach of connecting producer tasks' outputs to consumer tasks' inputs.
         * @return the dependencies of this task declared via an explicit {@link Task#dependsOn(Object...)}
         */
        @Internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:29:30 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/vcweb/hg.go

    		// configuration for hgweb varies by Python version (2 vs 3), and we would
    		// rather not go rooting around trying to find the right Python version to
    		// run.
    		//
    		// Instead, we'll take a somewhat more roundabout approach: we assume that
    		// if "hg" works at all then "hg serve" works too, and we'll execute that as
    		// a subprocess, using a reverse proxy to forward the request and response.
    
    		ctx, cancel := context.WithCancel(req.Context())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 02:52:19 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/execution/FilePropertyVisitor.java

             * and org.gradle.api.internal.tasks.BaseSnapshotInputsBuildOperationResult.FilePropertyAttribute#DIRECTORY_SENSITIVITY_IGNORE_DIRECTORIES will not be present.
             * This loose approach is used to allow the various types of normalization supported by Gradle to evolve,
             * and their usage to be conveyed here without changing this interface.
             */
            Set<String> getPropertyAttributes();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/telemetry/selector.go

    		},
    	}
    }
    
    // Analyze implements Analyzer
    func (a *SelectorAnalyzer) Analyze(c analysis.Context) {
    	podsToTelemetries := make(map[resource.FullName][]*resource.Instance)
    
    	// This is using an unindexed approach for matching selectors.
    	// Using an index for selectoes is problematic because selector != label
    	// We can match a label to a selector, but we can't generate a selector from a label.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top