Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isImplicitBuild (0.31 sec)

  1. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/internal/ProjectBuilderImpl.java

            }
    
            @Override
            public Path getIdentityPath() {
                return Path.ROOT;
            }
    
            @Override
            public boolean isImplicitBuild() {
                return false;
            }
    
            @Override
            public Path calculateIdentityPathForProject(Path projectPath) {
                return projectPath;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:36 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultIncludedBuildRegistry.java

                nestedBuildsByRootDir.put(buildDir, includedBuild);
                pendingIncludedBuilds.add(includedBuild);
                addBuild(includedBuild);
            } else {
                if (includedBuild.isImplicitBuild() != isImplicit) {
                    throw new IllegalStateException("Unexpected state for build.");
                }
                // TODO: verify that the build definition is the same
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:19 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top