Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 234 for registry_ (0.22 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelElementNode.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model.internal.registry;
    
    import com.google.common.base.Predicate;
    import com.google.common.collect.ImmutableSet;
    import com.google.common.collect.Iterables;
    import org.gradle.internal.Cast;
    import org.gradle.model.RuleSource;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/cleanup/DefaultBuildOutputCleanupRegistry.java

                    // See https://github.com/gradle/gradle/issues/18460.
                    LOGGER.debug("More outputs are being registered even though the build output cleanup registry has already been finalized. New outputs: {}", files);
                } else {
                    this.outputs.add(fileCollectionFactory.resolving(files));
                }
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/scaninfo/DefaultDaemonScanInfo.java

    import org.gradle.BuildAdapter;
    import org.gradle.BuildResult;
    import org.gradle.api.Action;
    import org.gradle.internal.InternalBuildAdapter;
    import org.gradle.internal.event.ListenerManager;
    import org.gradle.launcher.daemon.registry.DaemonRegistry;
    import org.gradle.launcher.daemon.server.expiry.DaemonExpirationListener;
    import org.gradle.launcher.daemon.server.expiry.DaemonExpirationResult;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/configure/NativeBinaries.java

            // So here we are just closing over the safely reusable things and then using proper dependencies for the tool chain registry.
            // Unfortunately, we can't do it in the create action because that would fire _after_ @Defaults rules.
            // We have to use a @Defaults rule to assign the tool chain because it needs to be there in user @Mutate rules
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/IntegrationTestBuildContext.java

        @Nullable
        public TestFile getLocalRepository() {
            return optionalFile("integTest.localRepository");
        }
    
        public TestFile getDaemonBaseDir() {
            return file("org.gradle.integtest.daemon.registry", "build/daemon");
        }
    
        public TestFile getGradleUserHomeDir() {
            return file("integTest.gradleUserHomeDir", "intTestHomeDir/distributions-unknown");
        }
    
        public TestFile getTmpDir() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/caching/CrossBuildCachingRuleExecutor.java

            DefaultImplicitInputRegistrar registrar = new DefaultImplicitInputRegistrar();
            ImplicitInputsCapturingInstantiator instantiator = findInputCapturingInstantiator(action);
            if (instantiator != null) {
                action = action.withInstantiator(instantiator.capturing(registrar));
            }
            // First step is to find an entry with the explicit inputs in the cache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/BoringProjectState.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model.internal.registry;
    
    public interface BoringProjectState {
        void withMutableState(Runnable run);
    
        BoringProjectState IDENTITY = new BoringProjectState() {
            @Override
            public void withMutableState(Runnable run) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 916 bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/main/java/org/gradle/api/internal/resolve/LocalLibraryResolver.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.resolve;
    
    import org.gradle.model.internal.registry.ModelRegistry;
    import org.gradle.platform.base.VariantComponent;
    
    import java.util.Collection;
    
    public interface LocalLibraryResolver {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 939 bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/registry/DaemonInfo.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.launcher.daemon.registry;
    
    import com.google.common.annotations.VisibleForTesting;
    import com.google.common.base.Preconditions;
    import org.gradle.internal.remote.Address;
    import org.gradle.internal.serialize.Decoder;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  10. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/plugins/XCTestConventionPlugin.java

    import org.gradle.language.swift.internal.DefaultSwiftPlatform;
    import org.gradle.language.swift.plugins.SwiftBasePlugin;
    import org.gradle.language.swift.tasks.SwiftCompile;
    import org.gradle.model.internal.registry.ModelRegistry;
    import org.gradle.nativeplatform.TargetMachine;
    import org.gradle.nativeplatform.TargetMachineFactory;
    import org.gradle.nativeplatform.platform.internal.DefaultNativePlatform;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.9K bytes
    - Viewed (0)
Back to top