Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 329 for idea (0.05 sec)

  1. pkg/config/mesh/mesh.go

    	// decent customization while also not requiring users to redefine the entire proxy config if they want to override
    	// Note: if we want to add more structure in the future, we will likely need to revisit this idea.
    
    	// Store the current set proxy config so we don't wipe it out, we will configure this later
    	prevProxyConfig := defaultConfig.DefaultConfig
    	prevDefaultProvider := defaultConfig.DefaultProviders
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultInheritanceAssembler.java

            return merger.merge(child, parent, false, hints);
        }
    
        /**
         * Calculates the relative path from the base directory of the parent to the parent directory of the base directory
         * of the child. The general idea is to adjust inherited URLs to match the project layout (in SCM).
         *
         * <p>This calculation is only a heuristic based on our conventions.
         * In detail, the algo relies on the following assumptions: <ul>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. pom.xml

    			<version>${tomcat.version}</version>
    			<!-- Disable scope at development on IDEA -->
    			<scope>provided</scope>
    		</dependency>
    		<dependency><!-- for jsp -->
    			<groupId>org.apache.tomcat.embed</groupId>
    			<artifactId>tomcat-embed-jasper</artifactId>
    			<version>${tomcat.version}</version>
    			<!-- Disable scope at development on IDEA -->
    			<scope>provided</scope>
    		</dependency>
    
    		<!-- test -->
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Interpreter.kt

    import org.gradle.plugin.management.internal.PluginRequests
    import java.io.File
    import java.lang.reflect.InvocationTargetException
    
    
    /**
     * An optimised interpreter for the Kotlin DSL based on the idea of
     * [partial evaluation](https://en.wikipedia.org/wiki/Partial_evaluation).
     *
     * Instead of interpreting a given Kotlin DSL script directly, the interpreter emits a
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  5. src/iter/pull_test.go

    			wantNG(0)
    		})
    	}
    }
    
    // stableNumGoroutine is like NumGoroutine but tries to ensure stability of
    // the value by letting any exiting goroutines finish exiting.
    func stableNumGoroutine() int {
    	// The idea behind stablizing the value of NumGoroutine is to
    	// see the same value enough times in a row in between calls to
    	// runtime.Gosched. With GOMAXPROCS=1, we're trying to make sure
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:28 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. docs/en/docs/deployment/https.md

    The idea is to automate the acquisition and renewal of these certificates so that you can have **secure HTTPS, for free, forever**.
    
    ## HTTPS for Developers
    
    Here's an example of how an HTTPS API could look like, step by step, paying attention mainly to the ideas important for developers.
    
    ### Domain Name
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ResolveState.java

            @Override
            public int hashCode() {
                return Objects.hash(componentSelector, ignoreVersion, virtualPlatformEdge);
            }
        }
    
        /**
         * This method is a heuristic that gives an idea of the "size" of the graph. The larger
         * the graph is, the higher the risk of internal resizes exists, so we try to estimate
         * the size of the graph to avoid maps resizing.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/installation.adoc

    Instead of adding a specific version of Gradle to your `PATH`, you can add `$GRADLE_HOME/bin` to your `PATH`.
    When upgrading to a different version of Gradle, simply change the `GRADLE_HOME` environment variable.
    
    It's a good idea to edit `.bash_profile` in your home directory to add `GRADLE_HOME` variable:
    
    [subs="attributes"]
    ----
    export GRADLE_HOME=/usr/local/gradle/gradle-{gradleVersion}
    export PATH=$GRADLE_HOME/bin:$PATH
    ----
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. src/runtime/debug/garbage.go

    // or are locked to other goroutines due to use of runtime.LockOSThread.
    //
    // SetMaxThreads is useful mainly for limiting the damage done by
    // programs that create an unbounded number of threads. The idea is
    // to take down the program before it takes down the operating system.
    func SetMaxThreads(threads int) int {
    	return setMaxThreads(threads)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. pkg/controlplane/apiserver/options/options.go

    	// Use (ServiceAccountSigningKeyFile != "") as a proxy to the user enabling
    	// TokenRequest functionality. This defaulting was convenient, but messed up
    	// a lot of people when they rotated their serving cert with no idea it was
    	// connected to their service account keys. We are taking this opportunity to
    	// remove this problematic defaulting.
    	if completed.ServiceAccountSigningKeyFile == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top