Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,371 for better (0.16 sec)

  1. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/internal/IdeaDependenciesProvider.java

             *
             * Instead, when generating files on the command line, the logged warning is enough.
             * When using the Tooling API, a dedicated "unresolved dependency" object would be better
             * and could be shown in a notification. The command line warning should probably be omitted in that case.
             */
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/AbstractCompiler.java

                    buildOperationExecutor.runAll(commandLineToolInvocationWorker, invocationAction);
                }
            });
    
            return WorkResults.didWork(true);
        }
    
        // TODO(daniel): Should support in a better way multi file invocation.
        // Override this method to have multi file invocation
        protected abstract Action<BuildOperationQueue<CommandLineToolInvocation>> newInvocationAction(T spec, List<String> commonArguments);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/inception/BuildSrcApiChangePerformanceTest.groovy

                    parentFile.mkdirs()
                    // We need to create the file in the constructor, since the file change mutators read the text of the file in the constructor as well.
                    // It would be better if the file change mutators would read the original test in `beforeScenario`, so we could create the file here
                    // as well in beforeScenario.
                    text = """
                        class ChangingClass {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/contracts/descriptorContractUtils.kt

        ): T = constructor(variableReference.descriptor.toKtSymbol(analysisContext) as KaParameterSymbol)
    
        // Util function to avoid hard coding names of the classes. Type inference will do a better job figuring out the best type to cast to.
        // This visitor isn't type-safe anyway
        private inline fun <reified T> ContractDescriptionElement.accept() = accept(this@ContractDescriptionElementToAnalysisApi, Unit) as T
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenLatestResolveIntegrationTest.groovy

            mavenRepo().module('group', 'projectA', '1.0').publish()
    
            buildFile << "dependencies { compile 'group:projectA:latest.foo' }"
    
            expect:
            fails 'retrieve'
            // would be better if metadata validation failed (status not contained in status scheme)
            failure.assertHasCause("Could not find any version that matches group:projectA:latest.foo.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. src/hash/crc32/crc32.go

    	// Used by ethernet (IEEE 802.3), v.42, fddi, gzip, zip, png, ...
    	IEEE = 0xedb88320
    
    	// Castagnoli's polynomial, used in iSCSI.
    	// Has better error detection characteristics than IEEE.
    	// https://dx.doi.org/10.1109/26.231911
    	Castagnoli = 0x82f63b78
    
    	// Koopman's polynomial.
    	// Also has better error detection characteristics than IEEE.
    	// https://dx.doi.org/10.1109/DSN.2002.1028931
    	Koopman = 0xeb31d82e
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 12 05:36:29 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/AbstractSortedMultiset.java

     *
     * <p>The {@link #count} and {@link #size} implementations all iterate across the set returned by
     * {@link Multiset#entrySet()}, as do many methods acting on the set returned by {@link
     * #elementSet()}. Override those methods for better performance.
     *
     * @author Louis Wasserman
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    abstract class AbstractSortedMultiset<E extends @Nullable Object> extends AbstractMultiset<E>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 23 18:43:40 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheClassLoaderScopeRegistryListener.kt

                require(spec != null)
                // TODO - a scope can currently potentially have multiple export and local ClassLoaders but we're assuming one here
                //  Rather than fix the assumption here, it would be better to rework the scope implementation so that it produces no more than one export and one local ClassLoader
                val local = scopeId is ClassLoaderScopeIdentifier && scopeId.localId() == classLoaderId
                if (local) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. pkg/util/sets/set.go

    	result := New[T]()
    	for key := range s {
    		if !s2.Contains(key) {
    			result.Insert(key)
    		}
    	}
    	return result
    }
    
    // DifferenceInPlace similar to Difference, but has better performance.
    // Note: This function modifies s in place.
    func (s Set[T]) DifferenceInPlace(s2 Set[T]) Set[T] {
    	for key := range s {
    		if s2.Contains(key) {
    			delete(s, key)
    		}
    	}
    	return s
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/AbstractUserInputRenderer.java

            // This does leave a small window where some text may be captured prior to the prompt being fully displayed, however this is
            // better than doing things in the other order, where there will be a small window where text may not be captured after prompt is fully displayed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 05:02:18 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top