Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for encodeArg (0.15 sec)

  1. internal/bucket/object/lock/lock.go

    	}
    
    	*rDate = RetentionDate{retDate}
    	return nil
    }
    
    // MarshalXML encodes expiration date if it is non-zero and encodes
    // empty string otherwise
    func (rDate RetentionDate) MarshalXML(e *xml.Encoder, startElement xml.StartElement) error {
    	if rDate.IsZero() {
    		return nil
    	}
    	return e.EncodeElement(amztime.ISO8601Format(rDate.Time), startElement)
    }
    
    // ObjectRetention specified in
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    Because serialized facts may appear within build outputs, the gob encoding
    of a fact must be deterministic, to avoid spurious cache misses in
    build systems that use content-addressable caches.
    The driver makes a single call to the gob encoder for all facts
    exported by a given analysis pass, so that the topology of
    shared data structures referenced by multiple facts is preserved.
    
    The Pass type has functions to import and export facts,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. src/image/gif/writer_test.go

    	// just like decoder.decode.
    	local := append(color.Palette(nil), global...)
    	local[trIdx] = color.RGBA{}
    
    	const testLen = 3 * 256
    	const padded = 7
    	e := new(encoder)
    	if l, err := encodeColorTable(e.globalColorTable[:], global, padded); err != nil || l != testLen {
    		t.Fatalf("Failed to encode global color table: got %d, %v; want nil, %d", l, err, testLen)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. docs/debugging/xl-meta/main.go

    			}
    			fmt.Println("Wrote output to", out)
    		}
    	}
    	return nil
    }
    
    func reconPartial(shards [][]byte, k int, parityOK []bool, splitData [][]byte, startOffset int, offset int, rs reedsolomon.Encoder, shardConfig []byte, splitFilled [][]byte) {
    	// Add parity
    	for i := range shards[k:] {
    		shards[i+k] = nil
    		if parityOK[i+k] {
    			shards[i+k] = splitData[i+k][startOffset:offset]
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
Back to top