Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,255 for yearly (0.14 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/BuildScriptChangesContinuousBuildIntegrationTest.groovy

            executedAndNotSkipped(":myTask")
    
            when:
            file(buildFileName) << """
                println("Hello from Build Script")
            """
            then:
            // TODO: Script compilation happens to early to be detected as an input.
            //   That is why the change is not yet picked up.
            noBuildTriggered()
    
            where:
            buildFileName      | readTextMethod             | variableDefinition
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/backingFieldInitializer.kt

    class C {
        val names: List<String>                            // clearly tells the type of the property upfront
        field: MutableList<String> = <expr>mutableListOf()</expr>
    }
    
    // IGNORE_FE10
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 242 bytes
    - Viewed (0)
  3. src/index/suffixarray/sais2.go

    	// We must pass sais_64 a tmp buffer with at least maxID entries.
    	//
    	// The subproblem is guaranteed to have length at most len(sa)/2,
    	// so that sa can hold both the subproblem and its suffix array.
    	// Nearly all the time, however, the subproblem has length < len(sa)/3,
    	// in which case there is a subproblem-sized middle of sa that
    	// we can reuse for temporary space (saTmp).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/AbstractConfigurationMetadata.java

                this.configDependencies = ImmutableList.copyOf(dependencies);
            }
        }
    
        public void setConfigDependenciesFactory(Factory<List<ModuleDependencyMetadata>> dependenciesFactory) {
            synchronized (lock) {
                assert this.configDependencies == null; // Can only set once: should really be part of the constructor
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 7K bytes
    - Viewed (0)
  5. guava-gwt/src/com/google/common/net/Net.gwt.xml

        The problem is that GWT responds poorly to two .gwt.xml files in the same
        Java package; see https://goo.gl/pRV3Yn for details.
    
        The summary is that it ignores one file in favor of the other.
        util.concurrent, like nearly all our packages, has two .gwt.xml files: one
        for prod and one for tests. However, unlike our other packages, as of this
        writing it has test supersource but no prod supersource.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  6. guava-gwt/test/com/google/common/collect/testing/Testing.gwt.xml

        The problem is that GWT responds poorly to two .gwt.xml files in the same
        Java package; see https://goo.gl/pRV3Yn for details.
    
        The summary is that it ignores one file in favor of the other.
        util.concurrent, like nearly all our packages, has two .gwt.xml files: one
        for prod and one for tests. However, unlike our other packages, as of this
        writing it has test supersource but no prod supersource.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  7. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/backingField.txt

    expression: PROPERTY
    text: val names: List<String>                            // clearly tells the type of the property upfront
            field: MutableList<String> = mutableListOf()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 207 bytes
    - Viewed (0)
  8. testing/internal-testing/src/main/groovy/org/gradle/testfixtures/internal/NativeServicesTestFixture.java

    import org.gradle.internal.nativeintegration.services.NativeServices.NativeServicesMode;
    import org.gradle.test.fixtures.file.TestFile;
    
    import java.io.File;
    
    public class NativeServicesTestFixture {
        // Collect this early, as the process' current directory can change during embedded test execution
        private static final TestFile TEST_DIR = new TestFile(new File(".").toURI());
        static NativeServices nativeServices;
        static boolean initialized;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/api/apitesting/fuzzer/fuzzer.go

    	f := fuzz.New().NilChance(.5).NumElements(0, 1)
    	if src != nil {
    		f.RandSource(src)
    	}
    	f.Funcs(funcs(codecs)...)
    	return f
    }
    
    // MergeFuzzerFuncs will merge the given funcLists, overriding early funcs with later ones if there first
    // argument has the same type.
    func MergeFuzzerFuncs(funcs ...FuzzerFuncs) FuzzerFuncs {
    	return FuzzerFuncs(func(codecs runtimeserializer.CodecFactory) []interface{} {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 01 19:31:12 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  10. pkg/kube/krt/filter.go

    	// Check each of our defined filters to see if the object matches
    	// This function is called very often and is important to keep fast
    	// Cheaper checks should come earlier to avoid additional work and short circuit early
    
    	// If we are listing, we already did this. Do not redundantly check.
    	if !forList {
    		// First, lookup directly by key. This is cheap
    		// an empty set will match none
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top