Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for TestArgs (0.3 sec)

  1. hack/make-rules/test.sh

          exit 1
          ;;
        ?)
          kube::test::usage
          exit 1
          ;;
      esac
    done
    shift $((OPTIND - 1))
    
    # Use eval to preserve embedded quoted strings.
    testargs=()
    eval "testargs=(${KUBE_TEST_ARGS:-})"
    
    # Used to filter verbose test output.
    go_test_grep_pattern=".*"
    
    goflags=()
    # The junit report tool needs full test case information to produce a
    # meaningful report.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/lastappliedmanager_test.go

    	yamlutil "k8s.io/apimachinery/pkg/util/yaml"
    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    	"sigs.k8s.io/structured-merge-diff/v4/merge"
    	"sigs.k8s.io/yaml"
    )
    
    type testArgs struct {
    	lastApplied       []byte
    	original          []byte
    	applied           []byte
    	fieldManager      string
    	expectConflictSet *fieldpath.Set
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 20K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/func_test.go

    	kind    BlockKind
    	control string
    	succs   []string
    }
    
    type valu struct {
    	name   string
    	op     Op
    	t      *types.Type
    	auxint int64
    	aux    Aux
    	args   []string
    }
    
    func TestArgs(t *testing.T) {
    	c := testConfig(t)
    	fun := c.Fun("entry",
    		Bloc("entry",
    			Valu("a", OpConst64, c.config.Types.Int64, 14, nil),
    			Valu("b", OpConst64, c.config.Types.Int64, 26, nil),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:01:04 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/test/test.go

    }
    
    func (f *testVFlag) String() string {
    	if f.json {
    		return "test2json"
    	}
    	if f.on {
    		return "true"
    	}
    	return "false"
    }
    
    var (
    	testArgs []string
    	pkgArgs  []string
    	pkgs     []*load.Package
    
    	testHelp bool // -help option passed to test via -args
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/link.go

    // return the first source operand in p.RestArgs.
    // In combination with Prog.From and Prog.To it makes common 3 operand
    // case easier to use.
    func (p *Prog) GetFrom3() *Addr {
    	for i := range p.RestArgs {
    		if p.RestArgs[i].Pos == Source {
    			return &p.RestArgs[i].Addr
    		}
    	}
    	return nil
    }
    
    // AddRestSource assigns []Args{{a, Source}} to p.RestArgs.
    func (p *Prog) AddRestSource(a Addr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/asm9_gtables.go

    	o1 |= uint32(p.To.Reg&0x1f) << 21                          // RT
    	o1 |= uint32(p.From.Reg&0x1f) << 16                        // RA
    	o0 |= uint32((p.RestArgs[0].Addr.Offset>>16)&0x3ffff) << 0 // si0
    	o1 |= uint32(p.RestArgs[0].Addr.Offset&0xffff) << 0        // si1
    	o0 |= uint32(p.RestArgs[1].Addr.Offset&0x1) << 20          // R
    	out[1] = o1
    	out[0] = o0
    }
    
    // pextd RA,RS,RB
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 20:18:50 UTC 2022
    - 42.6K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/ytab.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package x86
    
    // argListMax specifies upper arg count limit expected to be carried by obj.Prog.
    // Max len(obj.Prog.RestArgs) can be inferred from this to be 4.
    const argListMax int = 6
    
    type argList [argListMax]uint8
    
    type ytab struct {
    	zcase   uint8
    	zoffset uint8
    
    	// Last arg is usually destination.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 06 15:40:03 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/go.go

    // license that can be found in the LICENSE file.
    
    package obj
    
    // go-specific code shared across loaders (5l, 6l, 8l).
    
    func Nopout(p *Prog) {
    	p.As = ANOP
    	p.Scond = 0
    	p.From = Addr{}
    	p.RestArgs = nil
    	p.Reg = 0
    	p.To = Addr{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 21:05:03 UTC 2017
    - 342 bytes
    - Viewed (0)
  9. src/cmd/internal/obj/util.go

    		// Should not happen but might as well show it if it does.
    		fmt.Fprintf(w, "%s%v", sep, Rconv(int(p.Reg)))
    		sep = ", "
    	}
    	for i := range p.RestArgs {
    		if p.RestArgs[i].Pos == Source {
    			io.WriteString(w, sep)
    			WriteDconv(w, p, &p.RestArgs[i].Addr)
    			sep = ", "
    		}
    	}
    
    	if p.As == ATEXT {
    		// If there are attributes, print them. Otherwise, skip the comma.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/obj9.go

    	//                                "ADDEX R3, R4, $3, R5"
    	case AVSHASIGMAW, AVSHASIGMAD, AADDEX, AXXSLDWI, AXXPERMDI:
    		if len(p.RestArgs) == 2 && p.Reg == 0 && p.RestArgs[0].Addr.Type == obj.TYPE_CONST && p.RestArgs[1].Addr.Type == obj.TYPE_REG {
    			p.Reg = p.RestArgs[1].Addr.Reg
    			p.RestArgs = p.RestArgs[:1]
    		}
    	}
    
    	if c.ctxt.Headtype == objabi.Haix {
    		c.rewriteToUseTOC(p)
    	} else if c.ctxt.Flag_dynlink {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
Back to top