Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 204 for Child (0.11 sec)

  1. settings.gradle.kts

        }
    
        private fun NodeWriter.platform(platform: Platform) {
            println()
            node("subgraph ${platform.id}[\"${platform.name} platform\"]") {
                for (child in platform.children) {
                    element(child)
                }
            }
            node("end")
            node("style ${platform.id} fill:#c2e0f4,stroke:#3498db,stroke-width:2px,color:#000;")
            for (dep in platform.uses) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java

        }
    
        @Test
        public void findRootProjectWithAttribute() {
            Path test = Paths.get("src/test/projects/root-attribute");
            assertEquals(test, new DefaultRootLocator().findRoot(test.resolve("child")));
        }
    
        @Test
        public void testPropertiesInterpolation() throws Exception {
            // Arrange
            CliRequest request = new CliRequest(
                    new String[] {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  3. pkg/controller/garbagecollector/graph_builder.go

    				// the ownerNode is cluster-scoped and virtual, and does not match the child node's namespace.
    				// the owner could be a missing instance of a namespaced type incorrectly referenced by a cluster-scoped child (issue #98040).
    				// enqueue this child to attemptToDelete to verify parent references.
    				hasPotentiallyInvalidOwnerReference = true
    			}
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  4. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/metadata/ModuleMetadataSpecBuilder.java

                    ComponentWithVariants componentWithVariants = (ComponentWithVariants) component;
                    for (SoftwareComponent child : componentWithVariants.getVariants()) {
                        owners.put(child, component);
                    }
                }
            }
        }
    
        private void collectCoordinates(Map<SoftwareComponent, ComponentData> coordinates) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:07:04 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. pkg/test/framework/testcontext.go

    	CreateTmpDirectoryOrFail(prefix string) string
    
    	// SkipDumping will skip dumping debug logs/configs/etc for this scope only (child scopes are not skipped).
    	SkipDumping()
    
    	// Methods for interacting with the underlying *testing.T.
    
    	Error(args ...any)
    	Errorf(format string, args ...any)
    	Failed() bool
    	Name() string
    	Skip(args ...any)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromGroovyDslIntegrationTest.groovy

            "allprojects"                       | "subprojects via 'allprojects'"
            "subprojects"                       | "subprojects"
            "configure(childProjects.values())" | "child projects"
        }
    
        def "reports problem when build script uses #property property to apply plugins to another project"() {
            createDirs("a", "b")
            settingsFile << """
                include("a")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  7. src/testing/fstest/testfs.go

    		switch {
    		case name == ".", name == "..", name == "":
    			t.errorf("%s: ReadDir: child has invalid name: %#q", dir, name)
    			continue
    		case strings.Contains(name, "/"):
    			t.errorf("%s: ReadDir: child name contains slash: %#q", dir, name)
    			continue
    		case strings.Contains(name, `\`):
    			t.errorf("%s: ReadDir: child name contains backslash: %#q", dir, name)
    			continue
    		}
    		path := prefix + name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitPluginIntegrationTest.groovy

            and:
            def customSettings = existingDslFixture.scriptFile("customSettings")
            customSettings.parentFile.createDirs("child")
            customSettings << """
                include("child")
            """
    
            when:
            executer.usingSettingsFile(customSettings)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileCompatibilityIntegrationTest.groovy

        def sourceUsingLanguageFeatureFromJava17() {
            """
                // Sealed classes and interfaces are only available in Java 17
                public sealed interface Parent permits Parent.Child {
                    public static record Child(String name) implements Parent {}
                }
            """
        }
    
        def "source compatibility lower than compiler version does not allow accessing newer Java language features"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java

                }
                if (StringUtil.isNotBlank(u)) {
                    if (logger.isDebugEnabled()) {
                        logger.debug("Add Child: {}", u);
                    }
                    urlList.add(u);
                } else if (logger.isDebugEnabled()) {
                    logger.debug("Skip Child: {}", u);
                }
            } catch (final MalformedURLException e) {
                logger.warn("Malformed URL: " + attrValue, e);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top