Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for pfx (0.03 sec)

  1. docs/en/docs/js/termynal.js

            this.pfx = `data-${options.prefix || 'ty'}`;
            this.originalStartDelay = this.startDelay = options.startDelay
                || parseFloat(this.container.getAttribute(`${this.pfx}-startDelay`)) || 600;
            this.originalTypeDelay = this.typeDelay = options.typeDelay
                || parseFloat(this.container.getAttribute(`${this.pfx}-typeDelay`)) || 90;
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  2. src/mdo/model-version.vm

        private boolean is_${v}(${class.name} ${var}) {
            return ${var} != null && (
            #set ( $pfx = "  " )
            #if ( $class.superClass )
                #if ( $classToFields.containsKey( $model.getClass( $class.superClass, $class.versionRange ) ) )
                $pfx is_${v}((${class.superClass}) ${var})
                    #set ( $pfx = "||" )
                #end
            #end
            #foreach ( $field in $classToFields.get( $class ) )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Oct 16 13:44:33 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  3. src/runtime/debugcall.go

    		// potentially make this condition tighter (e.g., not
    		// when locks are held), but there are enough tightly
    		// coded sequences (e.g., defer handling) that it's
    		// better to play it safe.
    		if pfx := "runtime."; len(name) > len(pfx) && name[:len(pfx)] == pfx {
    			ret = debugCallRuntime
    			return
    		}
    
    		// Check that this isn't an unsafe-point.
    		if pc != f.entry() {
    			pc--
    		}
    		up := pcdatavalue(f, abi.PCDATA_UnsafePoint, pc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 20:50:21 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. cmd/import-boss/main_test.go

    	cases := []struct {
    		base   string
    		pfx    string
    		expect bool
    	}{{
    		base:   "",
    		pfx:    "",
    		expect: true,
    	}, {
    		base:   "/foo/bar",
    		pfx:    "",
    		expect: true,
    	}, {
    		base:   "",
    		pfx:    "/foo",
    		expect: false,
    	}, {
    		base:   "/foo",
    		pfx:    "/foo",
    		expect: true,
    	}, {
    		base:   "/foo/bar",
    		pfx:    "/foo",
    		expect: true,
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/print.go

    	}
    	fmt.Fprintln(p.w, "    "+b.LongString())
    }
    
    func StmtString(p src.XPos) string {
    	linenumber := "(?) "
    	if p.IsKnown() {
    		pfx := ""
    		if p.IsStmt() == src.PosIsStmt {
    			pfx = "+"
    		}
    		if p.IsStmt() == src.PosNotStmt {
    			pfx = "-"
    		}
    		linenumber = fmt.Sprintf("(%s%d) ", pfx, p.Line())
    	}
    	return linenumber
    }
    
    func (p stringFuncPrinter) value(v *Value, live bool) {
    	if !p.printDead && !live {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  6. docs/tls/README.md

    * 3.4 [Use GnuTLS (for Windows) to Generate a Certificate](#using-gnu-tls)
    
    **Note:**
    
    * MinIO only supports keys and certificates in PEM format on Linux and Windows.
    * MinIO doesn't currently support PFX certificates.
    
    ### 3.1 Use `certgen` to Generate a Certificate
    
    Download [`certgen`](https://github.com/minio/certgen/releases/latest) for your specific operating system and platform.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.4K bytes
    - Viewed (0)
Back to top