Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for RSs (0.02 sec)

  1. maven-core/src/test/java/org/apache/maven/internal/impl/DefaultSessionTest.java

    public class DefaultSessionTest {
    
        @Test
        void testRootDirectoryWithNull() {
            RepositorySystemSession rss = new DefaultRepositorySystemSession(h -> false);
            DefaultMavenExecutionRequest mer = new DefaultMavenExecutionRequest();
            MavenSession ms = new MavenSession(null, rss, mer, null);
            DefaultSession session =
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jan 25 13:58:24 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/util/ipvs_linux.go

    	}
    	rss := make([]*RealServer, 0)
    	for _, dst := range dsts {
    		dst, err := toRealServer(dst)
    		// TODO: aggregate errors?
    		if err != nil {
    			return nil, fmt.Errorf("could not convert IPVS destination to local real server: %w", err)
    		}
    		rss = append(rss, dst)
    	}
    	return rss, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/internal/impl/TestApi.java

        @Inject
        ToolchainsBuilder toolchainsBuilder;
    
        @BeforeEach
        void setup() {
            // create session with any local repo, is redefined anyway below
            RepositorySystemSession rss = new MavenSessionBuilderSupplier(repositorySystem)
                    .get()
                    .withLocalRepositoryBaseDirectories(new File("target").toPath())
                    .build();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. pkg/controller/replicaset/replica_set.go

    	// them to see if anyone wants to adopt it.
    	// DO NOT observe creation because no controller should be waiting for an
    	// orphan.
    	rss := rsc.getPodReplicaSets(pod)
    	if len(rss) == 0 {
    		return
    	}
    	logger.V(4).Info("Orphan Pod created", "pod", klog.KObj(pod), "detail", pod)
    	for _, rs := range rss {
    		rsc.enqueueRS(rs)
    	}
    }
    
    // When a pod is updated, figure out what replica set/s manage it and wake them
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  5. pkg/controller/replicaset/replica_set_test.go

    		for _, r := range c.inRSs {
    			informers.Apps().V1().ReplicaSets().Informer().GetIndexer().Add(r)
    		}
    		if rss := manager.getPodReplicaSets(c.pod); rss != nil {
    			if len(rss) != 1 {
    				t.Errorf("len(rss) = %v, want %v", len(rss), 1)
    				continue
    			}
    			rs := rss[0]
    			if c.outRSName != rs.Name {
    				t.Errorf("Got replica set %+v expected %+v", rs.Name, c.outRSName)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapFile.java

     *
     */
    public class SitemapFile implements Sitemap {
    
        private static final long serialVersionUID = 1L;
    
        /**
         * Identifies the location of the Sitemap. This location can be a Sitemap,
         * an Atom file, RSS file or a simple text file.
         */
        private String loc;
    
        /**
         * Identifies the time that the corresponding Sitemap file was modified. It
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. src/runtime/mgcscavenge.go

    )
    
    // heapRetained returns an estimate of the current heap RSS.
    func heapRetained() uint64 {
    	return gcController.heapInUse.load() + gcController.heapFree.load()
    }
    
    // gcPaceScavenger updates the scavenger's pacing, particularly
    // its rate and RSS goal. For this, it requires the current heapGoal,
    // and the heapGoal for the previous GC cycle.
    //
    // The RSS goal is based on the current heap goal with a small overhead
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. pkg/kubelet/stats/provider_test.go

    func getTerminatedContainerInfo(seed int, podName string, podNamespace string, containerName string) cadvisorapiv2.ContainerInfo {
    	cinfo := getTestContainerInfo(seed, podName, podNamespace, containerName)
    	cinfo.Stats[0].Memory.RSS = 0
    	cinfo.Stats[0].CpuInst.Usage.Total = 0
    	cinfo.Stats[0].Network = &cadvisorapiv2.NetworkStats{
    		Interfaces: []cadvisorapiv1.InterfaceStats{{
    			Name:     "eth0",
    			RxBytes:  0,
    			RxErrors: 0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  9. cmd/erasure-server-pool-rebalance_gen.go

    				err = msgp.WrapError(err, "ID")
    				return
    			}
    		case "pf":
    			z.PercentFreeGoal, err = dc.ReadFloat64()
    			if err != nil {
    				err = msgp.WrapError(err, "PercentFreeGoal")
    				return
    			}
    		case "rss":
    			var zb0002 uint32
    			zb0002, err = dc.ReadArrayHeader()
    			if err != nil {
    				err = msgp.WrapError(err, "PoolStats")
    				return
    			}
    			if cap(z.PoolStats) >= int(zb0002) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  10. src/encoding/xml/read_test.go

    	}
    }
    
    // hget http://codereview.appspot.com/rss/mine/rsc
    const atomFeedString = `
    <?xml version="1.0" encoding="utf-8"?>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
Back to top