Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 4,880 for current$ (0.31 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/AbstractFingerprintChanges.java

        protected final SortedMap<String, CurrentFileCollectionFingerprint> current;
        private final String title;
    
        protected AbstractFingerprintChanges(SortedMap<String, FileCollectionFingerprint> previous, SortedMap<String, CurrentFileCollectionFingerprint> current, String title) {
            this.previous = previous;
            this.current = current;
            this.title = title;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/bean-serialization-services/src/main/kotlin/org/gradle/internal/serialize/beans/services/BeanSchema.kt

    
    private
    fun relevantTypeHierarchyOf(beanType: Class<*>) = sequence<Class<*>> {
        var current: Class<*>? = beanType
        while (current != null) {
            if (isRelevantDeclaringClass(current)) {
                yield(current)
            }
            current = current.superclass
        }
    }
    
    
    private
    fun isRelevantDeclaringClass(declaringClass: Class<*>): Boolean =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/GroovyLibraryInitIntegrationTest.groovy

        def "creates sample source if no source present with #scriptDsl build scripts"() {
            when:
            run('init', '--type', 'groovy-library', '--dsl', scriptDsl.id, '--java-version', JavaVersion.current().majorVersion)
    
            then:
            subprojectDir.file("src/main/groovy").assertHasDescendants(SAMPLE_LIBRARY_CLASS)
            subprojectDir.file("src/test/groovy").assertHasDescendants(SAMPLE_LIBRARY_TEST_CLASS)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaselineVersion.groovy

        }
    
        String getSpeedStatsAgainst(String displayName, MeasuredOperationList current) {
            def sb = new StringBuilder()
            def thisVersionMean = results.totalTime.median
            def currentVersionMean = current.totalTime.median
            if (currentVersionMean && thisVersionMean) {
                if (significantlyFasterThan(current)) {
                    sb.append "Speed $displayName: we're slower than $version"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-jvm-test-suite/src/integTest/groovy/org/gradle/testing/testsuites/TestSuitesMultiTargetIntegrationTest.groovy

                    }
                    testResultsElementsForTestOtherJdk.attributes {
                        attribute(TargetJvmVersion.TARGET_JVM_VERSION_ATTRIBUTE, ${otherJvm.javaVersion.majorVersion})
                    }
                }
            """
    
            when:
            withInstallations(Jvm.current(), otherJvm).succeeds("testAggregateTestReport")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/util/GradleVersion.java

         */
        @Deprecated
        public static final String VERSION_NUMBER_PROPERTY = "versionNumber";
    
        /**
         * Returns the current Gradle version.
         *
         * @return The current Gradle version.
         */
        public static GradleVersion current() {
            return DefaultGradleVersion.current();
        }
    
        /**
         * Parses the given string into a GradleVersion.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. pkg/registry/flowcontrol/ensurer/strategy.go

    	var zero ObjectType
    	if current == zero {
    		return zero, false, nil
    	}
    
    	autoUpdateSpec := s.alwaysAutoUpdateSpec
    	if !autoUpdateSpec {
    		autoUpdateSpec = shouldUpdateSpec(current)
    	}
    	updateAnnotation := shouldUpdateAnnotation(current, autoUpdateSpec)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 14K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/GradleVsMavenPerformanceTestRunner.groovy

                testGroup: testGroup,
                jvm: Jvm.current().toString(),
                host: InetAddress.getLocalHost().getHostName(),
                operatingSystem: OperatingSystem.current().toString(),
                versionUnderTest: GradleVersion.current().getVersion(),
                vcsBranch: Git.current().branchName,
                vcsCommits: [Git.current().commitId],
                startTime: clock.getCurrentTime(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/execution/ExecutionEvent.java

         *
         * @return The current session, never {@code null}.
         */
        MavenSession getSession();
    
        /**
         * Gets the current project (if any).
         *
         * @return The current project or {@code null} if not applicable.
         */
        MavenProject getProject();
    
        /**
         * Gets the current mojo execution (if any).
         *
         * @return The current mojo execution or {@code null} if not applicable.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/autoscaling/v1/generated.proto

    }
    
    // PodsMetricStatus indicates the current value of a metric describing each pod in
    // the current scale target (for example, transactions-processed-per-second).
    message PodsMetricStatus {
      // metricName is the name of the metric in question
      optional string metricName = 1;
    
      // currentAverageValue is the current value of the average of the
      // metric across all relevant pods (as a quantity)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 22K bytes
    - Viewed (0)
Back to top