Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for pfx (0.02 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/internal/src/pos.go

    }
    
    func (x lico) lineNumberHTML() string {
    	if x.IsStmt() == PosDefaultStmt {
    		return fmt.Sprintf("%d", x.Line())
    	}
    	style, pfx := "b", "+"
    	if x.IsStmt() == PosNotStmt {
    		style = "s" // /strike not supported in HTML5
    		pfx = ""
    	}
    	return fmt.Sprintf("<%s>%s%d</%s>", style, pfx, x.Line(), style)
    }
    
    func (x lico) atColumn1() lico {
    	return makeLico(x.Line(), 1).withIsStmt()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  5. cmd/erasure-server-pool-decom.go

    	// Last bucket/object decommissioned.
    	Bucket string `json:"-" msg:"bkt"`
    	// Captures prefix that is currently being
    	// decommissioned inside the 'Bucket'
    	Prefix string `json:"-" msg:"pfx"`
    	Object string `json:"-" msg:"obj"`
    
    	// Verbose information
    	ItemsDecommissioned     int64 `json:"objectsDecommissioned" msg:"id"`
    	ItemsDecommissionFailed int64 `json:"objectsDecommissionedFailed" msg:"idf"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 14:30:43 UTC 2024
    - 41.5K bytes
    - Viewed (1)
Back to top