Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 4,443 for sinhe3 (0.14 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/PropertyExtensions.kt

    import org.gradle.api.provider.Provider
    import java.io.File
    
    
    /**
     * Assign value: T to a property with assign operator
     *
     * @since 8.2
     */
    fun <T> Property<T>.assign(value: T?) {
        this.set(value)
    }
    
    
    /**
     * Assign value: Provider<T> to a property with assign operator
     *
     * @since 8.2
     */
    fun <T> Property<T>.assign(value: Provider<out T?>) {
        this.set(value)
    }
    
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/ProjectDependency.java

        }
    
        /**
         * Returns the file that can replace this ProjectDependency
         *
         * @since 5.6
         */
        public FileReference getPublication() {
            return publication;
        }
    
        /**
         * Sets the file that can replace this ProjectDependency
         *
         * @since 5.6
         */
        public void setPublication(FileReference publication) {
            this.publication = publication;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaPluginExtension.java

         *
         * @since 6.0
         */
        void withSourcesJar();
    
        /**
         * Configure the module path handling for tasks that have a 'classpath' as input. The module classpath handling defines
         * to determine for each entry if it is passed to Java tools using '-classpath' or '--module-path'.
         *
         * @since 6.4
         */
        ModularitySpec getModularity();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/LongRunningOperation.java

         * @return this
         * @since 2.3
         */
        LongRunningOperation setColorOutput(boolean colorOutput);
    
        /**
         * Sets the {@link java.io.InputStream} that will be used as standard input for this operation.
         * Defaults to an empty input stream.
         *
         * @param inputStream The input stream
         * @return this
         * @since 1.0-milestone-8
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 14K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolutionStrategy.java

         *
         * @return this resolution strategy instance
         * @since 4.8
         */
        ResolutionStrategy activateDependencyLocking();
    
        /**
         * Deactivates dependency locking support in Gradle.
         *
         * @return this resolution strategy instance
         * @since 6.0
         */
        ResolutionStrategy deactivateDependencyLocking();
    
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 13:05:50 UTC 2022
    - 16K bytes
    - Viewed (0)
  6. cmd/metrics-v3-scanner.go

    		"Total number of bucket scans finished since server start")
    	scannerBucketScansStartedMD = NewCounterMD(scannerBucketScansStarted,
    		"Total number of bucket scans started since server start")
    	scannerDirectoriesScannedMD = NewCounterMD(scannerDirectoriesScanned,
    		"Total number of directories scanned since server start")
    	scannerObjectsScannedMD = NewCounterMD(scannerObjectsScanned,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 19:29:25 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/internal/taskgraph/CalculateTaskGraphBuildOperationType.java

     *
     * @since 4.0
     */
    public final class CalculateTaskGraphBuildOperationType implements BuildOperationType<CalculateTaskGraphBuildOperationType.Details, CalculateTaskGraphBuildOperationType.Result> {
    
        /**
         * An identifiable node in the execution graph with its dependencies.
         *
         * @since 8.1
         */
        public interface PlannedNode {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/Severity.java

         *
         * @since 8.6
         */
        Severity WARNING = new DefaultSeverity(1, true);
    
        /**
         * Error-level severity.
         *
         * @since 8.6
         */
        Severity ERROR = new DefaultSeverity(2, true);
    
        /**
         * The severity level represented by a string.
         *
         * @return the severity
         * @since 8.6
         */
        int getSeverity();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 13:56:41 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. pkg/controller/ttlafterfinished/ttlafterfinished_controller_test.go

    		completionTime   metav1.Time
    		failedTime       metav1.Time
    		ttl              *int32
    		since            *time.Time
    		expectErr        bool
    		expectErrStr     string
    		expectedTimeLeft *time.Duration
    		expectedExpireAt time.Time
    	}{
    		{
    			name:         "Error case: Job unfinished",
    			ttl:          pointer.Int32(100),
    			since:        &now.Time,
    			expectErr:    true,
    			expectErrStr: "should not be cleaned up",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 18 18:46:26 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyHandler.java

         * @since 1.8
         */
        ComponentMetadataHandler getComponents();
    
        /**
         * Configures component metadata for this project.
         *
         * <p>This method executes the given action against the {@link org.gradle.api.artifacts.dsl.ComponentMetadataHandler} for this project.</p>
         *
         * @param configureAction the action to use to configure module metadata
         * @since 1.8
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 26.8K bytes
    - Viewed (0)
Back to top