Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 729 for iterations (0.21 sec)

  1. pkg/kubelet/volumemanager/volume_manager.go

    	// WaitForAttachAndMount call will wait for all volumes in the specified pod
    	// to be attached and mounted. Even though cloud operations can take several
    	// minutes to complete, we set the timeout to 2 minutes because kubelet
    	// will retry in the next sync iteration. This frees the associated
    	// goroutine of the pod to process newer updates if needed (e.g., a delete
    	// request to the pod).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/operations/trace/BuildOperationTrace.java

    import org.gradle.internal.concurrent.Stoppable;
    import org.gradle.internal.operations.BuildOperationDescriptor;
    import org.gradle.internal.operations.BuildOperationListener;
    import org.gradle.internal.operations.BuildOperationListenerManager;
    import org.gradle.internal.operations.OperationFinishEvent;
    import org.gradle.internal.operations.OperationIdentifier;
    import org.gradle.internal.operations.OperationProgressEvent;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/MinMaxPriorityQueue.java

     *   <li>The retrieval operations {@link #peek}, {@link #peekFirst}, {@link #peekLast}, {@link
     *       #element}, and {@link #size} are constant-time.
     *   <li>The enqueuing and dequeuing operations ({@link #offer}, {@link #add}, and all the forms of
     *       {@link #poll} and {@link #remove()}) run in {@code O(log n) time}.
     *   <li>The {@link #remove(Object)} and {@link #contains} operations require linear ({@code O(n)})
     *       time.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 34K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/TaskCacheabilityReasonIntegrationTest.groovy

    import static org.gradle.operations.execution.CachingDisabledReasonCategory.DO_NOT_CACHE_IF_SPEC_SATISFIED
    import static org.gradle.operations.execution.CachingDisabledReasonCategory.NON_CACHEABLE_TREE_OUTPUT
    import static org.gradle.operations.execution.CachingDisabledReasonCategory.NOT_ENABLED_FOR_TASK
    import static org.gradle.operations.execution.CachingDisabledReasonCategory.NO_OUTPUTS_DECLARED
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:59:01 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. cmd/object-api-interface.go

    	MTime                time.Time // Is only set in POST/PUT operations
    	Expires              time.Time // Is only used in POST/PUT operations
    
    	DeleteMarker            bool // Is only set in DELETE operations for delete marker replication
    	CheckDMReplicationReady bool // Is delete marker ready to be replicated - set only during HEAD
    	Tagging                 bool // Is only in GET/HEAD operations to return tagging metadata along with regular metadata and body.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 20:27:52 UTC 2024
    - 17K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.h

    //     operations on resource variables are resource reads/writes..
    //   . Replaces resource reads/writes with function inputs/outputs and
    //     eliminates the use of resource variables.
    //   . Legalizes the operations to XLA HLO operations.
    //   . Canonicalizes the XLA HLO operations.
    //
    // device_type: XLA JIT device to use for compilation such as "XLA_CPU_JIT",
    //   "XLA_GPU_JIT" or "XLA_TPU_JIT".
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/configuration/ExecuteUserLifecycleListenerBuildOperationIntegrationTest.groovy

    import org.gradle.internal.operations.BuildOperationType
    import org.gradle.internal.operations.trace.BuildOperationRecord
    import org.gradle.internal.operations.trace.BuildOperationRecord.Progress
    import org.gradle.test.fixtures.file.TestFile
    
    class ExecuteUserLifecycleListenerBuildOperationIntegrationTest extends AbstractIntegrationSpec {
    
        def operations = new BuildOperationsFixture(executer, temporaryFolder)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  8. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/install/DefaultJdkCacheDirectory.java

        @Inject
        public DefaultJdkCacheDirectory(
            GradleUserHomeDirProvider homeDirProvider,
            FileOperations operations,
            FileLockManager lockManager,
            JvmMetadataDetector detector,
            GradleUserHomeTemporaryFileProvider temporaryFileProvider
        ) {
            this.operations = operations;
            this.jdkDirectory = new File(homeDirProvider.getGradleUserHomeDirectory(), "jdks");
            this.lockManager = lockManager;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 23:47:49 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/RangeSet.java

       */
      RangeSet<C> complement();
    
      /**
       * Returns a view of the intersection of this {@code RangeSet} with the specified range.
       *
       * <p>The returned view supports all optional operations supported by this {@code RangeSet}, with
       * the caveat that an {@link IllegalArgumentException} is thrown on an attempt to {@linkplain
       * #add(Range) add} any range not {@linkplain Range#encloses(Range) enclosed} by {@code view}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/DeprecatedUsageBuildOperationProgressIntegrationTest.groovy

    class DeprecatedUsageBuildOperationProgressIntegrationTest extends AbstractIntegrationSpec {
    
        def setup() {
            enableProblemsApiCheck()
        }
    
    
        def operations = new BuildOperationsFixture(executer, temporaryFolder)
    
        def "emits deprecation warnings as build operation progress events with context"() {
            when:
            settingsFile "rootProject.name = 'root'"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top