Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for beanutils (0.34 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_downgrade_and_exclude.adoc

    In this example, we add a dependency to `commons-beanutils` but exclude the transitive dependency `commons-collections`.
    In our code, shown below, we only use one method from the beanutils library, `PropertyUtils.setSimpleProperty()`.
    Using this method for existing setters does not require any functionality from `commons-collections` as we verified through test coverage.
    
    .Using a utility from the beanutils library
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/AbstractMavenPublishJavaIntegTest.groovy

                    api ("org.springframework:spring-core:2.5.6") {
                        exclude group: 'commons-logging', module: 'commons-logging'
                    }
                    api ("commons-beanutils:commons-beanutils:1.8.3") {
                       exclude group : 'commons-logging'
                    }
                    api ("commons-dbcp:commons-dbcp:1.4") {
                       transitive = false
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 45.6K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testsuites/dependencies/TestSuitesKotlinDSLDependenciesIntegrationTest.groovy

                        assert(${suiteName}CompileClasspathFileNames.containsAll(listOf("commons-beanutils-1.9.0.jar", "commons-collections-3.2.1.jar")))
                        assert(${suiteName}RuntimeClasspathFileNames.containsAll(listOf("commons-beanutils-1.9.0.jar", "commons-collections-3.2.1.jar")))
                        assert(!${suiteName}CompileClasspathFileNames.contains("commons-collections-3.2.2.jar"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 11 16:25:08 UTC 2024
    - 45.8K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitorSpec.groovy

    agent/lib/trove4j.jar:/home/tcagent1/agent/lib/common-impl.jar:/home/tcagent1/agent/lib/ehcache-1.6.0-patch.jar:/home/tcagent1/agent/lib/buildAgent-updates-applying.jar:/home/tcagent1/agent/lib/agent-upgrade.jar:/home/tcagent1/agent/lib/commons-beanutils-core.jar:/home/tcagent1/agent/lib/app-wrapper.jar:/home/tcagent1/agent/lib/ehcache-1.7.2.jar:/home/tcagent1/agent/lib/jdom.jar:/home/tcagent1/agent/lib/spring-scripting/spring-scripting-jruby.jar:/home/tcagent1/agent/lib/spring-scripting/spring-...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testsuites/dependencies/TestSuitesGroovyDSLDependenciesIntegrationTest.groovy

                        assert ${suiteName}CompileClasspathFileNames.containsAll('commons-beanutils-1.9.0.jar', 'commons-collections-3.2.1.jar')
                        assert ${suiteName}RuntimeClasspathFileNames.containsAll('commons-beanutils-1.9.0.jar', 'commons-collections-3.2.1.jar')
                        assert !${suiteName}CompileClasspathFileNames.contains('commons-collections-3.2.2.jar')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 11 16:25:08 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_dependencies.adoc

    Therefore, it is extremely important to assign a version to the file name to indicate the distinct set of changes shipped with it.
    For example `commons-beanutils-1.3.jar` lets you track the changes of the library by the release notes.
    
    As a result, the dependencies of the project are easier to maintain and organize.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 30.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    	"github.com/google/pprof/internal/plugin"
    )
    
    // A Binutils implements plugin.ObjTool by invoking the GNU binutils.
    type Binutils struct {
    	mu  sync.Mutex
    	rep *binrep
    }
    
    var (
    	objdumpLLVMVerRE = regexp.MustCompile(`LLVM version (?:(\d*)\.(\d*)\.(\d*)|.*(trunk).*)`)
    
    	// Defined for testing
    	elfOpen = elf.Open
    )
    
    // binrep is an immutable representation for Binutils.  It is atomically
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/beans/util/BeanUtil.java

    /**
     * JavaBeansとJavaBeans、あるいはJavaBeansと{@link Map}の間でプロパティをコピーするためのユーティリティです。
     * <p>
     * コピー元とコピー先のJavaBeansを指定することで、プロパティがコピーされます。
     * </p>
     *
     * <pre>
     * import static org.codelibs.core.beans.util.BeanUtil.*;
     *
     * copyBeanToBean(srcBean, destBean);
     * </pre>
     * <p>
     * JavaBeansから{@link Map}あるいは{@link Map}からJavaBeansへコピーすることも出来ます。
     * </p>
     *
     * <pre>
     * copyBeanToMap(srcBean, destMap);
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/core/beans/util/BeanUtilTest.java

            dest.ccc = "ccc";
            BeanUtil.copyBeanToBean(src, dest, excludeWhitespace());
            assertThat(dest.ccc, is("ccc"));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testCopyBeanToBean_prefix() throws Exception {
            final SrcBean src = new SrcBean();
            src.search_eee$fff = "hoge";
            final DestBean dest = new DestBean();
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/symbolizer/symbolizer.go

    // in a profile. mode enables some options to control
    // symbolization.
    func doLocalSymbolize(prof *profile.Profile, fast, force bool, obj plugin.ObjTool, ui plugin.UI) error {
    	if fast {
    		if bu, ok := obj.(*binutils.Binutils); ok {
    			bu.SetFastSymbolization(true)
    		}
    	}
    
    	functions := map[profile.Function]*profile.Function{}
    	addFunction := func(f *profile.Function) *profile.Function {
    		if fp := functions[*f]; fp != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top