Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for ufdl (0.22 sec)

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

    				"application/vnd.wt.stf",
    				"application/vnd.wv.csp+wbxml",
    				"application/vnd.wv.csp+xml",
    				"application/vnd.wv.ssp+xml",
    				"application/vnd.xara",
    				"application/vnd.xfdl",
    				"application/vnd.xfdl.webform",
    				"application/vnd.xmi+xml",
    				"application/vnd.xmpie.cpkg",
    				"application/vnd.xmpie.dpkg",
    				"application/vnd.xmpie.plan",
    				"application/vnd.xmpie.ppkg",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/rearrange_function_argument_pass_test.cc

        std::unique_ptr<Graph> g(new Graph(OpRegistry::Global()));
        TF_CHECK_OK(s.ToGraph(g.get()));
        FunctionDef *xla_fdef = fdl.add_function();
        TF_CHECK_OK(GraphToFunctionDef(*g, "f3", xla_fdef));
      }
      FunctionLibraryDefinition fld(OpRegistry::Global(), fdl);
    
      // Build the XLA computation graph.
      // "arg0" (T=DT_RESOURCE), "arg1" (T=DT_INT32)
      // "arg0", "arg1" -> "if" (If) -> "ret0", "ret1"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/extract_outside_compilation_pass_test.cc

        node_name_image["identity1"]->AddAttr(
            kXlaInferredShapesAttrName, std::vector<PartialTensorShape>{shape});
    
        FunctionDef *xla_fdef = fdl.add_function();
        TF_CHECK_OK(GraphToFunctionDef(*g, "cluster", xla_fdef));
      }
      FunctionLibraryDefinition fld(OpRegistry::Global(), fdl);
    
      protobuf::Map<string, tensorflow::AttrValue> attrs;
      std::map<string, int> host_compute_core = {{"0", 1}, {"1", 0}};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 41K bytes
    - Viewed (0)
  4. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      </mime-type>
      <mime-type type="application/vnd.trueapp">
        <glob pattern="*.tra"/>
      </mime-type>
      <mime-type type="application/vnd.truedoc"/>
      <mime-type type="application/vnd.ufdl">
        <glob pattern="*.ufd"/>
        <glob pattern="*.ufdl"/>
      </mime-type>
    
      <mime-type type="application/ttml+xml">
        <root-XML localName="tt" namespaceURI="http://www.w3.org/ns/ttml"/>
        <glob pattern="*.ttml"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  5. src/internal/syscall/unix/pty_darwin.go

    func libc_posix_openpt_trampoline()
    
    func PosixOpenpt(flag int) (fd int, err error) {
    	ufd, _, errno := syscall_syscall6(abi.FuncPCABI0(libc_posix_openpt_trampoline), uintptr(flag), 0, 0, 0, 0, 0)
    	if errno != 0 {
    		return -1, errno
    	}
    	return int(ufd), nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 19:24:46 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  6. src/syscall/exec_libc2.go

    	// that we can't run the risk of overwriting any of them.
    	fd := make([]int, len(attr.Files))
    	nextfd = len(attr.Files)
    	for i, ufd := range attr.Files {
    		if nextfd < int(ufd) {
    			nextfd = int(ufd)
    		}
    		fd[i] = int(ufd)
    	}
    	nextfd++
    
    	// About to call fork.
    	// No more allocation or calls of non-assembly functions.
    	runtime_BeforeFork()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  7. src/syscall/exec_bsd.go

    	// that we can't run the risk of overwriting any of them.
    	fd := make([]int, len(attr.Files))
    	nextfd = len(attr.Files)
    	for i, ufd := range attr.Files {
    		if nextfd < int(ufd) {
    			nextfd = int(ufd)
    		}
    		fd[i] = int(ufd)
    	}
    	nextfd++
    
    	// About to call fork.
    	// No more allocation or calls of non-assembly functions.
    	runtime_BeforeFork()
    	r1, _, err1 = RawSyscall(SYS_FORK, 0, 0, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  8. src/syscall/exec_freebsd.go

    	// that we can't run the risk of overwriting any of them.
    	fd := make([]int, len(attr.Files))
    	nextfd = len(attr.Files)
    	for i, ufd := range attr.Files {
    		if nextfd < int(ufd) {
    			nextfd = int(ufd)
    		}
    		fd[i] = int(ufd)
    	}
    	nextfd++
    
    	// About to call fork.
    	// No more allocation or calls of non-assembly functions.
    	runtime_BeforeFork()
    	r1, _, err1 = RawSyscall(SYS_FORK, 0, 0, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  9. src/syscall/exec_libc.go

    	// that we can't run the risk of overwriting any of them.
    	fd := make([]int, len(attr.Files))
    	nextfd = len(attr.Files)
    	for i, ufd := range attr.Files {
    		if nextfd < int(ufd) {
    			nextfd = int(ufd)
    		}
    		fd[i] = int(ufd)
    	}
    	nextfd++
    
    	// About to call fork.
    	// No more allocation or calls of non-assembly functions.
    	runtime_BeforeFork()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  10. src/syscall/exec_plan9.go

    	// that we can't run the risk of overwriting any of them.
    	fd := make([]int, len(attr.Files))
    	nextfd = len(attr.Files)
    	for i, ufd := range attr.Files {
    		if nextfd < int(ufd) {
    			nextfd = int(ufd)
    		}
    		fd[i] = int(ufd)
    	}
    	nextfd++
    
    	if envv != nil {
    		clearenv = RFCENVG
    	}
    
    	// About to call fork.
    	// No more allocation or calls of non-assembly functions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top