Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 798 for Director (0.22 sec)

  1. src/main/resources/lastaflute_director.xml

    Shinsuke Sugaya <******@****.***> 1579093439 +0900
    XML
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Wed Jan 15 13:03:59 GMT 2020
    - 368 bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/swig/testdata/callback/main.swigcxx

       license that can be found in the LICENSE file.  */
    
    /* An example of writing a C++ virtual function in Go.  */
    
    %module(directors="1") callback
    
    %{
    #include <string>
    #include "main.h"
    %}
    
    %include "std_string.i"
    
    %feature("director");
    
    Plain Text
    - Registered: Tue Apr 16 11:13:10 GMT 2024
    - Last Modified: Fri May 12 12:00:07 GMT 2023
    - 366 bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/util/mime.map

    application/x-bcpio            bcpio            #
    application/x-cpio             cpio             #
    application/x-csh              csh              # C-Shell Program
    application/x-director         dcr              # Director File
    application/x-dvi              dvi              # TeX dvi Format
    application/x-gtar             gtar             # Gzip and Tar file
    application/x-gzip             gz tgz           # Gzip and Tar file
    Plain Text
    - Registered: Sun Apr 14 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 5.9K bytes
    - Viewed (0)
  4. internal/handlers/forwarder.go

    func (f *Forwarder) ServeHTTP(w http.ResponseWriter, inReq *http.Request) {
    	outReq := new(http.Request)
    	*outReq = *inReq // includes shallow copies of maps, but we handle this in Director
    
    	revproxy := httputil.ReverseProxy{
    		Director: func(req *http.Request) {
    			f.modifyRequest(req, inReq.URL)
    		},
    		BufferPool:    newBufPool(128 << 10),
    		Transport:     f.RoundTripper,
    		FlushInterval: defaultFlushInterval,
    Go
    - Registered: Sun Apr 07 19:28:10 GMT 2024
    - Last Modified: Fri Apr 07 05:42:10 GMT 2023
    - 5.6K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/projects/base-directory-alignment/project-which-needs-directory-alignment.xml

        <resources>
          <resource>
            <directory>src/test</directory>
            <includes>
              <include>**/*.xml</include>
            </includes>
          </resource>
        </resources>
        <testResources>
          <testResource>
            <directory>src/conf</directory>
            <includes>
              <include>*.xsd</include>
              <include>*.dtd</include>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Wed Apr 29 05:20:38 GMT 2009
    - 3.6K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/projects/base-directory-alignment/subproject/project-which-needs-directory-alignment-child.xml

    specific language governing permissions and limitations
    under the License.
    -->
    
    <project>
    
      <extend>../project-which-needs-directory-alignment.xml</extend>
    
      <parent>
        <groupId>maven</groupId>
        <artifactId>project-which-needs-directory-alignment</artifactId>
        <version>1.0-beta-9</version>
      </parent>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Wed Apr 29 05:20:38 GMT 2009
    - 1011 bytes
    - Viewed (0)
  7. maven-core/src/test/resources/projects/base-directory-alignment/project-which-needs-directory-alignment-child.xml

    specific language governing permissions and limitations
    under the License.
    -->
    
    <project>
    
      <extend>project-which-needs-directory-alignment.xml</extend>
    
      <parent>
        <groupId>maven</groupId>
        <artifactId>project-which-needs-directory-alignment.xml</artifactId>
        <version>1.0-beta-9</version>
      </parent>
    
      <groupId>maven</groupId>
      <artifactId>maven-foo</artifactId>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Wed Apr 29 05:20:38 GMT 2009
    - 1.1K bytes
    - Viewed (0)
  8. dbflute_fess/_readme.txt

    /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    dfprop     : Directory for DBFlute properties
    extlib     : Directory for Directory for library extension
    log        : Directory for log files of DBFlute tasks
    output/doc : Directory for auto-generated documents
    playsql    : Directory for ReplaceSchema task
    schema     : Directory for files of schema info
    - - - - - - - - - -/
    
    Plain Text
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Sat Jul 04 22:46:31 GMT 2015
    - 2.5K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/resources/org/apache/maven/model/pom-4.0.0.xml

        <resources>
          <resource>
            <directory>${project.basedir}/src/main/resources</directory>
          </resource>
          <resource>
            <directory>${project.basedir}/src/main/resources-filtered</directory>
            <filtering>true</filtering>
          </resource>
        </resources>
        <testResources>
          <testResource>
            <directory>${project.basedir}/src/test/resources</directory>
          </testResource>
          <testResource>
    XML
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  10. internal/store/queuestore.go

    	}
    
    	return &QueueStore[I]{
    		directory:  directory,
    		entryLimit: limit,
    		fileExt:    ext,
    		entries:    make(map[string]int64, limit),
    	}
    }
    
    // Open - Creates the directory if not present.
    func (store *QueueStore[_]) Open() error {
    	store.Lock()
    	defer store.Unlock()
    
    	if err := os.MkdirAll(store.directory, os.FileMode(0o770)); err != nil {
    		return err
    	}
    
    	files, err := store.list()
    Go
    - Registered: Sun Apr 07 19:28:10 GMT 2024
    - Last Modified: Mon Mar 25 16:44:20 GMT 2024
    - 7.1K bytes
    - Viewed (0)
Back to top