Search Options

Results per page
Sort
Preferred Languages
Advance

Results 371 - 380 of 2,326 for light (0.12 sec)

  1. CONTRIBUTING.md

    - In the "Open Project" dialogue, choose "Delete Existing Project and Import"
    - Revert the Git changes to files in the `.idea` folder
    
    NOTE: Due to the project size, the very first import can take a while and IntelliJ might become unresponsive for several seconds during this period.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_build_scripts.adoc

    A project typically corresponds to a software component that needs to be built, like a library or an application.
    It might represent a library JAR, a web application, or a distribution ZIP assembled from the JARs produced by other projects.
    
    On the other hand, it might represent a thing to be done, such as deploying your application to staging or production environments.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:22:43 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  3. fastapi/dependencies/utils.py

        elif field_info is None and depends is None:
            default_value = value if value is not inspect.Signature.empty else Required
            if is_path_param:
                # We might check here that `default_value is Required`, but the fact is that the same
                # parameter might sometimes be a path parameter and sometimes not. See
                # `tests/test_infer_param_optionality.py` for an example.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:52:56 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  4. docs/en/docs/deployment/docker.md

    ### Single Container
    
    If you have a simple setup, with a **single container** that then starts multiple **worker processes** (or also just one process), then you could run those previous steps in the same container, right before starting the process with the app. The official Docker image supports this internally.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/caching/internal/operations/BuildCacheRemoteStoreBuildOperationType.java

             */
            long getArchiveSize();
    
        }
    
        public interface Result {
    
            /**
             * Whether the entry has actually been stored.
             * <p>
             * The cache might not store some entries, e.g. when they are too large.
             */
            boolean isStored();
    
        }
    
        private BuildCacheRemoteStoreBuildOperationType() {
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 09:42:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. subprojects/core/src/testFixtures/groovy/org/gradle/internal/classpath/intercept/ThreadLocalInterceptorSet.groovy

        }
    
        void substituteForCurrentThread(T substitution) {
            if (threadLocalDecorators.get() != original) {
                throw new IllegalStateException("already substituted for the current thread; proper cleanup might have been missed")
            }
            substitutions.incrementAndGet()
            threadLocalDecorators.set(substitution)
        }
    
        void cancelSubstitutionForCurrentThread() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 16:29:37 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/InstrumentedMetaClass.java

     * limitations under the License.
     */
    
    package org.gradle.internal.metaobject;
    
    /**
     * An implementation of a Groovy MetaClass that is instrumented and might need to cancel some optimizations
     * in order to get the instrumentation to work properly.
     */
    public interface InstrumentedMetaClass {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 10:01:06 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. src/cmd/internal/src/pos.go

    // lico
    
    // A lico is a compact encoding of a LIne and COlumn number.
    type lico uint32
    
    // Layout constants: 20 bits for line, 8 bits for column, 2 for isStmt, 2 for pro/epilogue
    // (If this is too tight, we can either make lico 64b wide,
    // or we can introduce a tiered encoding where we remove column
    // information as line numbers grow bigger; similar to what gcc
    // does.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  9. docs/en/docs/advanced/settings.md

    You can also create an environment variable only for a specific program invocation, that is only available to that program, and only for its duration.
    
    To do that, create it right before the program itself, on the same line:
    
    <div class="termy">
    
    ```console
    // Create an env var MY_NAME in line for this program call
    $ MY_NAME="Wade Wilson" python main.py
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. hack/conformance/check_conformance_test_requirements.go

    	for scanner.Scan() {
    		line := scanner.Text()
    		if regStartConformance.MatchString(line) {
    			if inConformanceCode {
    				return errors.New("Missed the end of previous conformance test. There might be a bug in this script.")
    			}
    			inConformanceCode = true
    		}
    		if inConformanceCode {
    			if regSkip.MatchString(line) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 29 06:30:57 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top