Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 79 for augmented (0.25 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractDirectorySensitivityIntegrationSpec.groovy

            executer.requireOwnGradleUserHomeDir()
            createParameterizedTransformWithSensitivity(DirectorySensitivity.DEFAULT)
            file('augmented').mkdir()
            file('augmented/a').mkdir()
            file('augmented/b').mkdir()
            file('augmented/b/b1').createFile()
    
            file('bar/foo').mkdir()
            file('bar/foo/c').mkdir()
            file('bar/foo/d').mkdir()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  2. src/runtime/pprof/runtime.go

    // given labels added to the parent's label map.
    // Goroutines spawned while executing f will inherit the augmented label-set.
    // Each key/value pair in labels is inserted into the label map in the
    // order provided, overriding any previous value for the same key.
    // The augmented label map will be set for the duration of the call to f
    // and restored once f returns.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:59:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractLineEndingSensitivityIntegrationSpec.groovy

                }
    
                apply plugin: 'base'
    
                def augmented = Attribute.of('augmented', Boolean)
                def artifactType = Attribute.of('artifactType', String)
    
                allprojects {
                    dependencies {
                        attributesSchema {
                            attribute(augmented)
                        }
    
                        artifactTypes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ConfigurationContainerExtensions.kt

    import org.gradle.api.artifacts.Dependency
    import org.gradle.api.artifacts.DependencyScopeConfiguration
    import org.gradle.api.artifacts.ResolvableConfiguration
    
    
    /**
     * Allows the container to be configured via an augmented DSL.
     *
     * @param configuration The expression to configure this container with
     * @return The container.
     *
     * @since 8.4
     */
    @Suppress("nothing_to_inline")
    @Incubating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 22:24:03 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/enclosing.go

    			// 	i, augPos, augEnd, start, end) // debugging
    
    			// Does augmented child strictly contain [start, end)?
    			if augPos <= start && end <= augEnd {
    				_, isToken := child.(tokenNode)
    				return isToken || visit(child)
    			}
    
    			// Does [start, end) overlap multiple children?
    			// i.e. left-augmented child contains start
    			// but LR-augmented child does not contain end.
    			if start < childEnd && end > augEnd {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/SnapshotHierarchy.java

                .map(FileSystemLocationSnapshot.class::cast);
        }
    
        boolean hasDescendantsUnder(String absolutePath);
    
        /**
         * Returns a hierarchy augmented by the information of the snapshot at the absolute path.
         */
        @CheckReturnValue
        SnapshotHierarchy store(String absolutePath, MetadataSnapshot snapshot, NodeDiffListener diffListener);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/locking/DependencyLockingGraphVisitor.java

         * This happens only if there are no previous failures as otherwise lock state can't be asserted.
         *
         * @return the existing failures augmented with any locking related one
         */
        public Set<UnresolvedDependency> collectLockingFailures() {
            if (dependencyLockingState.mustValidateLockState()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. src/mime/type.go

    // When ext has no associated type, TypeByExtension returns "".
    //
    // Extensions are looked up first case-sensitively, then case-insensitively.
    //
    // The built-in table is small but on unix it is augmented by the local
    // system's MIME-info database or mime.types file(s) if available under one or
    // more of these names:
    //
    //	/usr/local/share/mime/globs2
    //	/usr/share/mime/globs2
    //	/etc/mime.types
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. okhttp-tls/src/main/kotlin/okhttp3/tls/HandshakeCertificates.kt

     *    be used to authenticate the server's certificate chain. Typically this is a set of well-known
     *    root certificates that is distributed with the HTTP client or its platform. It may be
     *    augmented by certificates private to an organization or service.
     *
     * ### Client Authentication
     *
     * This is authentication of the client by the server during the TLS handshake. Client
     * authentication is optional.
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/TaskContainerExtensions.kt

    import org.gradle.kotlin.dsl.support.delegates.TaskContainerDelegate
    
    import kotlin.reflect.KClass
    import kotlin.reflect.KProperty
    
    
    /**
     * Allows a [TaskContainer] to be configured via an augmented DSL that includes
     * a shorthand string notation for configuring existing tasks.
     *
     * ```kotlin
     * tasks {
     *     "build" {
     *         dependsOn("clean")
     *     }
     *     "clean"(Delete::class) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 22:09:44 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top