Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 59 for KaCall (0.1 sec)

  1. cmd/kubeadm/app/cmd/reset_test.go

    		if !expected.Equal(data.ignorePreflightErrors) {
    			t.Errorf("Invalid ignore preflight errors. Expected: %v. Actual: %v", sets.List(expected), sets.List(data.ignorePreflightErrors))
    		}
    		if data.cfg != nil && !expected.HasAll(data.cfg.NodeRegistration.IgnorePreflightErrors...) {
    			t.Errorf("Invalid ignore preflight errors in InitConfiguration. Expected: %v. Actual: %v", sets.List(expected), data.cfg.NodeRegistration.IgnorePreflightErrors)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 13:42:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/join_test.go

    		if !expected.Equal(data.ignorePreflightErrors) {
    			t.Errorf("Invalid ignore preflight errors. Expected: %v. Actual: %v", sets.List(expected), sets.List(data.ignorePreflightErrors))
    		}
    		if !expected.HasAll(data.cfg.NodeRegistration.IgnorePreflightErrors...) {
    			t.Errorf("Invalid ignore preflight errors in JoinConfiguration. Expected: %v. Actual: %v", sets.List(expected), data.cfg.NodeRegistration.IgnorePreflightErrors)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 12:26:20 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm/a.out.go

    	ABFX
    	ABFXU
    	ABFC
    	ABFI
    
    	AMULWT
    	AMULWB
    	AMULBB
    	AMULAWT
    	AMULAWB
    	AMULABB
    
    	AMRC // MRC/MCR
    
    	ALAST
    
    	// aliases
    	AB  = obj.AJMP
    	ABL = obj.ACALL
    )
    
    /* scond byte */
    const (
    	C_SCOND = (1 << 4) - 1
    	C_SBIT  = 1 << 4
    	C_PBIT  = 1 << 5
    	C_WBIT  = 1 << 6
    	C_FBIT  = 1 << 7 /* psr flags-only */
    	C_UBIT  = 1 << 7 /* up bit, unsigned bit */
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 05 16:22:12 UTC 2021
    - 7K bytes
    - Viewed (0)
  4. pkg/registry/core/serviceaccount/storage/token.go

    func (r *TokenREST) isKubeAudiences(tokenAudience []string) bool {
    	// tokenAudiences must be a strict subset of apiserver audiences
    	return r.audsSet.HasAll(tokenAudience...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 10:24:31 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/init_test.go

    		if !expected.Equal(data.ignorePreflightErrors) {
    			t.Errorf("Invalid ignore preflight errors. Expected: %v. Actual: %v", sets.List(expected), sets.List(data.ignorePreflightErrors))
    		}
    		if !expected.HasAll(data.cfg.NodeRegistration.IgnorePreflightErrors...) {
    			t.Errorf("Invalid ignore preflight errors in InitConfiguration. Expected: %v. Actual: %v", sets.List(expected), data.cfg.NodeRegistration.IgnorePreflightErrors)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 12:26:20 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/obj9.go

    	}
    }
    
    // Rewrite p, if necessary, to access a symbol using its TOC anchor.
    // This code is for AIX only.
    func (c *ctxt9) rewriteToUseTOC(p *obj.Prog) {
    	if p.As == obj.ATEXT || p.As == obj.AFUNCDATA || p.As == obj.ACALL || p.As == obj.ARET || p.As == obj.AJMP {
    		return
    	}
    
    	if p.As == obj.ADUFFCOPY || p.As == obj.ADUFFZERO {
    		// ADUFFZERO/ADUFFCOPY is considered as an ABL except in dynamic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/mips/a.out.go

    	ATRUNCFW
    	ATRUNCDW
    	AMOVWU
    	AMOVFV
    	AMOVDV
    	AMOVVF
    	AMOVVD
    
    	/* MSA */
    	AVMOVB
    	AVMOVH
    	AVMOVW
    	AVMOVD
    
    	ALAST
    
    	// aliases
    	AJMP = obj.AJMP
    	AJAL = obj.ACALL
    	ARET = obj.ARET
    )
    
    func init() {
    	// The asm encoder generally assumes that the lowest 5 bits of the
    	// REG_XX constants match the machine instruction encoding, i.e.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/validation/validation.go

    // ValidateDryRun validates that a dryRun query param only contains allowed values.
    func ValidateDryRun(fldPath *field.Path, dryRun []string) field.ErrorList {
    	allErrs := field.ErrorList{}
    	if !allowedDryRunValues.HasAll(dryRun...) {
    		allErrs = append(allErrs, field.NotSupported(fldPath, dryRun, allowedDryRunValues.List()))
    	}
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 01:52:02 UTC 2022
    - 13.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/x86/ssa.go

    		p.To.Reg = v.Reg()
    
    	case ssa.Op386LoweredWB:
    		p := s.Prog(obj.ACALL)
    		p.To.Type = obj.TYPE_MEM
    		p.To.Name = obj.NAME_EXTERN
    		// AuxInt encodes how many buffer entries we need.
    		p.To.Sym = ir.Syms.GCWriteBarrier[v.AuxInt-1]
    
    	case ssa.Op386LoweredPanicBoundsA, ssa.Op386LoweredPanicBoundsB, ssa.Op386LoweredPanicBoundsC:
    		p := s.Prog(obj.ACALL)
    		p.To.Type = obj.TYPE_MEM
    		p.To.Name = obj.NAME_EXTERN
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/x86/aenum.go

    	AROLL
    	AROLQ
    	AROLW
    	ARORB
    	ARORL
    	ARORQ
    	ARORW
    	ARORXL
    	ARORXQ
    	AROUNDPD
    	AROUNDPS
    	AROUNDSD
    	AROUNDSS
    	ARSM
    	ARSQRTPS
    	ARSQRTSS
    	ASAHF
    	ASALB
    	ASALL
    	ASALQ
    	ASALW
    	ASARB
    	ASARL
    	ASARQ
    	ASARW
    	ASARXL
    	ASARXQ
    	ASBBB
    	ASBBL
    	ASBBQ
    	ASBBW
    	ASCASB
    	ASCASL
    	ASCASQ
    	ASCASW
    	ASETCC
    	ASETCS
    	ASETEQ
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 16.3K bytes
    - Viewed (0)
Back to top