Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 244 for Rs (0.43 sec)

  1. android/guava/src/com/google/common/cache/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)
  2. guava/src/com/google/common/cache/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)
  3. samples/bookinfo/src/reviews/reviews-application/src/main/java/application/rest/LibertyRestEndpoint.java

    import javax.json.JsonReader;
    import javax.ws.rs.GET;
    import javax.ws.rs.Path;
    import javax.ws.rs.PathParam;
    import javax.ws.rs.ProcessingException;
    import javax.ws.rs.client.Client;
    import javax.ws.rs.client.ClientBuilder;
    import javax.ws.rs.client.Invocation;
    import javax.ws.rs.client.WebTarget;
    import javax.ws.rs.core.Application;
    import javax.ws.rs.core.Context;
    import javax.ws.rs.core.HttpHeaders;
    import javax.ws.rs.core.MediaType;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 15 22:25:32 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  4. pkg/controller/deployment/recreate.go

    	scaled := false
    	for i := range oldRSs {
    		rs := oldRSs[i]
    		// Scaling not required.
    		if *(rs.Spec.Replicas) == 0 {
    			continue
    		}
    		scaledRS, updatedRS, err := dc.scaleReplicaSetAndRecordEvent(ctx, rs, 0, deployment)
    		if err != nil {
    			return false, err
    		}
    		if scaledRS {
    			oldRSs[i] = updatedRS
    			scaled = true
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 13 20:32:13 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/util/ipvs_linux.go

    // toIPVSDestination converts a RealServer to the equivalent IPVS Destination structure.
    func toIPVSDestination(rs *RealServer) (*libipvs.Destination, error) {
    	if rs == nil {
    		return nil, errors.New("real server should not be empty")
    	}
    	return &libipvs.Destination{
    		Address: rs.Address,
    		Port:    rs.Port,
    		Weight:  rs.Weight,
    	}, nil
    }
    
    // stringToProtocolType returns the protocol type for the given name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. pkg/registry/apps/replicaset/strategy_test.go

    			ObservedGeneration: int64(10),
    		},
    	}
    
    	Strategy.PrepareForCreate(ctx, rs)
    	if rs.Status.Replicas != 0 {
    		t.Error("ReplicaSet should not allow setting status.replicas on create")
    	}
    	if rs.Status.ObservedGeneration != int64(0) {
    		t.Error("ReplicaSet should not allow setting status.observedGeneration on create")
    	}
    	errs := Strategy.Validate(ctx, rs)
    	if len(errs) != 0 {
    		t.Errorf("Unexpected error validating %v", errs)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 09 21:04:31 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  7. pkg/controller/deployment/deployment_controller.go

    	rs := obj.(*apps.ReplicaSet)
    
    	if rs.DeletionTimestamp != nil {
    		// On a restart of the controller manager, it's possible for an object to
    		// show up in a state that is already pending deletion.
    		dc.deleteReplicaSet(logger, rs)
    		return
    	}
    	// If it has a ControllerRef, that's all that matters.
    	if controllerRef := metav1.GetControllerOf(rs); controllerRef != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loong64/asm.go

    	rs := r.Sym()
    	if target.IsExternal() {
    		switch r.Type() {
    		default:
    			return val, 0, false
    		case objabi.R_LOONG64_ADDR_HI,
    			objabi.R_LOONG64_ADDR_LO:
    			// set up addend for eventual relocation via outer symbol.
    			rs, _ := ld.FoldSubSymbolOffset(ldr, rs)
    			rst := ldr.SymType(rs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. samples/bookinfo/src/reviews/reviews-wlpcfg/src/test/java/it/EndpointTest.java

    package it;
    
    import static org.junit.Assert.assertTrue;
    
    import javax.ws.rs.client.Client;
    import javax.ws.rs.client.ClientBuilder;
    import javax.ws.rs.client.Invocation;
    import javax.ws.rs.client.WebTarget;
    import javax.ws.rs.core.Response;
    
    public class EndpointTest {
    
        public void testEndpoint(String endpoint, String expectedOutput) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 17:00:23 UTC 2017
    - 2.1K bytes
    - Viewed (0)
  10. src/cmd/link/internal/arm64/asm.go

    		if label != 0 {
    			xadd = ldr.SymValue(rs) + xadd - ldr.SymValue(label) // should always be 0 (checked below)
    			rs = label
    		}
    	}
    
    	if !ldr.SymType(s).IsDWARF() {
    		if ldr.SymDynid(rs) < 0 {
    			ldr.Errorf(s, "reloc %d (%s) to non-macho symbol %s type=%d (%s)", rt, sym.RelocName(arch, rt), ldr.SymName(rs), ldr.SymType(rs), ldr.SymType(rs))
    			return false
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
Back to top