Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 65 for setEtag (0.12 sec)

  1. platforms/software/version-control/src/main/java/org/gradle/vcs/git/internal/GitVersionControlSystem.java

        private Collection<Ref> getRemoteRefs(GitVersionControlSpec gitSpec, boolean tags, boolean heads) {
            try {
                return configureTransport(Git.lsRemoteRepository()).setRemote(normalizeUri(gitSpec.getUrl())).setTags(tags).setHeads(heads).call();
            } catch (URISyntaxException | GitAPIException e) {
                throw wrapGitCommandException("ls-remote", gitSpec.getUrl(), null, e);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 14:54:52 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/AbstractTablePageGenerator.java

            public TableHtml(Writer writer) {
                super(writer);
            }
    
            // @formatter:off
                {
                    html();
                        head();
                            metaTag(this);
                            link().rel("stylesheet").type("text/css").href("https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css").end();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. cmd/sftp-server-driver.go

    	stopFn := globalSftpMetrics.log(r, f.AccessKey())
    	defer stopFn(0, err)
    
    	clnt, err := f.getMinIOClient()
    	if err != nil {
    		return err
    	}
    
    	switch r.Method {
    	case "Setstat", "Rename", "Link", "Symlink":
    		return sftp.ErrSSHFxOpUnsupported
    
    	case "Rmdir":
    		bucket, prefix := path2BucketObject(r.Filepath)
    		if bucket == "" {
    			return errors.New("deleting all buckets not allowed")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/codehost/git.go

    			}
    			line = line[len("refs/tags/"):]
    
    			if !strings.HasPrefix(line, prefix) {
    				continue
    			}
    			if !allowed(line) {
    				continue
    			}
    
    			semtag := line[len(prefix):]
    			if semver.Compare(semtag, highest) > 0 {
    				highest = semtag
    			}
    		}
    
    		if highest != "" {
    			tag = prefix + highest
    		}
    
    		return tag != "" && !AllHex(tag)
    	}
    
    	if describe() {
    		return tag, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  5. src/cmd/internal/goobj/objfile.go

    	binary.LittleEndian.PutUint32(s[4:], w.stringOff(x))
    }
    
    func (s *Sym) SetABI(x uint16)   { binary.LittleEndian.PutUint16(s[8:], x) }
    func (s *Sym) SetType(x uint8)   { s[10] = x }
    func (s *Sym) SetFlag(x uint8)   { s[11] = x }
    func (s *Sym) SetFlag2(x uint8)  { s[12] = x }
    func (s *Sym) SetSiz(x uint32)   { binary.LittleEndian.PutUint32(s[13:], x) }
    func (s *Sym) SetAlign(x uint32) { binary.LittleEndian.PutUint32(s[17:], x) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  6. pkg/kube/inject/inject.go

    	imageName := "proxyv2"
    	global := values.GetGlobal()
    
    	tag := ""
    	if global.GetTag() != nil { // Tag is an interface but we need the string form.
    		tag = fmt.Sprintf("%v", global.GetTag().AsInterface())
    	}
    
    	imageType := global.GetVariant()
    	if image != nil {
    		imageType = image.ImageType
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/suggest/entity/SuggestItem.java

        public void setReadings(final String[][] readings) {
            this.readings = readings;
        }
    
        public void setFields(final String[] fields) {
            this.fields = fields;
        }
    
        public void setTags(final String[] tags) {
            this.tags = tags;
        }
    
        public void setRoles(final String[] roles) {
            this.roles = roles;
        }
    
        public void setLanguages(final String[] languages) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

            reconnect();
            if (message == null) {
                message = new Type1Message();
                if (LM_COMPATIBILITY > 2) {
                    message.setFlag(NtlmFlags.NTLMSSP_REQUEST_TARGET, true);
                }
            } else {
                String domain = DEFAULT_DOMAIN;
                String user = Type3Message.getDefaultUser();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 20.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/http/NtlmHttpURLConnection.java

                if ( message == null ) {
                    message = new Type1Message(this.transportContext);
                    if ( this.transportContext.getConfig().getLanManCompatibility() > 2 ) {
                        message.setFlag(NtlmFlags.NTLMSSP_REQUEST_TARGET, true);
                    }
                }
                else if ( this.transportContext.getCredentials() instanceof NtlmPasswordAuthentication ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 25.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractorTest.groovy

            void setName(String name)
        }
    
        @Managed
        static interface WithInheritedPropertiesFromGrandparent extends WithInheritedProperties {
            Boolean getFlag()
    
            void setFlag(Boolean flag)
        }
    
        def "extracts properties from multiple levels of inheritance"() {
            when:
            def properties = extract(WithInheritedPropertiesFromGrandparent).properties
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.9K bytes
    - Viewed (0)
Back to top