Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 49 for setEtag (0.21 sec)

  1. platforms/software/resources-gcs/src/main/java/org/gradle/internal/resource/transport/gcp/gcs/ResourceMapper.java

                uri,
                storageObject.getUpdated().getValue(),
                storageObject.getSize().longValue(),
                storageObject.getContentType(),
                storageObject.getEtag(),
                null // we cannot use md5 instead of sha1 here because cache will get corrupted due to its expectation of sha1 hashes
            );
        }
    
        private ResourceMapper() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. istioctl/pkg/tag/tag.go

    		},
    	}
    
    	cmd.PersistentFlags().BoolVarP(&skipConfirmation, "skip-confirmation", "y", false, skipConfirmationFlagHelpStr)
    	return cmd
    }
    
    // setTag creates or modifies a revision tag.
    func setTag(ctx context.Context, kubeClient kube.CLIClient, tagName, revision, istioNS string, generate bool, w, stderr io.Writer) error {
    	opts := &GenerateOptions{
    		Tag:                  tagName,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/conn/IdnDnsResolver.java

                return host;
            }
        }
    
        protected String toAscii(final String host) {
            return IDN.toASCII(decode(host), flag);
        }
    
        public void setFlag(final int flag) {
            this.flag = flag;
        }
    
        public void setEncoding(final String encoding) {
            this.encoding = encoding;
        }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/internal/language/compact/language.go

    func (t Tag) RegionalTag() Tag {
    	rt := Tag{language: t.locale, locale: t.locale}
    	if t.full == nil {
    		return rt
    	}
    	b := language.Builder{}
    	tag := t.Tag()
    	// tag, _ = tag.SetTypeForKey("rg", "")
    	b.SetTag(t.locale.Tag())
    	if v := tag.Variants(); v != "" {
    		for _, v := range strings.Split(v, "-") {
    			b.AddVariant(v)
    		}
    	}
    	for _, e := range tag.Extensions() {
    		b.AddExt(e)
    	}
    	return t
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPomScm.java

        /**
         * The browsable repository URL of this SCM.
         */
        Property<String> getUrl();
    
        /**
         * The tag of current code in this SCM.
         */
        Property<String> getTag();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. platforms/software/resources/src/main/java/org/gradle/internal/resource/metadata/DefaultExternalResourceMetaData.java

            return contentLength;
        }
    
        @Nullable
        @Override
        public String getContentType() {
            return contentType;
        }
    
        @Nullable
        @Override
        public String getEtag() {
            return etag;
        }
    
        @Nullable
        @Override
        public HashCode getSha1() {
            return sha1;
        }
    
        @Override
        public boolean wasMissing() {
            return wasMissing;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/DefaultMavenPomScm.java

            return developerConnection;
        }
    
        @Override
        public Property<String> getUrl() {
            return url;
        }
    
        @Override
        public Property<String> getTag() {
            return tag;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. tensorflow/c/kernels/histogram_summary_op.cc

      }
      tensorflow::Summary s;
      tensorflow::Summary::Value* v = s.add_value();
      const tensorflow::tstring& tag =
          *(static_cast<tensorflow::tstring*>(TF_TensorData(safe_tags_ptr.get())));
      v->set_tag(tag.data(), tag.size());
      histo.EncodeToProto(v->mutable_histo(), false /* Drop zero buckets */);
    
      Safe_TF_TensorPtr summary_tensor(TF_AllocateOutput(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/HtmlPageGenerator.java

        protected int getDepth() {
            return 0;
        }
    
        protected void metaTag(Html html) {
            html.meta()
                .httpEquiv("Content-Type")
                .content("text/html; charset=utf-8");
        }
    
        protected void headSection(Html html) {
            String rootDir = getDepth() == 0 ? "" : "../";
            metaTag(html);
            html.link()
                .rel("stylesheet")
                .type("text/css")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. platforms/software/resources-s3/src/main/java/org/gradle/internal/resource/transport/aws/s3/S3Resource.java

                    lastModified.getTime(),
                    getContentLength(),
                    s3Object.getObjectMetadata().getContentType(),
                    s3Object.getObjectMetadata().getETag(),
                    null); // Passing null for sha1 - TODO - consider using the etag which is an MD5 hash of the file (when less than 5Gb)
        }
    
        @Override
        public void close() throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top