Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 86 for Vi (0.04 sec)

  1. src/main/webapp/js/admin/plugins/form-validator/lang/vi.js

    ion"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a,b){"use strict";a.formUtils.registerLoadedModule("lang/vi"),a(b).bind("validatorsLoaded",function(){a.formUtils.LANG={errorTitle:"Có lỗi trong qua trình gửi dữ liệu!",requiredFields:"Bạn chưa nhập đủ các thông tin bắt buộc",badTime:"Thời gian chưa chính xác",badEmail:"Địa chỉ email chưa chính xác",badTelephone:"Số...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  2. operator/pkg/tpath/struct_test.go

    b: vb
    c:
      d: vd
      e:
        f: vf
    g:
      h:
      - i: vi
        j: vj
        k:
          l:
            m: vm
            n: vn
    `,
    			path: "c",
    			wantYAML: `
    d: vd
    e:
      f: vf
    `,
    			wantFound: true,
    		},
    		{
    			desc: "GetSliceEntryItem",
    			nodeYAML: `
    a: va
    b: vb
    c:
      d: vd
      e:
        f: vf
    g:
      h:
      - i: vi
        j: vj
        k:
          l:
            m: vm
            n: vm
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  3. src/internal/syscall/unix/kernel_version_linux.go

    		return
    	}
    
    	var (
    		values    [2]int
    		value, vi int
    	)
    	for _, c := range uname.Release {
    		if '0' <= c && c <= '9' {
    			value = (value * 10) + int(c-'0')
    		} else {
    			// Note that we're assuming N.N.N here.
    			// If we see anything else, we are likely to mis-parse it.
    			values[vi] = value
    			vi++
    			if vi >= len(values) {
    				break
    			}
    			value = 0
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 05 21:39:28 UTC 2022
    - 924 bytes
    - Viewed (0)
  4. src/cmd/go/internal/gover/mod.go

    		// Compare semver prefix by semver rules,
    		// file by string order.
    		vi := mi.Version
    		vj := mj.Version
    		var fi, fj string
    		if k := strings.Index(vi, "/"); k >= 0 {
    			vi, fi = vi[:k], vi[k:]
    		}
    		if k := strings.Index(vj, "/"); k >= 0 {
    			vj, fj = vj[:k], vj[k:]
    		}
    		if vi != vj {
    			return ModCompare(mi.Path, vi, vj) < 0
    		}
    		return fi < fj
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 19:18:46 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. docs/vi/docs/python-types.md

    Trong tất cả các tài liệu tồn tại những  dụ tương thích với mỗi phiên bản Python (khi có một sự khác nhau).
    
    Cho  dụ "**Python 3.6+**" có nghĩa là nó tương thích với Python 3.7 hoặc lớn hơn (bao gồm 3.7, 3.8, 3.9, 3.10,...). và "**Python 3.9+**" nghĩa là nó tương thích với Python 3.9 trở lên (bao gồm 3.10,...).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  6. .gitignore

    .history_rewritten_*
    # Eclipse artifacts
    .project
    .pydevproject
    #Vagrant
    tools/vagrant/.vagrant/
    # Intellij
    *.iml
    .idea/
    .run/
    # Visual Studio Code
    .vscode/
    # Bazel
    /bazel-*
    # vi swap files
    .*.swp
    # vi backups
    *.bak
    # common backups
    *~
    # python artifacts
    *.pyc
    # pilot
    pilot/pkg/kube/config
    pilot/pkg/proxy/envoy/envoy
    # lint
    lintconfig.gen.json
    .istiorc
    .istiorc.mk
    # codegen stuff
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 21:20:01 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. src/debug/dwarf/testdata/typedef.c

    typedef void t_func_void_of_ptr_char_dots(char*, ...);
    typedef struct my_struct {
    	volatile int vi;
    	char x : 1;
    	int y : 4;
    	int z[0];
    	long long array[40];
    	int zz[0];
    } t_my_struct;
    typedef struct my_struct1 {
    	int zz [1];
    } t_my_struct1;
    typedef union my_union {
    	volatile int vi;
    	char x : 1;
    	int y : 4;
    	long long array[40];
    } t_my_union;
    typedef enum my_enum {
    	e1 = 1,
    	e2 = 2,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 02 19:56:24 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/regalloc.go

    func (s *regAllocState) makeSpill(v *Value, b *Block) *Value {
    	vi := &s.values[v.ID]
    	if vi.spill != nil {
    		// Final block not known - keep track of subtree where restores reside.
    		vi.restoreMin = min32(vi.restoreMin, s.sdom[b.ID].entry)
    		vi.restoreMax = max32(vi.restoreMax, s.sdom[b.ID].exit)
    		return vi.spill
    	}
    	// Make a spill for v. We don't know where we want
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  9. src/main/resources/fess_indices/fess/vi/stopwords.txt

    ngay
    nhiều
    như
    nhưng
    những
    nơi
    nữa
    phải
    qua
    ra
    rằng
    rằng
    rất
    rất
    rồi
    sau
    sẽ
    so
    sự
    tại
    theo
    thì
    trên
    trước
    từ
    từng
    và
    vẫn
    vào
    vậy
    
    việc
    với
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 457 bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/trim.go

    	} else {
    		// If the original block contained u = φ(u0, u1, ..., un) and
    		// the current phi is
    		//    v = φ(v0, v1, ...,  vi, ..., vk)
    		// i.e. it does not use a value from the predecessor block,
    		// then the merged phi is
    		//    v = φ(v0, v1, ..., vk, vi, vi, ...)
    		for j := 1; j < len(b.Preds); j++ {
    			v.AddArg(v.Args[i])
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 4.2K bytes
    - Viewed (0)
Back to top