Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 491 for confuse (0.13 sec)

  1. src/internal/trace/testdata/generators/go122-confuse-seq-across-generations.go

    Michael Anthony Knyszek <******@****.***> 1716583527 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. src/internal/trace/testdata/tests/go122-confuse-seq-across-generations.test

    Carlos Amedee <******@****.***> 1715265901 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1018 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/types.h

    namespace mlir::quant::stablehlo {
    
    // Introduces aliases for `std::string` to distinguish btw. function name and
    // its alias, to prevent confusion when used together in a container. For
    // example, it is easy to confuse function name -> alias mapping with alias ->
    // function name mapping when both are just represented as `std::string`.
    using FunctionAlias = std::string;
    using FunctionName = std::string;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jan 22 00:38:45 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ImmutableCapability.java

    import javax.annotation.Nullable;
    
    /**
     * This is a deprecated internal class that exists specifically to be used by the
     * Android and Kotlin Android plugins, which expect this type.
     * <p>
     * Be careful to not confuse it with the {@link org.gradle.api.internal.capabilities.ImmutableCapability ImmutableCapability}
     * interface.
     * <p>
     * Without this class in place these smoke tests fail:
     * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. src/internal/poll/fd_poll_runtime.go

    	return setDeadlineImpl(fd, t, 'w')
    }
    
    func setDeadlineImpl(fd *FD, t time.Time, mode int) error {
    	var d int64
    	if !t.IsZero() {
    		d = int64(time.Until(t))
    		if d == 0 {
    			d = -1 // don't confuse deadline right now with no deadline
    		}
    	}
    	if err := fd.incref(); err != nil {
    		return err
    	}
    	defer fd.decref()
    	if fd.pd.runtimeCtx == 0 {
    		return ErrNoDeadline
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:59 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/Connection.kt

     * client. Applications may use this class to monitor HTTP connections as members of a
     * [connection pool][ConnectionPool].
     *
     * Do not confuse this class with the misnamed `HttpURLConnection`, which isn't so much a connection
     * as a single request/response exchange.
     *
     * ## Modern TLS
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ModelSchemaUtils.java

         * Mock objects generated via {@link Proxy#newProxyInstance(ClassLoader, Class[], java.lang.reflect.InvocationHandler)}
         * lose their generic type parameters and can confuse schema extraction. This way we can ignore these
         * declarations, and use the ones from the proxied interfaces instead.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 06 15:03:49 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. src/runtime/traceback_system_test.go

    // same executable tells us the relative offset of their text segments.
    //
    // It would be nice if SetCrashOutput took care of this as it's fiddly
    // and likely to confuse every user at first.
    func sentinel() uint64 {
    	return uint64(reflect.ValueOf(sentinel).Pointer())
    }
    
    func writeSentinel(out io.Writer) {
    	fmt.Fprintf(out, "sentinel %x\n", sentinel())
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/internal/crashmonitor/monitor.go

    // same executable tells us the relative offset of their text segments.
    //
    // It would be nice if SetCrashOutput took care of this as it's fiddly
    // and likely to confuse every user at first.
    func sentinel() uint64 {
    	return uint64(reflect.ValueOf(sentinel).Pointer())
    }
    
    func writeSentinel(out io.Writer) {
    	fmt.Fprintf(out, "sentinel %x\n", sentinel())
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-message.h

      // of operator <<, even though its body is the same as the
      // templatized version above.  Without this definition, streaming
      // endl or other basic IO manipulators to Message will confuse the
      // compiler.
      Message& operator <<(BasicNarrowIoManip val) {
        *ss_ << val;
        return *this;
      }
    
      // Instead of 1/0, we want to see true/false for bool values.
      Message& operator <<(bool b) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top