Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 173 for idea (0.04 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/inheritance/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: Wed Feb 28 07:40:37 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/BuildActionsFactory.java

            //this way we avoid potential runaway daemons that steal resources on linux and break builds on windows.
            //We might leave that in if we decide it's a good idea for an extra safety net.
            int maxTimeout = 2 * 60 * 1000;
            if (daemonParameters.getIdleTimeout() > maxTimeout) {
                daemonParameters.setIdleTimeout(maxTimeout);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. analysis/analysis-api-standalone/tests/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/session/builder/StandaloneSessionBuilderTest.kt

    import org.jetbrains.kotlin.analysis.test.framework.TestWithDisposable
    import org.jetbrains.kotlin.analysis.utils.errors.requireIsInstance
    import org.jetbrains.kotlin.idea.references.mainReference
    import org.jetbrains.kotlin.name.CallableId
    import org.jetbrains.kotlin.name.ClassId
    import org.jetbrains.kotlin.name.FqName
    import org.jetbrains.kotlin.name.Name
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/runtime_passes.td

        to reformat the variables, but only inserts general TPUReshardVariablesOps in
        proper places, and TPUReshardVariablesOps interpret the compilation.
    
        The core idea of this optimization is to keep track of the formatting state
        of variables, and when the next desired state does not change, it can avoid
        reformatting. We associate a set of variables on a device with a formatting
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 18:58:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KaFe10Resolver.kt

    import org.jetbrains.kotlin.analysis.utils.printer.parentOfType
    import org.jetbrains.kotlin.descriptors.*
    import org.jetbrains.kotlin.diagnostics.*
    import org.jetbrains.kotlin.idea.references.KtDefaultAnnotationArgumentReference
    import org.jetbrains.kotlin.idea.references.KtReference
    import org.jetbrains.kotlin.lexer.KtTokens
    import org.jetbrains.kotlin.psi.*
    import org.jetbrains.kotlin.psi.psiUtil.parentsWithSelf
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part3_gradle_dep_man.adoc

    junit-jupiter = { module = "org.junit.jupiter:junit-jupiter", version.ref = "junit-jupiter" }
    ----
    
    If you change the file using IntelliJ, don't forget to click the `sync` Gradle button:
    
    image::tutorial/intellij-idea-dep-man.png[]
    
    Run `./gradlew build --scan` and view the Build Scan results:
    
    image::tutorial/build-scan-change.png[]
    
    Run `./gradlew :app:dependencies` in the terminal to check the changes in the dependency tree:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 22:40:17 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top