Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for pfx (0.35 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. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/gen_test.go

    		skipNSs := []string{pfx + "-n4", pfx + "-n5", pfx + "-n6"}
    		if mayMatchClusterScope && rr.Namespaces[0] != "" && rng.Float32() < 0.1 {
    			skipNSs[0] = ""
    		}
    		skippingRIs = genRRIs(rng, 3,
    			[]string{pfx + "-v4", pfx + "-v5", pfx + "-v6"},
    			[]string{pfx + ".g4", pfx + ".g5", pfx + ".g6"},
    			[]string{pfx + "-r4s", pfx + "-r5s", pfx + "-r6s"},
    			skipNSs)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  3. 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)
  4. src/mdo/model-v3.vm

          #elseif ( $field.to )
            return getDelegate().${pfx}${cap}() != null ? new ${field.to}(getDelegate().${pfx}${cap}(), this) : null;
          #elseif ( $field.type == "DOM" )
            return getDelegate().${pfx}${cap}() != null ? new Xpp3Dom(getDelegate().${pfx}${cap}(), this::replace) : null;
          #else
            return getDelegate().${pfx}${cap}();
          #end
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Nov 06 19:04:44 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. src/net/netip/netip_test.go

    		{pfx("1.2.0.0/16"), pfx("1.2.3.0/32"), true},
    		{pfx("1.2.3.0/32"), pfx("1.2.0.0/16"), true},
    
    		// Match /0 either order
    		{pfx("1.2.3.0/32"), pfx("0.0.0.0/0"), true},
    		{pfx("0.0.0.0/0"), pfx("1.2.3.0/32"), true},
    
    		{pfx("1.2.3.0/32"), pfx("5.5.5.5/0"), true}, // normalization not required; /0 means true
    
    		// IPv6 overlapping
    		{pfx("5::1/128"), pfx("5::0/8"), true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  9. src/mdo/model.vm

          #set ( $type = ${types.getOrDefault($field,${types.getOrDefault($field.type,$field.type)})} )
          #if ( $type == "boolean" || $type == "Boolean" )
            #set ( $pfx = "is" )
          #else
            #set ( $pfx = "get" )
          #end
        /**
          #set ( $desc = ${field.description.trim()} )
          #foreach ( $line in ${desc.split("\n")} )
         * ${line.trim()}
          #end
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  10. cmd/erasure-server-pool-decom_gen.go

    					return
    				}
    			}
    		case "bkt":
    			z.Bucket, err = dc.ReadString()
    			if err != nil {
    				err = msgp.WrapError(err, "Bucket")
    				return
    			}
    		case "pfx":
    			z.Prefix, err = dc.ReadString()
    			if err != nil {
    				err = msgp.WrapError(err, "Prefix")
    				return
    			}
    		case "obj":
    			z.Object, err = dc.ReadString()
    			if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jul 04 21:02:54 UTC 2022
    - 26.7K bytes
    - Viewed (0)
Back to top