Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 244 for Rs (0.03 sec)

  1. samples/bookinfo/src/reviews/reviews-application/src/main/java/application/ReviewsApplication.java

    package application;
    import javax.ws.rs.ApplicationPath;
    import javax.ws.rs.core.Application;
    
    @ApplicationPath("/")
    public class ReviewsApplication extends Application {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 17:00:23 UTC 2017
    - 173 bytes
    - Viewed (0)
  2. pkg/controller/disruption/disruption_test.go

    	add(t, dc.pdbStore, pdb)
    
    	rs, _ := newReplicaSet(t, 7)
    	add(t, dc.rsStore, rs)
    
    	pod, _ := newPod(t, "pod")
    	updatePodOwnerToRs(t, pod, rs)
    	add(t, dc.podStore, pod)
    	dc.sync(ctx, pdbName)
    	ps.VerifyPdbStatus(t, pdbName, 0, 1, 5, 7, map[string]metav1.Time{})
    
    	// Update scale of ReplicaSet and check PDB
    	rs.Spec.Replicas = pointer.Int32(5)
    	update(t, dc.rsStore, rs)
    
    	dc.sync(ctx, pdbName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. src/cmd/link/internal/riscv64/asm.go

    			ldr.Errorf(s, "cannot encode R_RISCV_PCREL_ AUIPC relocation offset for %s: %v", ldr.SymName(rs), err)
    		}
    
    		auipc := int64(uint32(val))
    		auipc = (auipc &^ riscv.UTypeImmMask) | int64(uint32(auipcImm))
    
    		return auipc, 0, true
    
    	case objabi.R_RISCV_PCREL_LO12_I, objabi.R_RISCV_PCREL_LO12_S:
    		hi20Reloc := findHI20Reloc(ldr, rs, ldr.SymValue(rs))
    		if hi20Reloc == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 01 08:06:08 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  4. internal/s3select/sql/stringfuncs.go

    }
    
    func evalSQLSubstring(s string, startIdx, length int) (res string, err error) {
    	rs := []rune(s)
    
    	// According to s3 document, if startIdx < 1, it is set to 1.
    	if startIdx < 1 {
    		startIdx = 1
    	}
    
    	if startIdx > len(rs) {
    		startIdx = len(rs) + 1
    	}
    
    	// StartIdx is 1-based in the input
    	startIdx--
    	endIdx := len(rs)
    	if length != -1 {
    		if length < 0 {
    			return "", errInvalidSubstringIndexLen
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/check/visitor.go

    func (v Visitor) Checker() echo.Checker {
    	return func(result echo.CallResult, _ error) error {
    		rs := result.Responses
    		if rs.IsEmpty() {
    			return fmt.Errorf("no responses received")
    		}
    		outErr := istiomultierror.New()
    		for i, r := range rs {
    			if err := v.Visit(r); err != nil {
    				outErr = multierror.Append(outErr, fmt.Errorf("response[%d]: %v", i, err))
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 28 23:06:21 UTC 2022
    - 2K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/objfile.go

    		binary.LittleEndian.PutUint64(tmp[6:14], uint64(r.Add))
    		h.Write(tmp[:])
    		rs := r.Sym
    		if rs == nil {
    			fmt.Printf("symbol: %s\n", s)
    			fmt.Printf("relocation: %#v\n", r)
    			panic("nil symbol target in relocation")
    		}
    		switch rs.PkgIdx {
    		case goobj.PkgIdxHashed64:
    			h.Write([]byte{0})
    			t := contentHash64(rs)
    			h.Write(t[:])
    		case goobj.PkgIdxHashed:
    			h.Write([]byte{1})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/hash/Striped64.java

                if (busy == 0 && casBusy()) {
                  boolean created = false;
                  try { // Recheck under lock
                    Cell[] rs;
                    int m, j;
                    if ((rs = cells) != null && (m = rs.length) > 0 && rs[j = (m - 1) & h] == null) {
                      rs[j] = r;
                      created = true;
                    }
                  } finally {
                    busy = 0;
                  }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. schema/schema_helper_test.go

    	for name, relations := range actual {
    		rs := expected[name]
    		t.Run("CheckEmbeddedRelations/"+name, func(t *testing.T) {
    			if len(relations.Relations) != len(rs.Relations) {
    				t.Errorf("schema relations count don't match, expects %d, got %d", len(rs.Relations), len(relations.Relations))
    			}
    			if len(relations.EmbeddedRelations) != len(rs.EmbeddedRelations) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Dec 15 08:31:23 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/sidecar/util.go

    package sidecar
    
    import (
    	"sort"
    
    	"istio.io/istio/pkg/config/resource"
    )
    
    func getNames(entries []*resource.Instance) []string {
    	names := make([]string, 0, len(entries))
    	for _, rs := range entries {
    		names = append(names, string(rs.Metadata.FullName.Name))
    	}
    	sort.Strings(names)
    	return names
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 884 bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/build.go

    		m := module.Version{Path: path, Version: vers}
    		return moduleInfo(ctx, nil, m, 0, nil)
    	}
    
    	rs := LoadModFile(ctx)
    
    	var (
    		v  string
    		ok bool
    	)
    	if rs.pruning == pruned {
    		v, ok = rs.rootSelected(path)
    	}
    	if !ok {
    		mg, err := rs.Graph(ctx)
    		if err != nil {
    			base.Fatal(err)
    		}
    		v = mg.Selected(path)
    	}
    
    	if v == "none" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top