Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 387 for GETs (0.04 sec)

  1. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/UncheckedException.java

        }
    
        /**
         * Note: always throws the failure in some form. The return value is to keep the compiler happy.
         */
        // TODO Use this in org.gradle.internal.Try.Failure once this gets moved out from :base-services
        public static RuntimeException throwAsUncheckedException(Throwable t, boolean preserveMessage) {
            if (t instanceof InterruptedException) {
                Thread.currentThread().interrupt();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. internal/bpool/bpool.go

    // Populate - populates and pre-warms the byte pool, this function is non-blocking.
    func (bp *BytePoolCap) Populate() {
    	for _, buf := range reedsolomon.AllocAligned(cap(bp.c), bp.wcap) {
    		bp.Put(buf[:bp.w])
    	}
    }
    
    // Get gets a []byte from the BytePool, or creates a new one if none are
    // available in the pool.
    func (bp *BytePoolCap) Get() (b []byte) {
    	if bp == nil {
    		return nil
    	}
    	select {
    	case b = <-bp.c:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 19 16:44:59 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. src/internal/trace/testdata/generators/go122-confuse-seq-across-generations.go

    	b10.Event("ProcStatus", trace.ProcID(0), go122.ProcRunning)
    	b10.Event("GoStatus", trace.GoID(1), trace.ThreadID(0), go122.GoRunning)
    	b10.Event("GoStop", "whatever", testgen.NoStack)
    
    	// The running goroutine gets unblocked.
    	b11 := g1.Batch(trace.ThreadID(1), 0)
    	b11.Event("ProcStatus", trace.ProcID(1), go122.ProcRunning)
    	b11.Event("GoStart", trace.GoID(1), testgen.Seq(1))
    	b11.Event("GoStop", "whatever", testgen.NoStack)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. build/pause/CHANGELOG.md

    # 3.8
    
    * Updating base image for Windows container images from nanoserver to `mcr.microsoft.com/oss/kubernetes/windows-pause-image-base` which gets built on a Windows machine.
    This addresses [Cannot modify registry keys during Windows pause image build process #109161](https://github.com/kubernetes/kubernetes/issues/109161)
    
    # 3.7
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 13:09:17 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/utils/const_tensor_utils.h

                                                   bool is_constant = false,
                                                   bool is_intermediate = false,
                                                   bool get_storage = false);
    
    // Gets a constant splat for the given value of type. Requires value to be of
    // type static shaped RankedTensorType. `unique_index` is used to get the unique
    // value for the attribute.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSmartCastProvider.kt

    }
    
    public typealias KtSmartCastProvider = KaSmartCastProvider
    
    public interface KaSmartCastProviderMixIn : KaSessionMixIn {
        /**
         * Gets the smart-cast information of the given expression or null if the expression is not smart casted.
         */
        public fun KtExpression.getSmartCastInfo(): KaSmartCastInfo? =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/calibration_parameters.h

             method == CalibrationOptions::
                           CALIBRATION_METHOD_HISTOGRAM_MSE_MAX_FREQUENCY ||
             method ==
                 CalibrationOptions::CALIBRATION_METHOD_HISTOGRAM_MSE_SYMMETRIC;
    }
    
    // Gets the number of bins for the given calibration method.
    inline int32_t GetNumBins(const CalibrationOptions& calib_opts) {
      return IsHistogramCalibration(calib_opts.calibration_method())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/dra/plugin/noderesources.go

    	// for this plugin.
    	cancel func(reason error)
    
    	// resources is protected by the nodeResourcesController read/write lock.
    	// When receiving updates from the driver, the entire slice gets replaced,
    	// so it is okay to not do a deep copy of it. Only retrieving the slice
    	// must be protected by a read lock.
    	resources []*resourceapi.ResourceModel
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/InstrumentingClassLoader.java

     * limitations under the License.
     */
    
    package org.gradle.internal.classloader;
    
    import javax.annotation.Nullable;
    import java.security.ProtectionDomain;
    
    /**
     * A ClassLoader implementing this interface gets a special treatment from the instrumenting Java agent.
     * When such a classloader attempts to define a class, the agent calls {@link #instrumentClass(String, ProtectionDomain, byte[])} method
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/TypeAnnotationMetadataStore.java

     * If a subtype doesn't override a super-type defined category, the corresponding annotation in that category gets inherited.
     * Subtypes can mark methods to be ignored by using an ignore annotation.
     * Ignored methods don't inherit super-type annotations.
     * </p>
     *
     * <strong>Boolean properties</strong>
     *
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top