- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 3,351 for type (0.04 sec)
-
okhttp/src/main/kotlin/okhttp3/MultipartBody.kt
private var type = MIXED private val parts = mutableListOf<Part>() /** * Set the MIME type. Expected values for `type` are [MIXED] (the default), [ALTERNATIVE], * [DIGEST], [PARALLEL] and [FORM]. */ fun setType(type: MediaType) = apply { require(type.type == "multipart") { "multipart != $type" } this.type = type }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 10.9K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/view/help.jsp
</div> </main> <jsp:include page="footer.jsp" /> <input type="hidden" id="contextPath" value="${contextPath}" /> <script type="text/javascript" src="${fe:url('/js/jquery-3.7.1.min.js')}"></script> <script src="${fe:url('/js/admin/popper.min.js')}" type="text/javascript"></script> <script type="text/javascript" src="${fe:url('/js/bootstrap.min.js')}"></script> <script type="text/javascript" src="${fe:url('/js/suggestor.js')}"></script>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 01:07:52 UTC 2024 - 1.4K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/NullPointerTester.java
} private /*static*/ <S> S doConvert(TypeToken<S> type) { return checkNotNull(getDefaultValue(type)); } }; } private static TypeToken<?> getFirstTypeParameter(Type type) { if (type instanceof ParameterizedType) { return TypeToken.of(((ParameterizedType) type).getActualTypeArguments()[0]); } else { return TypeToken.of(Object.class); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 11 16:13:05 UTC 2024 - 22.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/reflect/SubtypeTester.java
} } } private Type getOnlyParameterType() { assertThat(method.getGenericParameterTypes()).hasLength(1); return method.getGenericParameterTypes()[0]; } @SuppressWarnings({"rawtypes", "unchecked"}) private static Type getSupertype(Type type, Class<?> superclass) { Class rawType = superclass; return TypeToken.of(type).getSupertype(rawType).getType(); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Apr 19 19:24:36 UTC 2023 - 6.1K bytes - Viewed (0) -
tests/test_default_response_class.py
def test_router_a_a_override(): with client: response = client.get("/a/a/override") assert response.content == b"Hello A A" assert response.headers["content-type"] == text_type def test_router_a_b(): with client: response = client.get("/a/b") assert response.content == b"Hello A B" assert response.headers["content-type"] == text_type
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Mar 01 20:49:20 UTC 2020 - 5.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/handler/manager/DefaultArtifactHandlerManager.java
type.getClassifier(), null, null, type.isIncludesDependencies(), type.getLanguage().id(), type.getPathTypes().contains(JavaPathType.CLASSES)); // TODO: watch out for module path });
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.4K bytes - Viewed (0) -
istioctl/pkg/util/configdump/util.go
import ( "fmt" anypb "google.golang.org/protobuf/types/known/anypb" ) type configTypeURL string // See https://www.envoyproxy.io/docs/envoy/latest/api-v3/admin/v3/config_dump.proto const ( bootstrap configTypeURL = "type.googleapis.com/envoy.admin.v3.BootstrapConfigDump" listeners configTypeURL = "type.googleapis.com/envoy.admin.v3.ListenersConfigDump" endpoints configTypeURL = "type.googleapis.com/envoy.admin.v3.EndpointsConfigDump"
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Sun Dec 24 08:16:26 UTC 2023 - 2.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/After.java
@Retention(RetentionPolicy.RUNTIME) @Target(ElementType.TYPE) @Inherited public @interface After { /** * Type of pointer. * @see org.apache.maven.api.Lifecycle.Pointer.Type */ enum Type { PROJECT, DEPENDENCIES, CHILDREN } /** * The phase name. */ String phase(); /** * The type of this pointer. */ Type type();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Aug 29 05:48:54 UTC 2024 - 1.8K bytes - Viewed (0) -
helm/minio/templates/console-service.yaml
{{- end }} spec: type: {{ .Values.consoleService.type }} {{- if and (eq .Values.consoleService.type "ClusterIP") .Values.consoleService.clusterIP }} clusterIP: {{ .Values.consoleService.clusterIP }} {{- end }} {{- if or (eq .Values.consoleService.type "LoadBalancer") (eq .Values.consoleService.type "NodePort") }}
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Apr 28 10:05:53 UTC 2024 - 1.8K bytes - Viewed (0) -
src/main/config/openapi/openapi-user.yaml
type: boolean example: false start_record_number: type: integer example: 1 end_record_number: type: integer example: 20 page_numbers: type: array items: type: string
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu May 09 06:31:27 UTC 2024 - 21.6K bytes - Viewed (0)