Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 255 for idea (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/proxy/apis/config/types.go

    	// kube-proxy is running on. If unset, the node name is assumed to be the same as
    	// the node's hostname.
    	HostnameOverride string
    	// bindAddress can be used to override kube-proxy's idea of what its node's
    	// primary IP is. Note that the name is a historical artifact, and kube-proxy does
    	// not actually bind any sockets to this IP.
    	BindAddress string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/files/SamplesCopyIntegrationTest.groovy

            where:
            dsl << ['groovy', 'kotlin']
        }
    
        /* THIS TEST DOES NOT WORK
         *
         * The corresponding sample project works fine, it's just the test
         * that fails, both in IDEA and from the command line build. I suspect
         * the way the tests are run doesn't interact with ant.defaultexcludes()
         * well.
         *
        @UsesSample("files/copy")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  9. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneDeclarationProvider.kt

                    .add(typeAlias)
            }
        }
    
        /**
         * This is a simplified version of `KtTypeElement.index()` from the IDE. If we need to move more indexing code to Standalone, we should
         * consider moving more code from the IDE to the Analysis API.
         *
         * @see KotlinStandaloneDeclarationIndex.inheritableTypeAliasesByAliasedName
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. docs/en/docs/advanced/behind-a-proxy.md

    ```JSON
    {
        "message": "Hello World",
        "root_path": "/api/v1"
    }
    ```
    
    but this time at the URL with the prefix path provided by the proxy: `/api/v1`.
    
    Of course, the idea here is that everyone would access the app through the proxy, so the version with the path prefix `/api/v1` is the "correct" one.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top