Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 186 for qsub (0.04 sec)

  1. src/cmd/internal/obj/ppc64/obj9.go

    				p.From.Offset = 0
    			}
    		}
    	}
    
    	switch p.As {
    	// Rewrite SUB constants into ADD.
    	case ASUBC:
    		if p.From.Type == obj.TYPE_CONST {
    			p.From.Offset = -p.From.Offset
    			p.As = AADDC
    		}
    
    	case ASUBCCC:
    		if p.From.Type == obj.TYPE_CONST {
    			p.From.Offset = -p.From.Offset
    			p.As = AADDCCC
    		}
    
    	case ASUB:
    		if p.From.Type != obj.TYPE_CONST {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf.go

    		// sh.info is the index of first non-local symbol (number of local symbols)
    		s := ldr.Lookup(".dynsym", 0)
    		i := uint32(0)
    		for sub := s; sub != 0; sub = ldr.SubSym(sub) {
    			i++
    			if !ldr.AttrLocal(sub) {
    				break
    			}
    		}
    		sh.Info = i
    		shsym(sh, ldr, s)
    
    		sh = elfshname(".dynstr")
    		sh.Type = uint32(elf.SHT_STRTAB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_server_test.go

    		t.Error("cloned hash generated a different sum")
    	}
    }
    
    func expectError(t *testing.T, err error, sub string) {
    	if err == nil {
    		t.Errorf(`expected error %q, got nil`, sub)
    	} else if !strings.Contains(err.Error(), sub) {
    		t.Errorf(`expected error %q, got %q`, sub, err)
    	}
    }
    
    func TestKeyTooSmallForRSAPSS(t *testing.T) {
    	cert, err := X509KeyPair([]byte(`-----BEGIN CERTIFICATE-----
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  4. src/runtime/stack_test.go

    			}
    		})
    		defer timer.Stop()
    	}
    
    	GC()
    	wg.Wait()
    	t.Logf("finalizer started after %s and ran %d iterations in %v", finalizerStart.Sub(setFinalizerTime), progress.Load(), time.Since(finalizerStart))
    }
    
    // ... and in init
    //func init() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  5. pkg/registry/core/pod/storage/storage.go

    	registrypod "k8s.io/kubernetes/pkg/registry/core/pod"
    	podrest "k8s.io/kubernetes/pkg/registry/core/pod/rest"
    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    )
    
    // PodStorage includes storage for pods and all sub resources
    type PodStorage struct {
    	Pod                 *REST
    	Binding             *BindingREST
    	LegacyBinding       *LegacyBindingREST
    	Eviction            *EvictionREST
    	Status              *StatusREST
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  6. src/encoding/xml/xml.go

    	// It works for all actual cases, though.
    	param = param + "="
    	lenp := len(param)
    	i := 0
    	var sep byte
    	for i < len(s) {
    		sub := s[i:]
    		k := strings.Index(sub, param)
    		if k < 0 || lenp+k >= len(sub) {
    			return ""
    		}
    		i += lenp + k + 1
    		if c := sub[lenp+k]; c == '\'' || c == '"' {
    			sep = c
    			break
    		}
    	}
    	if sep == 0 {
    		return ""
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  7. pkg/kubeapiserver/options/authentication.go

    			"in the oidc-ca-file, otherwise the host's root CA set will be used.")
    
    		fs.StringVar(&o.OIDC.UsernameClaim, oidcUsernameClaimFlag, "sub", ""+
    			"The OpenID claim to use as the user name. Note that claims other than the default ('sub') "+
    			"is not guaranteed to be unique and immutable. This flag is experimental, please see "+
    			"the authentication documentation for further details.")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 22:40:22 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  8. pkg/kubelet/token/token_manager_test.go

    				tr.Spec.ExpirationSeconds = nil
    			},
    		},
    	}
    
    	for i, c := range cases {
    		t.Run(fmt.Sprint(i), func(t *testing.T) {
    			clock := testingclock.NewFakeClock(c.now)
    			secs := int64(c.exp.Sub(start).Seconds())
    			tr := &authenticationv1.TokenRequest{
    				Spec: authenticationv1.TokenRequestSpec{
    					ExpirationSeconds: &secs,
    				},
    				Status: authenticationv1.TokenRequestStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 04 00:16:47 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  9. src/encoding/xml/marshal_test.go

    	},
    
    	// Test ",any"
    	{
    		ExpectXML: `<a><nested><value>known</value></nested><other><sub>unknown</sub></other></a>`,
    		Value: &AnyTest{
    			Nested: "known",
    			AnyField: AnyHolder{
    				XMLName: Name{Local: "other"},
    				XML:     "<sub>unknown</sub>",
    			},
    		},
    	},
    	{
    		Value: &AnyTest{Nested: "known",
    			AnyField: AnyHolder{
    				XML:     "<unknown/>",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/ssa.go

    	{ir.OADD, types.TFLOAT64}: ssa.OpAdd64F,
    
    	{ir.OSUB, types.TINT8}:    ssa.OpSub8,
    	{ir.OSUB, types.TUINT8}:   ssa.OpSub8,
    	{ir.OSUB, types.TINT16}:   ssa.OpSub16,
    	{ir.OSUB, types.TUINT16}:  ssa.OpSub16,
    	{ir.OSUB, types.TINT32}:   ssa.OpSub32,
    	{ir.OSUB, types.TUINT32}:  ssa.OpSub32,
    	{ir.OSUB, types.TINT64}:   ssa.OpSub64,
    	{ir.OSUB, types.TUINT64}:  ssa.OpSub64,
    	{ir.OSUB, types.TFLOAT32}: ssa.OpSub32F,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top