Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 4,637 for current$ (0.12 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/AbstractInstalledToolChainIntegrationSpec.groovy

        String withLinkLibrarySuffix(Object path) {
            return path + (toolChain.visualCpp ? OperatingSystem.current().linkLibrarySuffix : OperatingSystem.current().sharedLibrarySuffix)
        }
    
        String linkLibraryName(Object path) {
            return toolChain.visualCpp ? OperatingSystem.current().getLinkLibraryName(path.toString()) : OperatingSystem.current().getSharedLibraryName(path.toString())
        }
    
        String getLinkLibrarySuffix() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/scopes/KtScope.kt

         */
        public fun getAllSymbols(): Sequence<KaDeclarationSymbol> = withValidityAssertion {
            sequence {
                yieldAll(getCallableSymbols())
                yieldAll(getClassifierSymbols())
                yieldAll(getConstructors())
            }
        }
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/query_test.go

    	{path: queryRepo, query: "patch", current: "v0.1.0", vers: "v0.1.2"},
    	{path: queryRepo, query: "patch", current: "v1.9.0", vers: "v1.9.9"},
    	{path: queryRepo, query: "patch", current: "v1.9.10-pre1", vers: "v1.9.10-pre1"},
    	{path: queryRepo, query: "patch", current: "v1.9.10-pre2+metadata", vers: "v1.9.10-pre2.0.20190513201126-42abcb6df8ee"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 17:53:14 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/cfg/builder.go

    func (b *builder) add(n ast.Node) {
    	b.current.Nodes = append(b.current.Nodes, n)
    }
    
    // jump adds an edge from the current block to the target block,
    // and sets b.current to nil.
    func (b *builder) jump(target *Block) {
    	b.current.Succs = append(b.current.Succs, target)
    	b.current = nil
    }
    
    // ifelse emits edges from the current block to the t and f blocks,
    // and sets b.current to nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/attributes/DefaultImmutableAttributesFactory.java

                    current = doConcatIsolatable(current, attribute, ((DefaultImmutableAttributes) attributes1).getIsolatableAttribute(attribute));
                } else {
                    current = concat(current, Cast.uncheckedNonnullCast(attribute), attributes1.getAttribute(attribute));
                }
            }
            return current;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/code/DefaultUserCodeApplicationContext.java

                currentApplication.set(current);
            }
        }
    
        @Override
        public void gradleRuntime(Runnable runnable) {
            CurrentApplication current = currentApplication.get();
            //noinspection ThreadLocalSetWithNull
            currentApplication.set(null);
            try {
                runnable.run();
            } finally {
                currentApplication.set(current);
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/DefaultWorkInProgressFormatter.java

            StringBuilder builder = new StringBuilder();
            ProgressOperation current = op;
            while (current != null && !"org.gradle.internal.progress.BuildProgressLogger".equals(current.getCategory())) {
                String message = current.getMessage();
                current = current.getParent();
    
                if (message == null) {
                    continue;
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/MessageBuilder.java

         * @param message the message to append
         * @return the current builder
         */
        @Nonnull
        default MessageBuilder trace(Object message) {
            return style(".trace:-bold,f:magenta", message);
        }
    
        /**
         * Append message content in debug style.
         * By default, bold cyan
         *
         * @param message the message to append
         * @return the current builder
         */
        @Nonnull
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 08 10:37:09 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/FailureUtils.kt

            }
        }
    
        fun collectFrom(current: LanguageTreeElement) {
            when (current) {
                is ErroneousStatement -> addExpanded(current.failingResult)
                is Block -> current.content.forEach(::collectFrom)
                is Assignment -> {
                    collectFrom(current.lhs)
                    collectFrom(current.rhs)
                }
    
                is FunctionCall -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 12:28:39 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/AbstractProjectAccessorsSourceGenerator.java

            writeLn();
        }
    
        protected static String rootProjectName(ProjectDescriptor descriptor) {
            ProjectDescriptor current = descriptor;
            while (current.getParent() != null) {
                current = current.getParent();
            }
            return current.getName();
        }
    
        protected void writeProjectAccessor(String name, ProjectDescriptor descriptor) throws IOException {
            writeLn("    /**");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top