Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,478 for Detached (0.17 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/concurrent/ConcurrentSpec.groovy

     *
     * <p>This class maintains a set of instants reached by the test. An instant records the point in time that a test thread reached a certain point of its execution.
     * Once the test threads have completed, you can make assertions about the ordering of the various instants relative to each other. You can also block until a given
     * instant has been reached.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. pkg/kubelet/checkpointmanager/README.md

    ## DISCLAIMER
    - Sig-Node community has reached a general consensus, as a best practice, to
    avoid introducing any new checkpointing support. We reached this understanding
    after struggling with some hard-to-debug issues in the production environments
    caused by the checkpointing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 16 05:30:20 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.28.md

    - Fixed attaching volumes after detach errors. Now volumes that failed to detach are not treated as attached, Kubernetes will make sure they are fully attached before they can be used by pods. ([#120595](https://github.com/kubernetes/kubernetes/pull/120595), [@jsafrane](https://github.com/jsafrane)) [SIG Apps and Storage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  4. pkg/volume/metrics_block.go

    	// the device node where the volume is attached to.
    	device string
    }
    
    // NewMetricsStatfs creates a new metricsBlock with the device node of the
    // Volume.
    func NewMetricsBlock(device string) MetricsProvider {
    	return &metricsBlock{device}
    }
    
    // See MetricsProvider.GetMetrics
    // GetMetrics detects the size of the BlockMode volume for the device node
    // where the Volume is attached.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 14:33:37 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/ResolvingFromMultipleCustomPluginRepositorySpec.groovy

            def idSegments = Splitter.on('.').split(pluginId)
            def coordinates = [idSegments.dropRight(1).join('.'), idSegments.last(), "1.0"].join(':')
    
            def message = "from ${idSegments.last()} fetched from ${repository.uri}/"
            def taskName = idSegments.last()
            pluginBuilder.addPluginWithPrintlnTask(taskName, message, pluginId, idSegments.last().capitalize())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:30:55 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.cc

        saver_def.set_version(SaverDef::V2);
        saver_def.set_filename_tensor_name(filename_tensor_name);
        saver_def.set_restore_op_name(restore_op_name);
        // :0 attached to indicate the first result tensor. This saves the model
        // checkpoint when fetched.
        saver_def.set_save_tensor_name(absl::StrCat(save_node_name, ":0"));
        return saver_def;
      } else {
        return absl::InternalError(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  7. platforms/software/resources/src/main/java/org/gradle/internal/resource/transfer/DefaultExternalResourceConnector.java

            public String toString() {
                final StringBuilder sb = new StringBuilder("External resources connector statistics: \n");
                sb.append("   - Resources fetched : ").append(resourceCount.get()).append("\n");
                sb.append("   - Metadata fetched  : ").append(metadataCount.get()).append("\n");
                sb.append("   - Lists             : ").append(listCount.get()).append("\n");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/instantiate.go

    // orig must be an *Alias, *Named, or *Signature type. If there is no error,
    // the resulting Type is an instantiated type of the same kind (*Alias, *Named
    // or *Signature, respectively).
    //
    // Methods attached to a *Named type are also instantiated, and associated with
    // a new *Func that has the same position as the original method, but nil function
    // scope.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.22.md

    - Retry `FibreChannel` devices cleanup after error to ensure `FibreChannel` device is detached before it can be used on another node. ([#101862](https://github.com/kubernetes/kubernetes/pull/101862), [@jsafrane](https://github.com/jsafrane))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  10. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/source/model/MethodMetaDataTest.groovy

        def "is deprecated when @Deprecated is attached to method"() {
            def notDeprecated = new MethodMetaData('param', owner)
            def deprecated = new MethodMetaData('param', owner)
            deprecated.addAnnotationTypeName(Deprecated.class.name)
    
            expect:
            !notDeprecated.deprecated
            deprecated.deprecated
        }
    
        def "is incubating when @Incubating is attached to method"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 5.6K bytes
    - Viewed (0)
Back to top