Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 340 for subTable (0.14 sec)

  1. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/SimplifiedKotlinScriptEvaluator.kt

            baseTempDir,
            scriptCompilationClassPath,
            scriptRuntimeClassPath = scriptRuntimeClassPath
        ).use {
            it.eval(script, target)
        }
    }
    
    
    /**
     * A simplified Service Registry, suitable for cheaper testing of the DSL outside of Gradle.
     */
    private
    class SimplifiedKotlinDefaultServiceRegistry(
        private val baseTempDir: File,
    ) : DefaultServiceRegistry() {
        init {
            register {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. pkg/apis/policy/v1beta1/doc.go

    // +k8s:conversion-gen-external-types=k8s.io/api/policy/v1beta1
    // +k8s:defaulter-gen=TypeMeta
    // +k8s:defaulter-gen-input=k8s.io/api/policy/v1beta1
    
    // Package policy is for any kind of policy object.  Suitable examples, even if
    // they aren't all here, are policyv1beta1.PodDisruptionBudget,
    // NetworkPolicy, etc.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 1015 bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/ConfigurationMetadataFactory.java

         *
         * <p>This includes all consumable configurations with and without attributes. Configurations visited
         * by this method may not be suitable for selection via attribute matching.</p>
         */
        void visitConsumableConfigurations(Consumer<LocalConfigurationGraphResolveMetadata> visitor);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. testing/soak/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSoakTest.groovy

            result = executer
                    .withTasks("compileJava", "-Porg.gradle.java.installations.auto-detect=false")
                    .run()
    
            then: "suitable JDK gets auto-provisioned"
            javaClassFile("Foo.class").assertExists()
            assertJdkWasDownloaded()
    
            when: "the marker file of the auto-provisioned JDK is deleted, making the JDK not detectable"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 16:13:09 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. platforms/software/resources/src/main/java/org/gradle/internal/resource/metadata/ExternalResourceMetaData.java

         *
         * For HTTP this is likely the value of the ETag header but it may be any kind of opaque checksum.
         *
         * @return The entity tag, or null if there was no advertised or suitable etag.
         */
        @Nullable
        String getEtag();
    
        /**
         * The advertised sha-1 of the external resource.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/ConsoleRenderer.java

    package org.gradle.internal.logging;
    
    import org.gradle.internal.UncheckedException;
    
    import java.io.File;
    import java.net.URI;
    import java.net.URISyntaxException;
    
    /**
     * Renders information in a format suitable for logging to the console.
     */
    public class ConsoleRenderer {
        /**
         * Renders a path name as a file URL that is likely recognized by consoles.
         */
        public String asClickableFileUrl(File path) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. src/go/types/exprstring.go

    // Shortened representations are suitable for user interfaces but may not
    // necessarily follow Go syntax.
    func ExprString(x ast.Expr) string {
    	var buf bytes.Buffer
    	WriteExpr(&buf, x)
    	return buf.String()
    }
    
    // WriteExpr writes the (possibly shortened) string representation for x to buf.
    // Shortened representations are suitable for user interfaces but may not
    // necessarily follow Go syntax.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 19:31:44 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/services/LoggingServiceRegistry.java

        protected final OutputEventListenerManager outputEventListenerManager = new OutputEventListenerManager(renderer);
    
        /**
         * Creates a set of logging services which are suitable to use globally in a process. In particular:
         *
         * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. src/testing/testing_windows.go

    	}
    	return false
    }
    
    // highPrecisionTime represents a single point in time with query performance counter.
    // time.Time on Windows has low system granularity, which is not suitable for
    // measuring short time intervals.
    //
    // TODO: If Windows runtime implements high resolution timing then highPrecisionTime
    // can be removed.
    type highPrecisionTime struct {
    	now int64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/types/nodename.go

    //	Hostname, and thus it makes sense also to use it as the Node.Name.  But that is GCE specific, and it is up
    //	to the cloudprovider how to do this mapping.
    //
    //	For AWS, the InstanceID is not yet suitable for use as a Node.Name, so we actually use the
    //	PrivateDnsName for the Node.Name.  And this is _not_ always the same as the hostname: if
    //	we are using a custom DHCP domain it won't be.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 2K bytes
    - Viewed (0)
Back to top