Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for getBuild (0.15 sec)

  1. maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java

                    session, session.getCurrentProject(), execution, new HashSet<>());
            assertNotNull(execution.getConfiguration());
            assertEquals("1.0", execution.getConfiguration().getChild("version").getAttribute("default-value"));
        }
    
        @Test
        void testExecutionListeners() throws Exception {
            final File pom = getProject("project-basic");
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 09 20:57:17 GMT 2024
    - 24.7K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/net.go

    	if err := s.syncHostIPSets(ambientPods); err != nil {
    		log.Warnf("failed to sync host IPset: %v", err)
    		consErr = append(consErr, err)
    	}
    
    	podsByUID := slices.GroupUnique(ambientPods, (*corev1.Pod).GetUID)
    	if err := s.buildZtunnelSnapshot(podsByUID); err != nil {
    		log.Warnf("failed to construct initial ztunnel snapshot: %v", err)
    		consErr = append(consErr, err)
    	}
    
    	return errors.Join(consErr...)
    }
    
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Apr 30 22:24:38 GMT 2024
    - 12.2K bytes
    - Viewed (1)
  3. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                if (!parameter.isRequired()) {
                    continue;
                }
    
                Object value = null;
    
                PlexusConfiguration config = configuration.getChild(parameter.getName(), false);
                if (config != null) {
                    String expression = config.getValue(null);
    
                    try {
                        value = expressionEvaluator.evaluate(expression);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  4. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    void Xpp3Dom(Xpp3Dom); public String getName(); public String getValue(); public void setValue(String); public String[] getAttributeNames(); public String getAttribute(String); public void setAttribute(String, String); public Xpp3Dom getChild(int); public Xpp3Dom getChild(String); public void addChild(Xpp3Dom); public Xpp3Dom[] getChildren(); public Xpp3Dom[] getChildren(String); public int getChildCount(); public void removeChild(int); public Xpp3Dom getParent(); public void setParent(Xpp3Dom); public...
    Archive
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 164.6K bytes
    - Viewed (0)
Back to top