Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,852 for based (0.05 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/Methods.java

     */
    
    package org.gradle.internal.reflect;
    
    import com.google.common.base.Equivalence;
    import org.apache.commons.lang.builder.HashCodeBuilder;
    
    import java.lang.reflect.Method;
    import java.util.Arrays;
    
    @SuppressWarnings("NullableProblems")
    public class Methods {
        /**
         * Equivalence of methods based on method name, and the number, type and order of parameters. Return types must be compatible.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r112/PublicationsCrossVersionSpec.groovy

            }
    
            then:
            publications.publications.empty
        }
    
        @TargetGradleVersion(">=3.0 <7.0")
        def "Ivy repository based publication"() {
            settingsFile << "rootProject.name = 'test.project'"
            buildFile <<
    """
    apply plugin: "base"
    
    version = 1.0
    group = "test.group"
    
    uploadArchives {
        repositories {
            ivy { url uri("ivy-repo") }
        }
    }
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/queuesort/priority_sort.go

    // PrioritySort is a plugin that implements Priority based sorting.
    type PrioritySort struct{}
    
    var _ framework.QueueSortPlugin = &PrioritySort{}
    
    // Name returns name of the plugin.
    func (pl *PrioritySort) Name() string {
    	return Name
    }
    
    // Less is the function used by the activeQ heap algorithm to sort pods.
    // It sorts pods based on their priority. When priorities are equal, it uses
    // PodQueueInfo.timestamp.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 20 09:49:54 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/exec/BuildCompletionNotifyingBuildActionRunner.java

            } catch (Throwable t) {
                // Note: throw the failure rather than returning a result object containing the failure, as console failure logging based on the _result_ happens down in the root build scope
                // whereas console failure logging based on the _thrown exception_ happens up outside session scope. It would be better to refactor so that a result can be returned from here
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/options/constant.go

    	TokenDiscovery = "discovery-token"
    
    	// TokenDiscoveryCAHash flag instructs kubeadm to validate that the root CA public key matches this hash (for token-based discovery)
    	TokenDiscoveryCAHash = "discovery-token-ca-cert-hash"
    
    	// TokenDiscoverySkipCAHash flag instructs kubeadm to skip CA hash verification (for token-based discovery)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoReportAggregationPlugin.java

            codeCoverageResultsConf.setVisible(false);
    
            project.getPlugins().withType(JavaBasePlugin.class, plugin -> {
                // If the current project is jvm-based, aggregate dependent projects as jvm-based as well.
                getEcosystemUtilities().configureAsRuntimeClasspath(codeCoverageResultsConf);
            });
    
            ObjectFactory objects = project.getObjects();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 16:25:42 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/developingPlugins/defaultDependency/tests/defaultDependency.out

    Root project 'default-dependency'
    ------------------------------------------------------------
    
    dataFiles - The data artifacts to be processed for this plugin.
    \--- org.myorg:more-data:2.6 FAILED
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 343 bytes
    - Viewed (0)
  8. pilot/pkg/networking/telemetry/telemetry.go

    	serviceTargetPortStatPattern = "%TARGET_PORT%"
    	servicePortNameStatPattern   = "%SERVICE_PORT_NAME%"
    	subsetNameStatPattern        = "%SUBSET_NAME%"
    )
    
    // BuildStatPrefix builds a stat prefix based on the stat pattern.
    func BuildStatPrefix(statPattern string, host string, subset string, port *model.Port, targetPort int, attributes *model.ServiceAttributes) string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 02:38:43 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-test-report-aggregation/src/main/java/org/gradle/api/plugins/TestReportAggregationPlugin.java

            project.getPlugins().withType(JavaBasePlugin.class, plugin -> {
                // If the current project is jvm-based, aggregate dependent projects as jvm-based as well.
                getJvmPluginServices().configureAsRuntimeClasspath(testAggregation);
            });
    
            // convention for synthesizing reports based on existing test suites in "this" project
            project.getPlugins().withId("jvm-test-suite", plugin -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 20:53:52 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  10. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JavaLanguageVersion.java

         *
         * @since 6.8
         * @return the version number
         */
        @Override
        String toString();
    
        /**
         * Indicates if this version can compile or run code based on the passed in language version.
         * <p>
         * For example, Java 14 can compile or run code from Java 11, but not the opposite.
         *
         * @param other the language version to check
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top