Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 647 for Schile (0.21 sec)

  1. maven-core/src/test/resources/projects/child.xml

    -->
    
    <model>
    
      <extend>project.xml</extend>
    
      <parent>
        <groupId>maven</groupId>
        <artifactId>maven-project-test</artifactId>
        <version>1.0-beta-9</version>
      </parent>
    
      <artifactId>child-artifact</artifactId>
      <groupId>maven</groupId>
      <version>1.0-beta-9</version>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Wed Feb 28 22:49:30 GMT 2007
    - 1K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/projects/fully-populated-child.xml

    Jason van Zyl <******@****.***> 1172702970 +0000
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Wed Feb 28 22:49:30 GMT 2007
    - 4.7K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/http2/Huffman.kt

        var node = root
        while (accumulatorBitCount > 8) {
          accumulatorBitCount -= 8
          val childIndex = (code ushr accumulatorBitCount) and 0xff
          val children = node.children!!
          var child = children[childIndex]
          if (child == null) {
            child = Node()
            children[childIndex] = child
          }
          node = child
        }
    
        val shift = 8 - accumulatorBitCount
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 8.3K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/projects/child-with-bogus-parent.xml

    Jason van Zyl <******@****.***> 1172702970 +0000
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Wed Feb 28 22:49:30 GMT 2007
    - 947 bytes
    - Viewed (0)
  5. maven-core/src/test/resources-project-builder/contributors-inheritance/child-2/pom.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <!--
      While <contributors> are inherited, they are not aggregated, only the child elements are used.
      -->
    
      <parent>
        <groupId>org.apache.maven.its.mng3843</groupId>
        <artifactId>parent-1</artifactId>
        <version>0.1</version>
      </parent>
    
      <groupId>org.apache.maven.its.mng3843.child</groupId>
      <artifactId>child-2</artifactId>
      <version>0.2</version>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.3K bytes
    - Viewed (0)
  6. maven-core/src/test/resources-project-builder/mailing-lists-inheritance/child-2/pom.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <!--
      While <mailingLists> are inherited, they are not aggregated, only the child elements are used.
      -->
    
      <parent>
        <groupId>org.apache.maven.its.mng3843</groupId>
        <artifactId>parent-1</artifactId>
        <version>0.1</version>
      </parent>
    
      <groupId>org.apache.maven.its.mng3843.child</groupId>
      <artifactId>child-2</artifactId>
      <version>0.2</version>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.3K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/developers-inheritance/child-2/pom.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <!--
      While <developers> are inherited, they are not aggregated, only the child elements are used.
      -->
    
      <parent>
        <groupId>org.apache.maven.its.mng3843</groupId>
        <artifactId>parent-1</artifactId>
        <version>0.1</version>
      </parent>
    
      <groupId>org.apache.maven.its.mng3843.child</groupId>
      <artifactId>child-2</artifactId>
      <version>0.2</version>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.3K bytes
    - Viewed (0)
  8. maven-core/src/test/resources-project-builder/licenses-inheritance/child-2/pom.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <!--
      While <licenses> are inherited, they are not aggregated, only the child licenses are used.
      -->
    
      <parent>
        <groupId>org.apache.maven.its.mng3843</groupId>
        <artifactId>parent-1</artifactId>
        <version>0.1</version>
      </parent>
    
      <groupId>org.apache.maven.its.mng3843.child</groupId>
      <artifactId>child-2</artifactId>
      <version>0.2</version>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/FileEntryAdapterIterator.java

         * 
         */
        private SmbResource advance () {
            while ( this.delegate.hasNext() ) {
                FileEntry fe = this.delegate.next();
                if ( this.filter == null ) {
                    try {
                        return adapt(fe);
                    }
                    catch ( MalformedURLException e ) {
                        log.error("Failed to create child URL", e);
                        continue;
                    }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.5K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/ShareEnumIterator.java

         */
        private SmbResource advance () {
            while ( this.delegate.hasNext() ) {
                FileEntry n = this.delegate.next();
                if ( this.filter == null ) {
                    try {
                        return adapt(n);
                    }
                    catch ( MalformedURLException e ) {
                        log.error("Failed to create child URL", e);
                        continue;
                    }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.5K bytes
    - Viewed (0)
Back to top