Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,233 for indication (0.19 sec)

  1. docs/changelogs/changelog_4x.md

        didn't have it.
     *  Fix: Explicitly specify the remote server name when making HTTPS connections on Android 5. In
        4.3.0 we introduced a regression where server name indication (SNI) was broken on Android 5.
    
    
    ## Version 4.3.0
    
    _2019-12-31_
    
     *  Fix: Degrade HTTP/2 connections after a timeout. When an HTTP/2 stream times out it may impact
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. src/net/dnsclient_unix.go

    			return dnsmessage.Parser{}, dnsmessage.Header{}, errInvalidDNSResponse
    		}
    		// RFC 5966 indicates that when a client receives a UDP response with
    		// the TC flag set, it should take the TC flag as an indication that it
    		// should retry over TCP instead.
    		// The case when the TC flag is set in a TCP response is not well specified,
    		// so this implements the glibc resolver behavior, returning the existing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  3. CHANGELOG.md

     *  New: `mockwebserver3.MockResponse` is now immutable, with a `Builder`.
    
     *  New: `mockwebserver3.RecordedRequest.handshakeServerNames` returns the SNI (Server Name
        Indication) attribute from the TLS handshake.
    
     *  Upgrade: [Kotlin 1.9.21][kotlin_1_9_21].
    
     *  Upgrade: [Okio 3.7.0][okio_3_7_0].
    
    
    ## Version 5.0.0-alpha.11
    
    _2022-12-24_
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:31:39 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  4. src/runtime/pprof/proto.go

    			continue
    		}
    
    		// TODO: pprof's remapMappingIDs makes one adjustment:
    		// 1. If there is an /anon_hugepage mapping first and it is
    		// consecutive to a next mapping, drop the /anon_hugepage.
    		// There's no indication why this is needed.
    		// Let's try not doing this and see what breaks.
    		// If we do need it, it would go here, before we
    		// enter the mappings into b.mem in the first place.
    
    		buildID, _ := elfBuildID(file)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  5. src/runtime/iface.go

    // We don't need the type to be exact, just to have the correct size, alignment, and pointer-ness.
    // However, when debugging, it'd be nice to have some indication in mallocgc where the types came from,
    // so we use named types here.
    // We then construct interface values of these types,
    // and then extract the type word to use as needed.
    type (
    	uint16InterfacePtr uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  6. src/bufio/bufio.go

    // ReadLine. ReadLine either returns a non-nil line or it returns an error,
    // never both.
    //
    // The text returned from ReadLine does not include the line end ("\r\n" or "\n").
    // No indication or error is given if the input ends without a final line end.
    // Calling [Reader.UnreadByte] after ReadLine will always unread the last byte read
    // (possibly a character belonging to the line end) even if that byte is not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:08 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    ----
    
    This error message gives us the GAV coordinates of the problematic dependency, as well as an indication of where the dependency was fetched from.
    Here, the dependency comes from `MyCompany Mirror`, which is a repository declared in our build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

          // only self-dependent conservatively, i.e., we do add dependencies
          // to/from unknown resource types. Currently, we don't have such cases and
          // there is no indication that we will need to support them in the future.
          LOG(WARNING) << "Self-dependent-only resource types are treated "
                          "conservatively for value-based side effects.";
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/debug_test.go

    // where DBG = {gdb,dlv} and TAG={dbg,opt}
    // each variable may optionally be followed by a / and one or more of S,A,N,O
    // to indicate normalization of Strings, (hex) addresses, and numbers.
    // "O" is an explicit indication that we expect it to be optimized out.
    // For example:
    //
    //	if len(os.Args) > 1 { //gdb-dbg=(hist/A,cannedInput/A) //dlv-dbg=(hist/A,cannedInput/A)
    //
    // TODO: not implemented for Delve yet, but this is the plan
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/Invocation.java

    /**
     * Represents a single invocation of the intercepted method/constructor/property.
     */
    public interface Invocation {
        /**
         * Returns the receiver of the invocation.
         * It can be a {@link Class} if the invocation targets constructor, static method, or static property.
         * It can be the instance if the invocation targets the instance method or property.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 08 05:57:27 UTC 2022
    - 2.7K bytes
    - Viewed (0)
Back to top