Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for knobs (0.25 sec)

  1. okhttp/src/test/java/okhttp3/EventListenerTest.kt

              .url("http://" + SocksProxy.HOSTNAME_THAT_ONLY_THE_PROXY_KNOWS + ":" + server.port)
              .build(),
          )
        val response = call.execute()
        assertThat(response.code).isEqualTo(200)
        response.body.close()
        val expectedAddress =
          InetSocketAddress.createUnresolved(
            SocksProxy.HOSTNAME_THAT_ONLY_THE_PROXY_KNOWS,
            server.port,
          )
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Jan 20 10:30:28 GMT 2024
    - 56.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/reflect/TypeToken.java

     *   }
     * }
     *
     * TypeToken<List<String>> stringListType = Util.<String>listType();
     * }</pre>
     *   <li>Capture a generic type with a (usually anonymous) subclass and resolve it against a context
     *       class that knows what the type parameters are. For example:
     *       <pre>{@code
     * abstract class IKnowMyType<T> {
     *   TypeToken<T> type = new TypeToken<T>(getClass()) {};
     * }
     * new IKnowMyType<String>() {}.type => String
     * }</pre>
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jun 26 21:02:13 GMT 2023
    - 53.6K bytes
    - Viewed (0)
  3. cmd/iam-store.go

    //
    // If a group is passed, it returns policies associated with the group.
    //
    // If a user is passed, it returns policies of the user along with any groups
    // that the server knows the user is a member of.
    //
    // In LDAP users mode, the server does not store any group membership
    // information in IAM (i.e sys.iam*Map) - this info is stored only in the STS
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Apr 27 10:04:10 GMT 2024
    - 75.2K bytes
    - Viewed (2)
  4. src/cmd/cgo/gcc.go

    			// Special C name for Go string type.
    			// Knows string layout used by compilers: pointer plus length,
    			// which rounds up to 2 pointers after alignment.
    			t.Go = c.string
    			t.Size = c.ptrSize * 2
    			t.Align = c.ptrSize
    			break
    		}
    		if dt.Name == "_GoBytes_" {
    			// Special C name for Go []byte type.
    			// Knows slice layout used by compilers: pointer, length, cap.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
Back to top