Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 551 - 560 of 1,615 for var0 (0.05 seconds)

  1. okhttp/src/jvmTest/kotlin/okhttp3/internal/publicsuffix/PublicSuffixListGenerator.kt

          val sortedRules: SortedSet<ByteString> = TreeSet()
          val sortedExceptionRules: SortedSet<ByteString> = TreeSet()
          var totalRuleBytes = 0
          var totalExceptionRuleBytes = 0
    
          fileSystem.source(publicSuffixListDotDat).buffer().use { source ->
            while (!source.exhausted()) {
              var rule: ByteString = source.readUtf8LineStrict().toRule() ?: continue
    
              if (rule.startsWith(EXCEPTION_RULE_MARKER)) {
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Aug 06 05:33:11 GMT 2025
    - 6.1K bytes
    - Click Count (0)
  2. cmd/http-tracer_test.go

    	// while background processes are reading the stats for persistence.
    	const numWriters = 100 // Simulate many HTTP request handlers.
    	const numReaders = 50  // Simulate background stats readers.
    	const opsPerGoroutine = 100
    
    	var wg sync.WaitGroup
    	for i := range numWriters {
    		wg.Add(1)
    		go func(writerID int) {
    			defer wg.Done()
    			for j := 0; j < opsPerGoroutine; j++ {
    				switch j % 4 {
    				case 0:
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 5.3K bytes
    - Click Count (0)
  3. internal/config/crypto.go

    	}
    	nonce := make([]byte, stream.NonceSize())
    	if _, err := rand.Read(nonce); err != nil {
    		return nil, err
    	}
    
    	const (
    		MaxMetadataSize = 1 << 20 // max. size of the metadata
    		Version         = 1
    	)
    	var (
    		header [5]byte
    		buffer bytes.Buffer
    	)
    	json := jsoniter.ConfigCompatibleWithStandardLibrary
    	metadata, err := json.Marshal(encryptedObject{
    		KeyID:     key.KeyID,
    		KMSKey:    key.Ciphertext,
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri May 16 14:27:42 GMT 2025
    - 4.7K bytes
    - Click Count (0)
  4. internal/s3select/csv/args.go

    		}
    
    		if se, ok := t.(xml.StartElement); ok {
    			tagName := se.Name.Local
    			switch tagName {
    			case "AllowQuotedRecordDelimiter":
    				var b bool
    				if err = d.DecodeElement(&b, &se); err != nil {
    					return err
    				}
    				args.AllowQuotedRecordDelimiter = b
    			default:
    				var s string
    				if err = d.DecodeElement(&s, &se); err != nil {
    					return err
    				}
    				switch tagName {
    				case "FileHeaderInfo":
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Aug 20 18:31:45 GMT 2024
    - 5.7K bytes
    - Click Count (0)
  5. doc/go_spec.html

    </p>
    
    <pre class="ebnf">
    VarDecl = "var" ( VarSpec | "(" { VarSpec ";" } ")" ) .
    VarSpec = IdentifierList ( Type [ "=" ExpressionList ] | "=" ExpressionList ) .
    </pre>
    
    <pre>
    var i int
    var U, V, W float64
    var k = 0
    var x, y float32 = -1, -2
    var (
    	i       int
    	u, v, s = 2.0, 3.0, "bar"
    )
    var re, im = complexSqrt(-1)
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Wed Apr 01 23:39:18 GMT 2026
    - 287.8K bytes
    - Click Count (1)
  6. api/go1.25.txt

    pkg testing/synctest, func Test(*testing.T, func(*testing.T)) #67434
    pkg testing/synctest, func Wait() #67434
    pkg unicode, var CategoryAliases map[string]string #70780
    pkg unicode, var Cn *RangeTable #70780
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Mon Jun 02 16:09:57 GMT 2025
    - 6.8K bytes
    - Click Count (0)
  7. cmd/erasure-server-pool-rebalance.go

    func (z *erasureServerPools) rebalanceBucket(ctx context.Context, bucket string, poolIdx int) (err error) {
    	ctx = logger.SetReqInfo(ctx, &logger.ReqInfo{})
    
    	var vc *versioning.Versioning
    	var lc *lifecycle.Lifecycle
    	var lr objectlock.Retention
    	var rcfg *replication.Config
    	if bucket != minioMetaBucket {
    		vc, err = globalBucketVersioningSys.Get(bucket)
    		if err != nil {
    			return err
    		}
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 28.7K bytes
    - Click Count (0)
  8. cmd/xl-storage.go

    		}
    	}
    
    	srcFilePath := pathutil.Join(srcVolumeDir, pathJoin(srcPath, xlStorageFormatFile))
    	dstFilePath := pathutil.Join(dstVolumeDir, pathJoin(dstPath, xlStorageFormatFile))
    
    	var srcDataPath string
    	var dstDataPath string
    	var dataDir string
    	if !fi.IsRemote() {
    		dataDir = retainSlash(fi.DataDir)
    	}
    	if dataDir != "" {
    		srcDataPath = retainSlash(pathJoin(srcVolumeDir, srcPath, dataDir))
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 91.7K bytes
    - Click Count (0)
  9. .ci/jobs.t/elastic+elasticsearch+intake+multijob+rest-compat.yml

    ---
    jjbb-template: generic-gradle-unix.yml
    vars:
      - job-name: elastic+elasticsearch+%BRANCH%+intake+multijob+rest-compat
      - job-display-name: "elastic / elasticsearch # %BRANCH% - intake rest compatibility"
      - job-description: Elasticsearch %BRANCH% branch intake REST compatibility checks.
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu May 06 21:46:09 GMT 2021
    - 449 bytes
    - Click Count (0)
  10. .ci/jobs.t/elastic+elasticsearch+periodic+java-matrix.yml

    ---
    jjbb-template: matrix-gradle-unix.yml
    vars:
      - job-name: elastic+elasticsearch+%BRANCH%+periodic+java-matrix
      - job-display-name: "elastic / elasticsearch # %BRANCH% - java compatibility matrix"
      - job-description: "Testing of the Elasticsearch %BRANCH% branch java compatibility matrix.\n"
      - matrix-yaml-file: ".ci/matrix-runtime-javas.yml"
      - matrix-variable: ES_RUNTIME_JAVA
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu May 06 21:46:09 GMT 2021
    - 439 bytes
    - Click Count (0)
Back to Top