Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 1,194 for Child (0.05 sec)

  1. pkg/api/node/util.go

    					"%s: %s is %s",
    					fieldPath.Child("matchExpressions").Index(i).Child("key"),
    					expression.Key,
    					msg,
    				),
    			)
    		}
    	}
    
    	// use of deprecated node labels in matchLabels
    	for label := range nodeSelector.MatchLabels {
    		if msg, deprecated := GetNodeLabelDeprecatedMessage(label); deprecated {
    			warnings = append(warnings, fmt.Sprintf("%s: %s", fieldPath.Child("matchLabels").Child(label), msg))
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 25 07:15:34 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  2. pkg/controller/garbagecollector/graph_builder_test.go

    import (
    	"reflect"
    	"testing"
    )
    
    func TestGetAlternateOwnerIdentity(t *testing.T) {
    	ns1child1 := makeID("v1", "Child", "ns1", "child1", "childuid11")
    	ns1child2 := makeID("v1", "Child", "ns1", "child2", "childuid12")
    
    	ns2child1 := makeID("v1", "Child", "ns2", "child1", "childuid21")
    
    	clusterchild1 := makeID("v1", "Child", "", "child1", "childuidc1")
    
    	var (
    		nsabsentparentns1 = makeID("v1", "NSParent", "ns1", "parentname", "parentuid")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 17 15:49:32 UTC 2020
    - 7.6K bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/merged-plugin-exec-goals-order/w-plugin-mgmt/sub/pom.xml

        <artifactId>parent-2</artifactId>
        <version>0.1</version>
      </parent>
    
      <artifactId>child-2</artifactId>
    
      <name>Maven Integration Test :: MNG-3937</name>
      <description>
        Test that during inheritance/merging of a plugin execution the goals specified by child and parent are properly
        ordered.
      </description>
    
      <build>
        <plugins>
          <plugin>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/merged-plugin-exec-goals-order/wo-plugin-mgmt/sub/pom.xml

        <artifactId>parent-1</artifactId>
        <version>0.1</version>
      </parent>
    
      <artifactId>child-1</artifactId>
    
      <name>Maven Integration Test :: MNG-3937</name>
      <description>
        Test that during inheritance/merging of a plugin execution the goals specified by child and parent are properly
        ordered.
      </description>
    
      <build>
        <plugins>
          <plugin>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  5. maven-core/src/test/resources-project-builder/inherited-properties-interpolation/active-profile/sub/pom.xml

      <packaging>jar</packaging>
    
      <name>Maven Integration Test :: MNG-4102 :: Child</name>
      <description>
        Verify that the effective value of an inherited property reflects the values of any nested property
        as defined by the child. This boils down to the order of inheritance and (parent) interpolation.
      </description>
    
      <properties>
        <overridden>CHILD</overridden>
      </properties>
    
      <profiles>
        <profile>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/rule/describe/ModelRuleDescriptor.java

         */
        void describeTo(Appendable appendable);
    
        ModelRuleDescriptor append(ModelRuleDescriptor child);
    
        ModelRuleDescriptor append(String child);
    
        @FormatMethod
        ModelRuleDescriptor append(@FormatString String child, Object... args);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:38:02 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/PublishAndResolveIntegrationTest.groovy

            createDirs("child")
            settingsFile << """
                include ':child'
            """
    
            given:
            buildFile << """
                ${taskWhichPublishes('api', '1.1')}
                project(':child') {
                    ${taskWhichResolves('api', '1.1')}
                }
            """
    
            expect:
            succeeds ":child:${resolveTask}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/daemon/ScalaCompilerDaemonReuseIntegrationTest.groovy

            then:
            executedAndNotSkipped "${compileTaskPath('main')}", ":child${compileTaskPath('main')}"
    
            and:
            assertOneCompilerDaemonIsRunning()
    
            when:
            executer.withWorkerDaemonsExpirationDisabled()
            succeeds("clean", "compileAll")
    
            then:
            executedAndNotSkipped "${compileTaskPath('main')}", ":child${compileTaskPath('main')}"
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/enclosing.go

    		}
    		if end > nodeEnd {
    			end = nodeEnd
    		}
    
    		// Find sole child that contains [start, end).
    		children := childrenOf(node)
    		l := len(children)
    		for i, child := range children {
    			// [childPos, childEnd) is unaugmented interval of child.
    			childPos := child.Pos()
    			childEnd := child.End()
    
    			// [augPos, augEnd) is whitespace-augmented interval of child.
    			augPos := childPos
    			augEnd := childEnd
    			if i > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/project/harness/Xpp3DomNodePointer.java

            XmlNode node2 = (XmlNode) pointer2.getBaseValue();
            if (node1 == node2) {
                return 0;
            }
            for (XmlNode child : node.getChildren()) {
                if (child == node1) {
                    return -1;
                }
                if (child == node2) {
                    return 1;
                }
            }
            return 0;
        }
    
        @Override
        public Object getValue() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top