Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 91 for Fermat (0.17 sec)

  1. src/runtime/mgc.go

    	return buf[i:]
    }
    
    // fmtNSAsMS nicely formats ns nanoseconds as milliseconds.
    func fmtNSAsMS(buf []byte, ns uint64) []byte {
    	if ns >= 10e6 {
    		// Format as whole milliseconds.
    		return itoaDiv(buf, ns/1e6, 0)
    	}
    	// Format two digits of precision, with at most three decimal places.
    	x := ns / 1e3
    	if x == 0 {
    		buf[0] = '0'
    		return buf[:1]
    	}
    	dec := 3
    	for x >= 100 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                return ((LocalConfigurationGraphResolveMetadata) metadata).getFiles();
            }
            return Collections.emptySet();
        }
    
        @Override
        public String toString() {
            return String.format("%s(%s)", component, metadata.getName());
        }
    
        public String getSimpleName() {
            return component.getId().toString();
        }
    
        public String getNameWithVariant() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  3. src/net/http/transport.go

    // a t.Logf func. See export_test.go's Request.WithT method.
    type tLogKey struct{}
    
    func (tr *transportRequest) logf(format string, args ...any) {
    	if logf, ok := tr.Request.Context().Value(tLogKey{}).(func(string, ...any)); ok {
    		logf(time.Now().Format(time.RFC3339Nano)+": "+format, args...)
    	}
    }
    
    // markReused marks this connection as having been successfully used for a
    // request and response.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  4. cmd/erasure-object.go

    	tags["set"] = er.setIndex
    	tags["pool"] = er.poolIndex
    	tags["merrs"] = joinErrs(errs)
    	tags["derrs"] = dataErrsByPart
    	if m.IsValid() {
    		tags["size"] = m.Size
    		tags["mtime"] = m.ModTime.Format(http.TimeFormat)
    		tags["data"] = m.Erasure.DataBlocks
    		tags["parity"] = m.Erasure.ParityBlocks
    	} else {
    		tags["invalid-meta"] = true
    		tags["data"] = er.setDriveCount - er.defaultParityCount
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  5. src/cmd/cgo/gcc.go

    	"unsigned long long":     "ulonglong", // Used by Clang 14; issue 53013.
    }
    
    const signedDelta = 64
    
    // String returns the current type representation. Format arguments
    // are assembled within this method so that any changes in mutable
    // values are taken into account.
    func (tr *TypeRepr) String() string {
    	if len(tr.Repr) == 0 {
    		return ""
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    			fakeFilterRCMap := make(map[string]framework.Code, len(tt.nodeNames))
    			for i, nodeName := range tt.nodeNames {
    				nodeWrapper := st.MakeNode().Capacity(veryLargeRes)
    				// Split node name by '/' to form labels in a format of
    				// {"hostname": tpKeys[0], "zone": tpKeys[1], "region": tpKeys[2]}
    				tpKeys := strings.Split(nodeName, "/")
    				nodeWrapper.Name(tpKeys[0])
    				for i, labelVal := range strings.Split(nodeName, "/") {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/loong64/asm.go

    	return false
    }
    
    func opset(a, b0 obj.As) {
    	oprange[a&obj.AMask] = oprange[b0]
    }
    
    func buildop(ctxt *obj.Link) {
    	if ctxt.DiagFunc == nil {
    		ctxt.DiagFunc = func(format string, args ...interface{}) {
    			log.Printf(format, args...)
    		}
    	}
    
    	if oprange[AOR&obj.AMask] != nil {
    		// Already initialized; stop now.
    		// This happens in the cmd/asm tests,
    		// each of which re-initializes the arch.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                        problems,
                        severity,
                        version,
                        fieldName,
                        sourceHint,
                        "uses an unsupported snapshot version format, should be '*-SNAPSHOT' instead.",
                        tracker);
                return false;
            }
    
            return true;
        }
    
        private boolean validate20PluginVersion(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/test.go

    	CustomFlags: true,
    	UsageLine:   testUsage,
    	Short:       "test packages",
    	Long: `
    'Go test' automates testing the packages named by the import paths.
    It prints a summary of the test results in the format:
    
    	ok   archive/tar   0.011s
    	FAIL archive/zip   0.022s
    	ok   compress/gzip 0.033s
    	...
    
    followed by detailed output for each failed package.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_messages.go

    		m.certificateAuthorities = append(m.certificateAuthorities, cas[:caLen])
    		cas = cas[caLen:]
    	}
    
    	return len(data) == 0
    }
    
    type certificateVerifyMsg struct {
    	hasSignatureAlgorithm bool // format change introduced in TLS 1.2
    	signatureAlgorithm    SignatureScheme
    	signature             []byte
    }
    
    func (m *certificateVerifyMsg) marshal() ([]byte, error) {
    	var b cryptobyte.Builder
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top