Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 244 for trunk (0.04 sec)

  1. src/cmd/go/internal/vcs/vcs.go

    	DownloadCmd: []string{"up"},
    
    	TagCmd:         []tagCmd{{"tag ls", `(.*)`}},
    	TagSyncCmd:     []string{"up tag:{tag}"},
    	TagSyncDefault: []string{"up trunk"},
    
    	Scheme:     []string{"https", "http"},
    	RemoteRepo: fossilRemoteRepo,
    	Status:     fossilStatus,
    }
    
    func fossilRemoteRepo(vcsFossil *Cmd, rootDir string) (remoteRepo string, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * The https://www.jacoco.org/jacoco/[JaCoCo Plugin] now uses https://www.jacoco.org/jacoco/trunk/doc/changes.html[0.8.2] instead of 0.8.1 by default.
     * The https://pmd.github.io/[PMD Plugin] now uses https://pmd.github.io/pmd-6.8.0/pmd_release_notes.html#30-september-2018---680[6.8.0] instead of 5.6.1 by default.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals("other-archive", pom.getValue("mailingLists[1]/otherArchives[1]"));
    
            assertEquals("2.0.1", pom.getValue("prerequisites/maven"));
    
            assertEquals("https://project.url/trunk", pom.getValue("scm/url"));
            assertEquals("https://project.url/scm", pom.getValue("scm/connection"));
            assertEquals("https://project.url/scm", pom.getValue("scm/developerConnection"));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  4. test/convert1.go

    	_ = Tstring(s)
    	_ = Tbyte(s)
    	_ = Trune(s)
    	_ = Tint64(s) // ERROR "cannot convert.*Tint64|invalid type conversion"
    
    	_ = string(sb)
    	_ = []byte(sb)
    	_ = []rune(sb)  // ERROR "cannot convert.*\[\]rune|invalid type conversion"
    	_ = []int64(sb) // ERROR "cannot convert.*\[\]int64|invalid type conversion"
    	_ = Tstring(sb)
    	_ = Tbyte(sb)
    	_ = Trune(sb)  // ERROR "cannot convert.*Trune|invalid type conversion"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 3.4K bytes
    - Viewed (0)
  5. src/runtime/softfloat64.go

    	}
    	return
    }
    
    func fpack64(sign, mant uint64, exp int, trunc uint64) uint64 {
    	mant0, exp0, trunc0 := mant, exp, trunc
    	if mant == 0 {
    		return sign
    	}
    	for mant < 1<<mantbits64 {
    		mant <<= 1
    		exp--
    	}
    	for mant >= 4<<mantbits64 {
    		trunc |= mant & 1
    		mant >>= 1
    		exp++
    	}
    	if mant >= 2<<mantbits64 {
    		if mant&1 != 0 && (trunc != 0 || mant&2 != 0) {
    			mant++
    			if mant >= 4<<mantbits64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 17:58:41 UTC 2021
    - 11.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/NtlmContext.java

            mac.update(data); // data
            byte[] dgst = mac.digest();
            byte[] trunc = new byte[8];
            System.arraycopy(dgst, 0, trunc, 0, 8);
    
            if ( log.isDebugEnabled() ) {
                log.debug("Digest " + Hexdump.toHexString(dgst));
                log.debug("Truncated " + Hexdump.toHexString(trunc));
            }
    
            if ( ( this.ntlmsspFlags & NtlmFlags.NTLMSSP_NEGOTIATE_KEY_EXCH ) != 0 ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 15.7K bytes
    - Viewed (0)
  7. src/math/floor.go

    	return ceil(x)
    }
    
    func ceil(x float64) float64 {
    	return -Floor(-x)
    }
    
    // Trunc returns the integer value of x.
    //
    // Special cases are:
    //
    //	Trunc(±0) = ±0
    //	Trunc(±Inf) = ±Inf
    //	Trunc(NaN) = NaN
    func Trunc(x float64) float64 {
    	if haveArchTrunc {
    		return archTrunc(x)
    	}
    	return trunc(x)
    }
    
    func trunc(x float64) float64 {
    	if x == 0 || IsNaN(x) || IsInf(x, 0) {
    		return x
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  8. helm/minio/templates/_helpers.tpl

      {{- if .Values.fullnameOverride -}}
        {{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}}
      {{- else -}}
        {{- $name := default .Chart.Name .Values.nameOverride -}}
        {{- if contains $name .Release.Name -}}
          {{- .Release.Name | trunc 63 | trimSuffix "-" -}}
        {{- else -}}
          {{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}}
        {{- end -}}
      {{- end -}}
    {{- end -}}
    
    {{/*
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 17 06:04:15 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  9. src/runtime/conv_wasm_test.go

    			convInt64:  -0x8000000000000000,
    			convUInt64: 0x8000000000000000,
    		},
    		{
    			input:      -0x7fffffffffffffff,
    			convInt64:  -0x8000000000000000,
    			convUInt64: 0x8000000000000000,
    		},
    		// trunc point +- 1
    		{
    			input:      0x7ffffffffffffdff,
    			convInt64:  0x7ffffffffffffc00,
    			convUInt64: 0x7ffffffffffffc00,
    		},
    		{
    			input:      0x7ffffffffffffe00,
    			convInt64:  -0x8000000000000000,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 06 13:55:00 UTC 2020
    - 3K bytes
    - Viewed (0)
  10. src/testing/iotest/writer_test.go

    )
    
    var truncateWriterTests = []struct {
    	in    string
    	want  string
    	trunc int64
    	n     int
    }{
    	{"hello", "", -1, 5},
    	{"world", "", 0, 5},
    	{"abcde", "abc", 3, 5},
    	{"edcba", "edcba", 7, 5},
    }
    
    func TestTruncateWriter(t *testing.T) {
    	for _, tt := range truncateWriterTests {
    		buf := new(strings.Builder)
    		tw := TruncateWriter(buf, tt.trunc)
    		n, err := tw.Write([]byte(tt.in))
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 07:03:10 UTC 2022
    - 881 bytes
    - Viewed (0)
Back to top