Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 198 for Attribut (7.26 sec)

  1. maven-core/src/test/java/org/apache/maven/project/harness/Xpp3DomAttributeIterator.java

            }
            return (attribute == null) ? null : new Xpp3DomAttributePointer(parent, attribute);
        }
    
        public int getPosition() {
            return position;
        }
    
        public boolean setPosition(int position) {
            this.position = position;
            attribute = (position > 0 && position <= attributes.size()) ? attributes.get(position - 1) : null;
            return attribute != null;
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/BasicJavadocLexer.java

            scanner.skip(WHITESPACE_WITH_EOL);
            while (!scanner.isEmpty() && scanner.lookingAt(ELEMENT_ATTRIBUTE)) {
                // attribute name
                scanner.mark();
                scanner.find(END_ATTRIBUTE_NAME);
                String attrName = scanner.region();
    
                // separator
                scanner.skip(ATTRIBUTE_SEPARATOR);
    
                // value
                char quote = scanner.getFirst();
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 7.1K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/io/FileBackedOutputStreamTest.java

    import static java.nio.file.attribute.PosixFilePermission.OWNER_READ;
    import static java.nio.file.attribute.PosixFilePermission.OWNER_WRITE;
    import static org.junit.Assert.assertThrows;
    
    import java.io.File;
    import java.io.IOException;
    import java.io.OutputStream;
    import java.nio.file.attribute.PosixFileAttributeView;
    import java.nio.file.attribute.PosixFileAttributes;
    import java.util.Arrays;
    
    /**
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 5.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/net/MediaType.java

      /**
       * Replaces all parameters with the given attribute with parameters using the given
       * values. If there are no values, any existing parameters with the given attribute are removed.
       *
       * @throws IllegalArgumentException if either {@code attribute} or {@code values} is invalid
       * @since 24.0
       */
      public MediaType withParameters(String attribute, Iterable<String> values) {
        checkNotNull(attribute);
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Aug 07 16:17:10 GMT 2023
    - 46.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/ldap/LdapManager.java

            final Attribute attr = new BasicAttribute(name, value);
            final ModificationItem mod = new ModificationItem(DirContext.ADD_ATTRIBUTE, attr);
            modifyList.add(mod);
        }
    
        protected void modifyReplaceEntry(final List<ModificationItem> modifyList, final String name, final String value) {
            final Attribute attr = new BasicAttribute(name, value);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 65.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/io/TempFileCreator.java

    import java.lang.reflect.Method;
    import java.nio.file.FileSystems;
    import java.nio.file.Paths;
    import java.nio.file.attribute.AclEntry;
    import java.nio.file.attribute.AclEntryPermission;
    import java.nio.file.attribute.FileAttribute;
    import java.nio.file.attribute.PosixFilePermissions;
    import java.nio.file.attribute.UserPrincipal;
    import java.util.EnumSet;
    import java.util.Set;
    
    /**
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Oct 06 17:11:11 GMT 2023
    - 12.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/error/ErrorSystemerrorAction.java

        //
    
        // ===================================================================================
        //                                                                           Attribute
        //
    
        // ===================================================================================
        //                                                                      Search Execute
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/help/HelpAction.java

        //
    
        // ===================================================================================
        //                                                                           Attribute
        //
    
        // ===================================================================================
        //                                                                               Hook
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/xml/XmlEscapers.java

       *
       * <p><b>Note:</b> Double and single quotes are not escaped, so it is <b>not safe</b> to use this
       * escaper to escape attribute values. Use {@link #xmlContentEscaper} if the output can appear in
       * element content or {@link #xmlAttributeEscaper} in attribute values.
       *
       * <p>This escaper substitutes {@code 0xFFFD} for non-whitespace control characters and the
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Jan 18 20:55:09 GMT 2022
    - 6.5K bytes
    - Viewed (0)
  10. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionIT.java

    import java.io.InterruptedIOException;
    import java.nio.file.FileVisitResult;
    import java.nio.file.Files;
    import java.nio.file.Path;
    import java.nio.file.Paths;
    import java.nio.file.SimpleFileVisitor;
    import java.nio.file.attribute.BasicFileAttributes;
    import java.util.regex.Pattern;
    
    import org.junit.jupiter.api.Test;
    
    import static org.junit.jupiter.api.Assertions.assertEquals;
    
    class ComparableVersionIT {
    
        @Test
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 2.8K bytes
    - Viewed (0)
Back to top