Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,215 for gold (0.13 sec)

  1. pkg/controller/volume/persistentvolume/provision_test.go

    var modeImmediate = storage.VolumeBindingImmediate
    var storageClasses = []*storage.StorageClass{
    	{
    		TypeMeta: metav1.TypeMeta{
    			Kind: "StorageClass",
    		},
    
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "gold",
    		},
    
    		Provisioner:       mockPluginName,
    		Parameters:        class1Parameters,
    		ReclaimPolicy:     &deleteReclaimPolicy,
    		VolumeBindingMode: &modeImmediate,
    	},
    	{
    		TypeMeta: metav1.TypeMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  2. src/crypto/sha256/sha256_test.go

    }
    
    func TestGoldenMarshal(t *testing.T) {
    	tests := []struct {
    		name    string
    		newHash func() hash.Hash
    		gold    []sha256Test
    	}{
    		{"256", New, golden},
    		{"224", New224, golden224},
    	}
    
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			for _, g := range tt.gold {
    				h := tt.newHash()
    				h2 := tt.newHash()
    
    				io.WriteString(h, g.in[:len(g.in)/2])
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:21:42 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  3. src/encoding/xml/marshal_test.go

    	{Value: atomValue, ExpectXML: atomXML},
    	{Value: &Generic[int]{1}, ExpectXML: `<Generic><X>1</X></Generic>`},
    	{
    		Value: &Ship{
    			Name:  "Heart of Gold",
    			Pilot: "Computer",
    			Age:   1,
    			Drive: ImprobabilityDrive,
    			Passenger: []*Passenger{
    				{
    					Name:   []string{"Zaphod", "Beeblebrox"},
    					Weight: 7.25,
    				},
    				{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  4. docs/ja/docs/index.md

    <small>\* 本番アプリケーションを構築している開発チームのテストによる見積もり。</small>
    
    ## Sponsors
    
    <!-- sponsors -->
    
    {% if sponsors %}
    {% for sponsor in sponsors.gold -%}
    <a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.title }}"><img src="{{ sponsor.img }}" style="border-radius:15px"></a>
    {% endfor -%}
    {%- for sponsor in sponsors.silver -%}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 21K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/framework_test.go

    	return ctrl.syncVolume(context.TODO(), test.initialVolumes[0])
    }
    
    type operationType string
    
    const operationDelete = "Delete"
    const operationRecycle = "Recycle"
    
    var (
    	classGold                    = "gold"
    	classSilver                  = "silver"
    	classCopper                  = "copper"
    	classEmpty                   = ""
    	classNonExisting             = "non-existing"
    	classExternal                = "external"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 09:54:00 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  6. pkg/controller/volume/persistentvolume/index_test.go

    				VolumeMode:       &fs,
    			},
    			Status: v1.PersistentVolumeStatus{
    				Phase: v1.VolumeAvailable,
    			},
    		},
    		{
    			ObjectMeta: metav1.ObjectMeta{
    				UID:  "gce-pd-gold",
    				Name: "gce0025",
    			},
    			Spec: v1.PersistentVolumeSpec{
    				Capacity: v1.ResourceList{
    					v1.ResourceName(v1.ResourceStorage): resource.MustParse("50G"),
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 44K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loadelf/ldelf.go

    // find the one we are looking for. This format is slightly documented in "ELF
    // for the ARM Architecture" but mostly this is derived from reading the source
    // to gold and readelf.
    func parseArmAttributes(e binary.ByteOrder, data []byte) (found bool, ehdrFlags uint32, err error) {
    	found = false
    	if data[0] != 'A' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/ppc64/obj9.go

    		// the TOC save that the PLT stub does (put a R_PPC64_TOCSAVE
    		// relocation on the nop after the call to morestack) but at the time
    		// of writing it is not supported at all by gold and my attempt to
    		// use it with ld.bfd caused an internal linker error. So this hack
    		// seems preferable.
    
    		// MOVD $runtime.morestack(SB), R12
    		p = obj.Appendp(p, c.newprog)
    		p.As = AMOVD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  9. src/encoding/json/fold.go

    		}
    		// Handle multi-byte Unicode.
    		r, n := utf8.DecodeRune(in[i:])
    		out = utf8.AppendRune(out, foldRune(r))
    		i += n
    	}
    	return out
    }
    
    // foldRune is returns the smallest rune for all runes in the same fold set.
    func foldRune(r rune) rune {
    	for {
    		r2 := unicode.SimpleFold(r)
    		if r2 <= r {
    			return r2
    		}
    		r = r2
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 27 17:37:27 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/tac/tests/fold-constants-to-subgraph.mlir

    // Test for partial folding: only fold i32 constants.
    // RUN: tac-opt-all-backends -tfl-fold-constants-to-subgraph='fold-all-constants=false' %s -split-input-file -verify-diagnostics | FileCheck --check-prefix=PARTIAL %s
    
    // Test for fold all constants.
    // RUN: tac-opt-all-backends -tfl-fold-constants-to-subgraph='fold-all-constants=true' %s -split-input-file -verify-diagnostics | FileCheck --check-prefix=ALL %s
    
    module {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top