Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 326 for atom (0.14 sec)

  1. src/encoding/xml/read_test.go

    the link rel="self", but the default value for that drops
    the :port from the URL, and I cannot for the life of me
    figure out how to get the Atom generator deep inside
    django not to do that, or even where it is doing that,
    or even what code is running to generate the Atom feed.
    (I thought I knew but I added some assert False statements
    and it kept running!)
    
    Ignoring that particular problem, I would appreciate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapFile.java

     *
     */
    public class SitemapFile implements Sitemap {
    
        private static final long serialVersionUID = 1L;
    
        /**
         * Identifies the location of the Sitemap. This location can be a Sitemap,
         * an Atom file, RSS file or a simple text file.
         */
        private String loc;
    
        /**
         * Identifies the time that the corresponding Sitemap file was modified. It
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. docs/tr/docs/project-generation.md

    * Atom Hydrogen veya Visual Studio Code Jupyter gibi uzantılarla uzaktan veya Docker içi geliştirme için **Jupyter Çekirdekleri** ile kolay Python entegrasyonu.
    * **Vue** ile frontend:
        * Vue CLI ile oluşturulmuş.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:55:41 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. docs/zh/docs/project-generation.md

    * **Celery** Worker 可从后端其它部分有选择地导入并使用模型和代码
    * REST 后端测试基于 Pytest,并与 Docker 集成,可独立于数据库实现完整的 API 交互测试。因为是在 Docker 中运行,每次都可从头构建新的数据存储(使用 ElasticSearch、MongoDB、CouchDB 等数据库,仅测试 API 运行)
    * Python 与 **Jupyter Kernels** 集成,用于远程或 Docker 容器内部开发,使用 Atom Hydrogen 或 Visual Studio Code 的 Jupyter 插件
    * **Vue** 前端:
        * 由 Vue CLI 生成
        * **JWT 身份验证**处理
        * 登录视图
        * 登录后显示主仪表盘视图
        * 主仪表盘支持用户创建与编辑
        * 用户信息编辑
        * **Vuex**
        * **Vue-router**
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jan 28 18:03:58 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. docs/de/docs/project-generation.md

    * Einfache Python-Integration mit **Jupyter-Kerneln** für Remote- oder In-Docker-Entwicklung mit Erweiterungen wie Atom Hydrogen oder Visual Studio Code Jupyter.
    * **Vue**-Frontend:
        * Mit Vue CLI generiert.
        * Handhabung der **JWT-Authentifizierung**.
        * Login-View.
        * Nach der Anmeldung Hauptansicht des Dashboards.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:14:36 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. operator/pkg/validate/common.go

    	"istio.io/istio/operator/pkg/util"
    	"istio.io/istio/pkg/log"
    )
    
    var (
    	scope = log.RegisterScope("validation", "API validation")
    
    	// alphaNumericRegexp defines the alpha numeric atom, typically a
    	// component of names. This only allows lower case characters and digits.
    	alphaNumericRegexp = match(`[a-z0-9]+`)
    
    	// separatorRegexp defines the separators allowed to be embedded in name
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11K bytes
    - Viewed (0)
  7. src/crypto/x509/verify.go

    				(35 <= c && c <= 91) ||
    				(93 <= c && c <= 126):
    				// qtext
    				localPartBytes = append(localPartBytes, c)
    
    			default:
    				return mailbox, false
    			}
    		}
    	} else {
    		// Atom ("." Atom)*
    	NextChar:
    		for len(in) > 0 {
    			// atext from RFC 2822, Section 3.2.4
    			c := in[0]
    
    			switch {
    			case c == '\\':
    				// Examples given in RFC 3696 suggest that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  8. src/encoding/xml/xml_test.go

    		Link     string `xml:"link"`
    		AtomLink string `xml:"http://www.w3.org/2005/Atom link"` // Same name in a different name space
    	}
    	testCase := `<example>
    			<title>Example</title>
    			<link>http://example.com/default</link> <!-- not assigned -->
    			<link>http://example.com/home</link> <!-- not assigned -->
    			<ns:link xmlns:ns="http://www.w3.org/2005/Atom">http://example.com/ns</ns:link>
    		</example>`
    
    	var dest ExampleConflict
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/net/MediaType.java

       *
       * @since 14.0
       */
      public static final MediaType APPLICATION_XML_UTF_8 = createConstantUtf8(APPLICATION_TYPE, "xml");
    
      public static final MediaType ATOM_UTF_8 = createConstantUtf8(APPLICATION_TYPE, "atom+xml");
      public static final MediaType BZIP2 = createConstant(APPLICATION_TYPE, "x-bzip2");
    
      /**
       * Files in the <a href="https://www.dartlang.org/articles/embedding-in-html/">dart</a>
       * programming language.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  10. guava/src/com/google/common/net/MediaType.java

       *
       * @since 14.0
       */
      public static final MediaType APPLICATION_XML_UTF_8 = createConstantUtf8(APPLICATION_TYPE, "xml");
    
      public static final MediaType ATOM_UTF_8 = createConstantUtf8(APPLICATION_TYPE, "atom+xml");
      public static final MediaType BZIP2 = createConstant(APPLICATION_TYPE, "x-bzip2");
    
      /**
       * Files in the <a href="https://www.dartlang.org/articles/embedding-in-html/">dart</a>
       * programming language.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
Back to top