Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 419 for ContentType (0.22 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/resource/transfer/CachingTextUriResourceLoader.java

                }
                ExternalResourceMetaData metaData = resource.getMetaData();
                String contentType = metaData == null ? null : metaData.getContentType();
                return new DownloadedUriTextResource(description, source, contentType, resource.getFile(), resolver);
            }
    
            // fallback to old behavior of always loading the resource
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. samples/crawler/src/main/java/okhttp3/sample/Crawler.java

          System.out.printf("%03d: %s %s%n", responseCode, url, responseSource);
    
          String contentType = response.header("Content-Type");
          if (responseCode != 200 || contentType == null) {
            return;
          }
    
          MediaType mediaType = MediaType.parse(contentType);
          if (mediaType == null || !mediaType.subtype().equalsIgnoreCase("html")) {
            return;
          }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Aug 12 07:26:27 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  3. platforms/software/resources-gcs/src/test/groovy/org/gradle/internal/resource/transport/gcp/gcs/GcsResourceConnectorTest.groovy

            then:
            gcsResource != null
        }
    
        def "should get a resource metaData"() {
            def lastModified = new DateTime(new Date())
            def md5hash = '3e25960a79dbc69b674cd4ec67a72c62'
            def contentType = 'application/zip'
    
            GcsClient gcsClient = Mock(GcsClient) {
                1 * getResource(uri) >> {
                    def storageObject = new StorageObject()
                    storageObject.setUpdated(lastModified)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/orig/view/footer.jsp

    <%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%>
    <footer role="contentinfo">
    	<div class="container text-center">
    		<p class="textmuted">
    			<la:message key="labels.footer.copyright" />
    		</p>
    	</div>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Aug 07 14:11:18 UTC 2018
    - 232 bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/common/admin/footer.jsp

    <%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%>
    <footer class="main-footer">
    	<div class="float-right d-none d-sm-inline-block"></div>
    	<la:message key="labels.footer.copyright" />
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 213 bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractor.java

                            }, contentEncoding, normalizeText);
                        }
                        if (StringUtil.isBlank(content) && contentType != null) {
                            if (logger.isDebugEnabled()) {
                                logger.debug("retry without a content type: {}", contentType);
                            }
                            final Metadata metadata3 = createMetadata(null, null, contentEncoding, pdfPassword);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/searchNoResult.jsp

    <%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%>
    <%-- query did not match any document --%>
    <div id="result" class="row">
    	<div class="col-md-8 alert">
    		<la:message key="labels.did_not_match" arg0="${displayQuery}" />
    	</div>
    	<div class="col-md-4"><%-- Side Content --%></div>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Oct 07 22:00:56 UTC 2018
    - 307 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/audit/fuzzer/fuzzer.go

    					ContentType: runtime.ContentTypeJSON,
    				}
    			}
    			switch c.RandBool() {
    			case true:
    				e.ResponseObject = nil
    			case false:
    				e.ResponseObject = &runtime.Unknown{
    					TypeMeta:    runtime.TypeMeta{APIVersion: "", Kind: ""},
    					Raw:         []byte(`{"apiVersion":"","kind":"Pod","someKey":"someValue"}`),
    					ContentType: runtime.ContentTypeJSON,
    				}
    			}
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 04 16:10:17 UTC 2017
    - 2.1K bytes
    - Viewed (0)
  9. common-protos/k8s.io/apimachinery/pkg/runtime/generated.proto

      // ContentEncoding is encoding used to encode 'Raw' data.
      // Unspecified means no encoding.
      optional string contentEncoding = 3;
    
      // ContentType  is serialization method used to serialize 'Raw'.
      // Unspecified means ContentTypeJSON.
      optional string contentType = 4;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/generated.proto

      // ContentEncoding is encoding used to encode 'Raw' data.
      // Unspecified means no encoding.
      optional string contentEncoding = 3;
    
      // ContentType  is serialization method used to serialize 'Raw'.
      // Unspecified means ContentTypeJSON.
      optional string contentType = 4;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 4.2K bytes
    - Viewed (0)
Back to top