Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for anotherName (0.15 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/validation/field/path.go

    	parent *Path  // nil if this is the root element
    }
    
    // NewPath creates a root Path object.
    func NewPath(name string, moreNames ...string) *Path {
    	r := &Path{name: name, parent: nil}
    	for _, anotherName := range moreNames {
    		r = &Path{name: anotherName, parent: r}
    	}
    	return r
    }
    
    // Root returns the root element of this Path.
    func (p *Path) Root() *Path {
    	for ; p.parent != nil; p = p.parent {
    		// Do nothing.
    	}
    	return p
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 11 08:23:53 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/projects/transform/after.pom

                    <test>test</test>
                  </module>
                  <jarModule>
                    <groupId>artifactGroupId</groupId>
                    <artifactId>artifactId</artifactId>
                    <uri>APP-INF/lib/anotherName-1.2.3.jar</uri>
                  </jarModule>
                </modules>
              </configuration>
            </plugin>
          </plugins>
        </pluginManagement>
        <plugins>
          <plugin>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 07:51:37 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. platforms/jvm/language-groovy/src/testFixtures/groovy/org/gradle/language/groovy/fixtures/TestGroovyComponent.groovy

        void changeSources(List<TestFile> sourceFiles){
            def personGroovyFile = sourceFiles.find { it.name == "Person.groovy" }
            personGroovyFile.text = personGroovyFile.text.replace("String name", "String name\\nString anotherName")
        }
    
        @Override
        void writeAdditionalSources(TestFile sourceDir) {
            sourceDir.file("java/Extra.groovy") << """
    interface Extra {
        String whatever()
    }
    """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/testFixtures/groovy/org/gradle/language/fixtures/TestJavaComponent.groovy

        void changeSources(List<TestFile> sourceFiles){
            def personJavaFile = sourceFiles.find { it.name == "Person.java" }
            personJavaFile.text = personJavaFile.text.replace("String name;", "String name; String anotherName;")
        }
    
        @Override
        void writeAdditionalSources(TestFile sourceDir) {
            sourceDir.file("java/Extra.java") << """
    interface Extra {
        String whatever();
    }
    """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/projects/transform/before.pom

                    <test>test</test>
                  </module>
                  <jarModule>
                    <groupId>artifactGroupId</groupId>
                    <artifactId>artifactId</artifactId>
                    <uri>APP-INF/lib/anotherName-1.2.3.jar</uri>
                  </jarModule>
                </modules>
              </configuration>
            </plugin>
          </plugins>
        </pluginManagement>
        <plugins>
          <plugin>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 07:51:37 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/init_test.go

    			flags: map[string]string{
    				options.CfgPath:  configFilePath,
    				options.NodeName: "anotherName",
    			},
    			validate: func(t *testing.T, data *initData) {
    				// validate that node-name is overwritten
    				if data.cfg.NodeRegistration.Name != "anotherName" {
    					t.Error("Invalid NodeRegistration.Name")
    				}
    			},
    		},
    		{
    			name: "fail if mixedArguments are passed",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 12:26:20 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/join_test.go

    			flags: map[string]string{
    				options.CfgPath:  configFilePath,
    				options.NodeName: "anotherName",
    			},
    			validate: func(t *testing.T, data *joinData) {
    				// validate that node-name is overwritten
    				if data.cfg.NodeRegistration.Name != "anotherName" {
    					t.Error("Invalid NodeRegistration.Name")
    				}
    			},
    		},
    		{
    			name: "fail if mixedArguments are passed",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 12:26:20 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top