Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setThreadSafe (0.12 sec)

  1. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

            this.setPhase(md.getPhase());
            this.setOnlineRequired(md.isOnlineRequired());
            this.setProjectRequired(md.isProjectRequired());
            this.setSince(md.getSince());
            this.setThreadSafe(true);
            this.setImplementation(md.getImplementation());
            try {
                this.setParameters(md.getParameters().stream().map(Parameter::new).collect(Collectors.toList()));
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  2. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java

                mojo.setInheritedByDefault(Boolean.parseBoolean(inheritedByDefault));
            }
    
            String threadSafe = c.getChild("threadSafe").getValue();
    
            if (threadSafe != null) {
                mojo.setThreadSafe(Boolean.parseBoolean(threadSafe));
            }
    
            // ----------------------------------------------------------------------
            // Configuration
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top