Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,411 for nprend (0.1 sec)

  1. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/pkixcmp",
    				"application/pls+xml",
    				"application/poc-settings+xml",
    				"application/postscript",
    				"application/prs.alvestrand.titrax-sheet",
    				"application/prs.cww",
    				"application/prs.nprend",
    				"application/prs.plucker",
    				"application/qsig",
    				"application/reginfo+xml",
    				"application/relax-ng-compact-syntax",
    				"application/remote-printing",
    				"application/resource-lists+xml",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  2. test/append.go

    	{"byte c", append([]byte{}, 0, 1, 2, 3), []byte{0, 1, 2, 3}},
    
    	{"byte d", append([]byte{0, 1, 2}), []byte{0, 1, 2}},
    	{"byte e", append([]byte{0, 1, 2}, 3), []byte{0, 1, 2, 3}},
    	{"byte f", append([]byte{0, 1, 2}, 3, 4, 5), []byte{0, 1, 2, 3, 4, 5}},
    
    	{"byte g", append([]byte{}, []byte{0}...), []byte{0}},
    	{"byte h", append([]byte{}, []byte{0, 1, 2, 3}...), []byte{0, 1, 2, 3}},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 06 04:28:23 UTC 2018
    - 9.1K bytes
    - Viewed (0)
  3. test/typeparam/append.go

    // license that can be found in the LICENSE file.
    
    package main
    
    type Recv <-chan int
    
    type sliceOf[E any] interface {
    	~[]E
    }
    
    func _Append[S sliceOf[T], T any](s S, t ...T) S {
    	return append(s, t...)
    }
    
    func main() {
    	recv := make(Recv)
    	a := _Append([]Recv{recv}, recv)
    	if len(a) != 2 || a[0] != recv || a[1] != recv {
    		panic(a)
    	}
    
    	recv2 := make(chan<- int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 597 bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/helper/spread.go

    			// services with nil selectors match nothing, not everything.
    			continue
    		}
    		selector := labels.Set(service.Spec.Selector).AsSelectorPreValidated()
    		if selector.Matches(labels.Set(pod.Labels)) {
    			services = append(services, service)
    		}
    	}
    
    	return services, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 25 20:04:48 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  5. maven-model-builder/src/test/resources/poms/inheritance/no-append-urls3-expected.xml

      <artifactId>inheritance</artifactId>
      <version>11-SNAPSHOT</version>
      <name>Model urls inheritance test child</name>
    
      <scm child.scm.connection.inherit.append.path="true"
           child.scm.developerConnection.inherit.append.path="true"
           child.scm.url.inherit.append.path="true">
        <connection>scm:my-scm:http://domain.org/base</connection>
        <developerConnection>scm:my-scm:https://domain.org/base/</developerConnection>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  6. maven-model-builder/src/test/resources/poms/inheritance/no-append-urls-parent.xml

      </modules>
    
      <!-- 5 urls in the pom to configure for not adding path -->
      <url>http://www.apache.org/path/to/parent/</url>
      <scm child.scm.connection.inherit.append.path="false"
           child.scm.developerConnection.inherit.append.path="false"
           child.scm.url.inherit.append.path="false">
        <connection>scm:my-scm:http://domain.org/base</connection>
        <developerConnection>scm:my-scm:https://domain.org/base/</developerConnection>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  7. maven-model-builder/src/test/resources/poms/inheritance/no-append-urls3-child.xml

      <name>Model urls inheritance test child</name>
    
      <scm child.scm.connection.inherit.append.path="true"
           child.scm.developerConnection.inherit.append.path="true"
           child.scm.url.inherit.append.path="true" />
      <distributionManagement>
        <site child.site.url.inherit.append.path="true" />
      </distributionManagement>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  8. maven-model-builder/src/test/resources/poms/inheritance/no-append-urls-expected.xml

      <description>MNG-5951 MNG-6059 child.x.y.inherit.append.path="false" for each url to avoid automatic path addition when inheriting</description>
    
      <!-- 5 inherited urls without anything added to parent -->
      <url>http://www.apache.org/path/to/parent/</url>
      <scm child.scm.connection.inherit.append.path="false"
           child.scm.developerConnection.inherit.append.path="false"
           child.scm.url.inherit.append.path="false">
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  9. maven-model-builder/src/test/resources/poms/inheritance/no-append-urls2-expected.xml

      <artifactId>inheritance</artifactId>
      <version>11-SNAPSHOT</version>
      <name>Model urls inheritance test child</name>
    
      <scm child.scm.connection.inherit.append.path="false"
           child.scm.developerConnection.inherit.append.path="false"
           child.scm.url.inherit.append.path="false">
        <connection>scm:my-scm:http://domain.org/base</connection>
        <developerConnection>scm:my-scm:https://domain.org/base/</developerConnection>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  10. maven-model-builder/src/test/resources/poms/inheritance/no-append-urls2-parent.xml

      child.project.url.inherit.append.path="false">
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>inheritance</groupId>
      <artifactId>parent</artifactId>
      <version>11-SNAPSHOT</version>
    
      <name>Model urls inheritance test parent, with special merge test for mergeSite_ChildSiteUrlInheritAppendPath</name>
    
      <scm child.scm.connection.inherit.append.path="false"
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.8K bytes
    - Viewed (0)
Back to top