Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.plugins.ide.idea.GenerateIdeaProject.create()> has arguments/return type org.gradle.plugins.ide.internal.generator.generator.PersistableConfigurationObject that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (GenerateIdeaProject.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  2. build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts

                        add("${it.group}:cglib:3.2.7")
                    }
                    removeAll { it.name == "cglib-nodep" }
                }
            }
        }
    }
    
    // https://youtrack.jetbrains.com/issue/IDEA-261387
    abstract class UnifyTrove4jVersionRule : ComponentMetadataRule {
        override fun execute(context: ComponentMetadataContext) {
            context.details.allVariants {
                withDependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 20:15:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. pkg/ctrlz/ctrlz.go

    // logging scopes, viewing command-line options, memory use, etc. Additionally,
    // the port implements a REST API allowing access and control over the same state.
    //
    // ControlZ is designed around the idea of "topics". A topic corresponds to the different
    // parts of the UI. There are a set of built-in topics representing the core introspection
    // functionality, and each component that uses ControlZ can add new topics specialized
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 21:22:53 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  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. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

    import org.jetbrains.kotlin.fir.utils.exceptions.withFirEntry
    import org.jetbrains.kotlin.fir.utils.exceptions.withFirSymbolEntry
    import org.jetbrains.kotlin.idea.references.KtDefaultAnnotationArgumentReference
    import org.jetbrains.kotlin.idea.references.KtReference
    import org.jetbrains.kotlin.lexer.KtTokens
    import org.jetbrains.kotlin.name.Name
    import org.jetbrains.kotlin.psi.*
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
Back to top