Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for KaCall (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/internal/obj/s390x/a.out.go

    	AVMSLEOG
    
    	ANOPH // NOP
    
    	// binary
    	ABYTE
    	AWORD
    	ADWORD
    
    	// Breakpoint
    	ABRRK
    
    	// end marker
    	ALAST
    
    	// aliases
    	ABR = obj.AJMP
    	ABL = obj.ACALL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/a.out.go

    	AXVCVUXDSP
    	AXVCVUXWSP
    	AXSMAXJDP
    	AXSMINJDP
    	ALASTAOUT // The last instruction in this list. Also the first opcode generated by ppc64map.
    
    	// aliases
    	ABR   = obj.AJMP
    	ABL   = obj.ACALL
    	ALAST = ALASTGEN // The final enumerated instruction value + 1. This is used to size the oprange table.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm64/obj7.go

    		p1 := obj.Appendp(p, c.newprog)
    		p1.As = AADD
    		p1.From.Type = obj.TYPE_CONST
    		p1.From.Offset = offset
    		p1.To.Type = obj.TYPE_REG
    		p1.To.Reg = REGTMP
    		p2 := obj.Appendp(p1, c.newprog)
    		p2.As = obj.ACALL
    		p2.To.Type = obj.TYPE_REG
    		p2.To.Reg = REGTMP
    	}
    
    	// We only care about global data: NAME_EXTERN means a global
    	// symbol in the Go sense, and p.Sym.Local is true for a few
    	// internally defined symbols.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 05:46:32 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/a.out.go

    	AVUSHLL2
    	AVUSHR
    	AVUSRA
    	AVUXTL
    	AVUXTL2
    	AVUZP1
    	AVUZP2
    	AVXAR
    	AVZIP1
    	AVZIP2
    	AWFE
    	AWFI
    	AWORD
    	AYIELD
    	ALAST
    	AB  = obj.AJMP
    	ABL = obj.ACALL
    )
    
    const (
    	// shift types
    	SHIFT_LL  = 0 << 22
    	SHIFT_LR  = 1 << 22
    	SHIFT_AR  = 2 << 22
    	SHIFT_ROR = 3 << 22
    )
    
    // Arrangement for ARM64 SIMD instructions
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/loong64/obj.go

    		}
    		source = &p.From
    	} else if p.To.Name == obj.NAME_EXTERN && !p.To.Sym.Local() {
    		source = &p.To
    	} else {
    		return
    	}
    	if p.As == obj.ATEXT || p.As == obj.AFUNCDATA || p.As == obj.ACALL || p.As == obj.ARET || p.As == obj.AJMP {
    		return
    	}
    	if source.Sym.Type == objabi.STLSBSS {
    		return
    	}
    	if source.Type != obj.TYPE_MEM {
    		ctxt.Diag("don't know how to handle %v with -shared", p)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:22:18 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  10. pkg/scheduler/scheduler_test.go

    				})
    				// Validate the name of pods in waitingPods matches expectations.
    				if actualPodNamesInWaitingPods.Len() != len(tc.expectPodNamesInWaitingPods) ||
    					!actualPodNamesInWaitingPods.HasAll(tc.expectPodNamesInWaitingPods...) {
    					t.Fatalf("Unexpected waitingPods in scheduler profile %s, expect: %#v, got: %#v", fwk.ProfileName(), tc.expectPodNamesInWaitingPods, actualPodNamesInWaitingPods.List())
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 42K bytes
    - Viewed (0)
Back to top