Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 408 for Sall (0.03 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/catalog/parser/TomlCatalogFileParserTest.groovy

                def mutable = new DefaultMutableVersionConstraint("")
                spec.delegate = mutable
                spec.resolveStrategy = Closure.DELEGATE_FIRST
                spec.call()
                def version = DefaultImmutableVersionConstraint.of(mutable)
                assert model.version == version
            }
        }
    
        @CompileStatic
        private static class PluginSpec {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 05:41:21 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileHierarchySet.java

         */
        @CheckReturnValue
        public abstract FileHierarchySet plus(File path);
    
        /**
         * Returns a set that contains the union of this set and the given absolute path. The set contains the path itself, plus all its descendants.
         */
        @CheckReturnValue
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    It cannot be used in script plugins or init scripts.
    
    [[sec:subprojects_plugins_dsl]]
    ==== Applying plugins to all subprojects
    
    Suppose you have a <<multi_project_builds.adoc#multi_project_builds,multi-project build>>, you probably want to apply plugins to some or all of the subprojects in your build but not to the `root` project.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/css/base.css

    .docs-navigation a:hover {
        color: #35c1e4;
        text-decoration: none;
    }
    
    .docs-navigation a code {
        color: #02303A;
        overflow-wrap: break-word;
        padding: 0;
        word-break: break-all;
    }
    
    .docs-navigation a.active {
        text-decoration: underline;
        outline: 0;
        border: none;
        outline-style: none;
        -moz-outline-style: none;
    }
    
    .docs-navigation a.active:hover {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyHandler.java

     *   implementation group: 'com.google.code.guice', name: 'guice', version: '1.0'
     *
     *   //declaring arbitrary files as dependencies
     *   implementation files('hibernate.jar', 'libs/spring.jar')
     *
     *   //putting all jars from 'libs' onto compile classpath
     *   implementation fileTree('libs')
     * }
     * </pre>
     *
     * <h2>Advanced dependency configuration</h2>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolvedFilesApiIntegrationTest.groovy

            m.pom.expectGetBroken()
    
            when:
            maybeExpectDeprecation(expression)
            fails 'show'
    
            then:
            failure.assertHasCause("Could not resolve all files for configuration ':compile'.")
            failure.assertHasCause("Could not find any matches for org:test:1.0+ as no versions of org:test are available.")
            failure.assertHasCause("Could not resolve org:test2:2.0.")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/AbstractCodecTest.groovy

                assert decoder.readString() == value.toString()
            }
    
            where:
            value                            | _
            ""                               | _
            "all ascii"                      | _
            "\u0000\u0101\u3100"             | _
            "${1 + 2}"                       | _
            new StringBuilder("some string") | _
            CharBuffer.wrap("a string")      | _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest_pred_impl.h

    // Copyright 2006, Google Inc.
    // All rights reserved.
    //
    // Redistribution and use in source and binary forms, with or without
    // modification, are permitted provided that the following conditions are
    // met:
    //
    //     * Redistributions of source code must retain the above copyright
    // notice, this list of conditions and the following disclaimer.
    //     * Redistributions in binary form must reproduce the above
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationContainer.java

            assertMutable("migratingUnlocked(String, ConfigurationRole, Action)");
    
            if (ConfigurationRolesForMigration.ALL.contains(role)) {
                return createUnlockedConfiguration(name, role, action);
            } else {
                throw new InvalidUserDataException("Unknown migration role: " + role);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 00:10:35 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/ErrorParsingTest.kt

                    )
                )""".trimIndent()
            parse(code).assert(expected)
        }
    
        @Test
        fun `unexpected statement separator inside function call`() {
            val code = "id(\"plugin-id-1\";)"
    
            val expected = """
                ErroneousStatement (
                    ParsingError(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 09:41:25 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top