Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 277 for main_main (0.14 sec)

  1. staging/src/k8s.io/cli-runtime/README.md

    # cli-runtime
    
    Set of helpers for creating kubectl commands, as well as kubectl plugins.
    
    
    ## Purpose
    
    This library is a shared dependency for clients to work with Kubernetes API infrastructure which allows
    to maintain kubectl compatible behavior.  Its first consumer is `k8s.io/kubectl`.
    
    
    ## Compatibility
    
    There are *NO compatibility guarantees* for this repository.  It is in direct support of Kubernetes, so branches
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 03 01:38:34 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  2. cmd/kubelet/app/options/osflags_windows.go

    	// The default priority class associated with any process in Windows is NORMAL_PRIORITY_CLASS. Keeping it as is
    	// to maintain backwards compatibility.
    	// Source: https://docs.microsoft.com/en-us/windows/win32/procthread/scheduling-priorities
    	fs.StringVar(&f.WindowsPriorityClass, "windows-priorityclass", "NORMAL_PRIORITY_CLASS",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/filters/hsts.go

    	if len(hstsDirectives) == 0 {
    		return handler
    	}
    	allDirectives := strings.Join(hstsDirectives, "; ")
    	return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    		// Chrome and Mozilla Firefox maintain an HSTS preload list
    		// issue : golang.org/issue/26162
    		// Set the Strict-Transport-Security header if it is not already set
    		if _, ok := w.Header()["Strict-Transport-Security"]; !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 12 08:42:53 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/DefaultArtifactHandler.java

        private void warnIfConfigurationIsDeprecated(DeprecatableConfiguration configuration) {
            // To avoid potentially adding new deprecation warnings in Gradle 8.0, we will maintain
            // the existing fully deprecated logic here (migrating the method out of DefaultConfiguration
            // so it isn't mistakenly used elsewhere)
            if (isFullyDeprecated(configuration)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/util/RelativePathUtil.java

    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.deprecation.DeprecationLogger;
    import org.gradle.util.internal.TextUtil;
    
    import java.io.File;
    
    /**
     * This class is only here to maintain binary compatibility with existing plugins.
     *
     * @deprecated Will be removed in Gradle 9.0.
     */
    @Deprecated
    public class RelativePathUtil {
    
        private static void logDeprecation() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 07 08:48:40 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  6. src/runtime/mgclimit_test.go

    		l.AddAssistTime(assistTime(1*time.Millisecond, 1.0-GCBackgroundUtilization))
    		l.StartGCTransition(false, advance(1*time.Millisecond))
    		if l.Fill() != l.Capacity() {
    			t.Errorf("failed to maintain fill to capacity %d, got fill %d", l.Capacity(), l.Fill())
    		}
    		if !l.Limiting() {
    			t.Errorf("limiter is not enabled after overfill but should be")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 13 16:02:20 UTC 2022
    - 9K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/util/DistributionLocator.java

    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.deprecation.DeprecationLogger;
    
    import java.net.URI;
    import java.net.URISyntaxException;
    
    /**
     * This class is only here to maintain binary compatibility with existing plugins.
     *
     * @deprecated Will be removed in Gradle 9.0.
     */
    @Deprecated
    public class DistributionLocator {
    
        private static void logDeprecation() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 07 08:48:39 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  8. architecture/standards/0002-avoid-using-java-serialization.md

    - **Performance:**
    Java's built-in serialization mechanism is often slower compared to other serialization solutions.
    This is due to Java's use of reflection and the need to maintain a lot of metadata.
    
    - **Size of Serialized Data:**
    Java serialization tends to produce larger serialized objects because it includes class metadata and other overhead.
    
    - **Flexibility and Control:**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 22:32:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. src/sync/atomic/example_test.go

    		go func() {
    			for r := range requests() {
    				c := config.Load()
    				// Handle request r using config c.
    				_, _ = r, c
    			}
    		}()
    	}
    }
    
    // The following example shows how to maintain a scalable frequently read,
    // but infrequently updated data structure using copy-on-write idiom.
    func ExampleValue_readMostly() {
    	type Map map[string]string
    	var m atomic.Value
    	m.Store(make(Map))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 18 23:58:54 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  10. guava/src/com/google/common/hash/Funnel.java

     *
     * <p>Note that serialization of {@linkplain BloomFilter bloom filters} requires the proper
     * serialization of funnels. When possible, it is recommended that funnels be implemented as a
     * single-element enum to maintain serialization guarantees. See Effective Java (2nd Edition), Item
     * 3: "Enforce the singleton property with a private constructor or an enum type". For example:
     *
     * <pre>{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 2.2K bytes
    - Viewed (0)
Back to top