Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 655 for confuse (0.14 sec)

  1. 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)
  2. src/cmd/cgo/internal/testsanitizers/testdata/msan6.go

    	uintptr_t a[20];
    } S;
    
    S f() {
    	S *p;
    
    	p = (S *)(malloc(sizeof(S)));
    	p->a[0] = 0;
    	return *p;
    }
    */
    import "C"
    
    // allocateStack extends the stack so that stack copying doesn't
    // confuse the msan data structures.
    //
    //go:noinline
    func allocateStack(i int) int {
    	if i == 0 {
    		return i
    	}
    	return allocateStack(i - 1)
    }
    
    // F1 marks a chunk of stack as uninitialized.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. src/os/exec/read3.go

    // This is not done via TestHelperProcess and GO_EXEC_TEST_PID
    // because we want to ensure that this program does not use cgo,
    // because C libraries can open file descriptors behind our backs
    // and confuse the test. See issue 25628.
    package main
    
    import (
    	"fmt"
    	"internal/poll"
    	"io"
    	"os"
    	"os/exec"
    	"os/exec/internal/fdtest"
    	"runtime"
    	"strings"
    )
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 26 14:49:07 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  4. tests/testdata/config/none.yaml

            - default/test.default # TODO: without namespace it  fails validation !
          # TODO: if we include the namespace, why do we need full name ? Importing regular services should work.
    
      # Label selection seems to confuse the new code.
      ingress:
        - port:
            number: 7071
            protocol: HTTP
            name: httplocal
          defaultEndpoint: 127.0.0.1:17071
        - port:
            number: 7070
            protocol: TCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 21:13:54 UTC 2020
    - 8.8K 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