Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 424 for distinguish (0.15 sec)

  1. src/runtime/signal_darwin_arm64.go

    }
    
    //go:nosplit
    func (c *sigctxt) fixsigcode(sig uint32) {
    	switch sig {
    	case _SIGTRAP:
    		// OS X sets c.sigcode() == TRAP_BRKPT unconditionally for all SIGTRAPs,
    		// leaving no way to distinguish a breakpoint-induced SIGTRAP
    		// from an asynchronous signal SIGTRAP.
    		// They all look breakpoint-induced by default.
    		// Try looking at the code to see if it's a breakpoint.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:03:24 UTC 2019
    - 3.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/MissingAttributeAmbiguousGraphVariantsFailureDescriber.java

     */
    public abstract class MissingAttributeAmbiguousGraphVariantsFailureDescriber extends AmbiguousGraphVariantsFailureDescriber {
        /**
         * Map from failure -> name of attribute that would distinguish each candidate.
         * This map exists to avoid re-discovering the unrequested attributes between the calls to `canDescribeFailure` and `describeFailure`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 16:12:53 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/session/AbstractSessionInvalidationTest.kt

         * associated result file.
         */
        protected abstract val modificationEventKind: KotlinModificationEventKind
    
        /**
         * A suffix for the result file to distinguish it from the results of other session invalidation tests if the results are different.
         */
        protected abstract val resultFileSuffix: String?
    
        protected abstract fun getSession(ktModule: KtModule): SESSION
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/ExecutionError.java

     * possibly run in another thread. That cause should itself be an {@code Error}; if not, use {@code
     * ExecutionException} or {@link UncheckedExecutionException}. This allows the client code to
     * continue to distinguish between exceptions and errors, even when they come from other threads.
     *
     * @author Chris Povirk
     * @since 10.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public class ExecutionError extends Error {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 17:52:19 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. maven-core/src/site/apt/inheritance.apt

      accommodate changes in the model will be named accordingly - 4.0.1, 4.0.2, ...).
    
    Minimum Element-Set for a Project POM
    
      In order to furnish a basic set of information which we need to distinguish one
      project from another, maven requires a minimum set of elements to be specified
      in each project's pom.xml.
    
       - [modelVersion] tells maven which version of the object model this project
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 17:22:19 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/attributes/Attribute.java

         * This method is useful when there's supposedly only one attribute of a specific type in a container, so there's
         * no need to distinguish by name (but the returned type doesn't enforce it_. There's no guarantee that subsequent
         * calls to this method with the same attributes would either return the same instance or different instances
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 22 02:54:35 UTC 2019
    - 4K bytes
    - Viewed (0)
  7. tensorflow/c/eager/c_api_unified_experimental_internal.h

    // =============================================================================
    
    // Represents either a MlirTensor or a GraphTensor.
    // This base class does not expose any public methods other than to distinguish
    // which subclass it actually is. The user is responsible to use the right
    // type of AbstractTensor in their context (do not pass an MlirTensor to a
    // GraphContext and vice-versa).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 13 22:20:40 UTC 2020
    - 5.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_tensor.h

    #include "tensorflow/core/platform/mutex.h"
    
    namespace tensorflow {
    
    // The implementation of a Tensor for an XlaDevice. All device tensors are
    // actually one of these.
    //
    // To distinguish between "normal" device tensors and XlaTensors, the raw
    // pointer data stored in the TensorBuffer is a tagged pointer.
    class XlaTensor {
     public:
      // Downcast from a Tensor to an XlaTensor. Return nullptr if the downcast
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. src/os/env.go

    	}
    	return s[:i], i
    }
    
    // Getenv retrieves the value of the environment variable named by the key.
    // It returns the value, which will be empty if the variable is not present.
    // To distinguish between an empty value and an unset value, use [LookupEnv].
    func Getenv(key string) string {
    	testlog.Getenv(key)
    	v, _ := syscall.Getenv(key)
    	return v
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. maven-di/src/main/java/org/apache/maven/di/Key.java

    import org.apache.maven.di.impl.Types;
    import org.apache.maven.di.impl.Utils;
    
    /**
     * The key defines an identity of a binding. In any DI, a key is usually a type of the object along
     * with some optional tag to distinguish between bindings which make objects of the same type.
     * <p>
     * In ActiveJ Inject, a key is also a type token - special abstract class that can store type information
     * with the shortest syntax possible in Java.
     * <p>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top