Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 42 for clen (0.23 sec)

  1. pkg/kubelet/kubelet_pods.go

    	metrics.DesiredPodCount.WithLabelValues("").Set(float64(len(allRegularPods)))
    	metrics.DesiredPodCount.WithLabelValues("true").Set(float64(len(allStaticPods)))
    	metrics.ActivePodCount.WithLabelValues("").Set(float64(len(activeRegularPods)))
    	metrics.ActivePodCount.WithLabelValues("true").Set(float64(len(activeStaticPods)))
    	metrics.MirrorPodCount.Set(float64(len(mirrorPods)))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. callbacks/preload.go

    		inlineConds      []interface{}
    	)
    
    	if rel.JoinTable != nil {
    		var (
    			joinForeignFields    = make([]*schema.Field, 0, len(rel.References))
    			joinRelForeignFields = make([]*schema.Field, 0, len(rel.References))
    			joinForeignKeys      = make([]string, 0, len(rel.References))
    		)
    
    		for _, ref := range rel.References {
    			if ref.OwnPrimaryKey {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/TestThread.java

      // so there is no object state put at risk by stopping the threads abruptly. In some cases a test
      // may put a thread into an uninterruptible operation intentionally, so there is no other way to
      // clean up these threads.
      @SuppressWarnings("deprecation")
      @Override
      public void tearDown() throws Exception {
        stop();
        join();
    
        if (uncaughtThrowable != null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/help/helpdoc.go

    If you have made changes to the C libraries on your system, you
    will need to clean the cache explicitly or else use the -a build flag
    (see 'go help build') to force rebuilding of packages that
    depend on the updated C libraries.
    
    The go command also caches successful package test results.
    See 'go help test' for details. Running 'go clean -testcache' removes
    all cached test results (but not cached build results).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/TestThread.java

      // so there is no object state put at risk by stopping the threads abruptly. In some cases a test
      // may put a thread into an uninterruptible operation intentionally, so there is no other way to
      // clean up these threads.
      @SuppressWarnings("deprecation")
      @Override
      public void tearDown() throws Exception {
        stop();
        join();
    
        if (uncaughtThrowable != null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/project/ProjectBuilderTest.java

            InputLocation pluginLocation = null;
            for (Plugin plugin : project.getBuildPlugins()) {
                if (plugin.getKey().equals("org.apache.maven.plugins:maven-clean-plugin")) {
                    pluginLocation = plugin.getLocation("version");
                }
            }
            assertNotNull(pluginLocation, "missing build plugin");
            assertEquals(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  7. cmd/metacache-entries.go

    	if len(dir) == 0 {
    		// Root
    		idx := strings.Index(e.name, separator)
    		return idx == -1 || idx == len(e.name)-len(separator)
    	}
    	ext := strings.TrimPrefix(e.name, dir)
    	if len(ext) != len(e.name) {
    		idx := strings.Index(ext, separator)
    		// If separator is not found or is last entry, ok.
    		return idx == -1 || idx == len(ext)-len(separator)
    	}
    	return false
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 04:34:26 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. cmd/xl-storage.go

    		}
    		return nil, err
    	}
    	volsInfo := make([]VolInfo, 0, len(entries))
    	for _, entry := range entries {
    		if !HasSuffix(entry, SlashSeparator) || !isValidVolname(pathutil.Clean(entry)) {
    			// Skip if entry is neither a directory not a valid volume name.
    			continue
    		}
    		volsInfo = append(volsInfo, VolInfo{
    			Name: pathutil.Clean(entry),
    		})
    	}
    	return volsInfo, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  9. src/os/exec.go

    	// Process API that is not thread-safe, but it can't be changed now.
    	//
    	// On Windows, Release does _not_ modify p.Pid.
    	//
    	// On Windows, Wait calls Release after successfully waiting to
    	// proactively clean up resources.
    	//
    	// On Unix and Plan 9, Wait also proactively cleans up resources, but
    	// can not call Release, as Wait does not set p.Pid = -1.
    	//
    	// On Unix and Plan 9, calling Release a second time has no effect.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

            return onlineRequired;
        }
    
        /**
         * @return <code>true</code> if the Mojo is online, <code>false</code> otherwise.
         */
        // more english-friendly method...keep the code clean! :)
        public boolean requiresOnline() {
            return onlineRequired;
        }
    
        /**
         * @return the bound phase name of the Mojo
         */
        public String getPhase() {
            return phase;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
Back to top