Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for getFiles (0.2 sec)

  1. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            sb.append(getGroupId());
            sb.append(':');
            sb.append(getArtifactId());
            sb.append(':');
            sb.append(getVersion());
            if (getFile() != null) {
                sb.append(" @ ");
                sb.append(getFile().getPath());
            }
    
            return sb.toString();
        }
    
        /**
         * @since 2.0.9
         */
        @Override
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

        }
    
        private void validate30RawProfileActivation(ModelProblemCollector problems, Activation activation, String prefix) {
            if (activation == null || activation.getFile() == null) {
                return;
            }
    
            ActivationFile file = activation.getFile();
    
            String path;
            String location;
    
            if (file.getExists() != null && !file.getExists().isEmpty()) {
                path = file.getExists();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 65K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                project.setArtifact(projectArtifact);
    
                // only set those on 2nd phase, ignore on 1st pass
                if (project.getFile() != null) {
                    Build build = project.getBuild().getDelegate();
                    project.addScriptSourceRoot(build.getScriptSourceDirectory());
                    project.addCompileSourceRoot(build.getSourceDirectory());
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 55.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            }
            return list.stream().map(p -> {
                final String key = p.getFirst();
                if (StringUtil.isEmpty(key) || userBean
                        .map(user -> stream(user.getRoles()).get(stream -> stream.anyMatch(s -> (ROLE_VALUE_PREFIX + s).equals(key)))
                                || stream(user.getGroups()).get(stream -> stream.anyMatch(s -> (GROUP_VALUE_PREFIX + s).equals(key))))
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                Profile profile = profiles.get(index);
                Activation activation = profile.getActivation();
                if (activation != null) {
                    ActivationFile file = activation.getFile();
                    if (file != null) {
                        String oldExists = file.getExists();
                        if (isNotEmpty(oldExists)) {
                            try {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 59.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/ldap/LdapManager.java

            return false;
        }
    
        protected LdapUser createLdapUser(final String username, final Hashtable<String, String> env) {
            return new LdapUser(env, username);
        }
    
        public String[] getRoles(final LdapUser ldapUser, final String bindDn, final String accountFilter, final String groupFilter,
                final Consumer<String[]> lazyLoading) {
            final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 65.9K bytes
    - Viewed (0)
  7. src/bufio/bufio_test.go

    // to accumulate the text of a file.
    func readLines(b *Reader) string {
    	s := ""
    	for {
    		s1, err := b.ReadString('\n')
    		if err == io.EOF {
    			break
    		}
    		if err != nil && err != iotest.ErrTimeout {
    			panic("GetLines: " + err.Error())
    		}
    		s += s1
    	}
    	return s
    }
    
    // Call Read to accumulate the text of a file
    func reads(buf *Reader, m int) string {
    	var b [1000]byte
    	nb := 0
    	for {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 10 18:56:01 GMT 2023
    - 51.5K bytes
    - Viewed (0)
  8. tensorflow/BUILD

            "@local_xla//xla/stream_executor:stream_executor_install_hdrs",
        ],
        outs = ["include"],
        cmd = """
        mkdir $@
        for f in $(SRCS); do
          d="$${f%/*}"
          d="$${d#bazel-out/*/genfiles/}"
          d="$${d#bazel-out/*/bin/}"
    
          if [[ $${d} == *local_config_* ]]; then
            continue
          fi
    
          if [[ $${d} == external* ]]; then
            extname="$${d#*external/}"
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Apr 09 18:15:11 GMT 2024
    - 53.4K bytes
    - Viewed (6)
Back to top