Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 4,444 for sinhe4 (0.21 sec)

  1. guava/src/com/google/common/cache/ForwardingCache.java

      }
    
      /** @since 11.0 */
      @Override
      public void put(K key, V value) {
        delegate().put(key, value);
      }
    
      /** @since 12.0 */
      @Override
      public void putAll(Map<? extends K, ? extends V> m) {
        delegate().putAll(m);
      }
    
      @Override
      public void invalidate(Object key) {
        delegate().invalidate(key);
      }
    
      /** @since 11.0 */
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top