Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,546 for silver (0.12 sec)

  1. docs/yo/docs/index.md

    {% 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 -%}
    <a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.title }}"><img src="{{ sponsor.img }}" style="border-radius:15px"></a>
    {% endfor %}
    {% endif %}
    
    <!-- /sponsors -->
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/provision_test.go

    		},
    		{
    			// Provision success - first save of a PV to API server fails (API
    			// server has written the object to etcd, but crashed before sending
    			// 200 OK response to the controller). Controller retries and the
    			// second save of the PV returns "AlreadyExists" because the PV
    			// object already is in the API server.
    			//
    			"11-19 - provisioned volume saved but API server crashed",
    			novolumes,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  3. pkg/controller/volume/persistentvolume/framework_test.go

    }
    
    type operationType string
    
    const operationDelete = "Delete"
    const operationRecycle = "Recycle"
    
    var (
    	classGold                    = "gold"
    	classSilver                  = "silver"
    	classCopper                  = "copper"
    	classEmpty                   = ""
    	classNonExisting             = "non-existing"
    	classExternal                = "external"
    	classExternalWait            = "external-wait"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 09:54:00 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  4. docs/ja/docs/index.md

    {% 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 -%}
    <a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.title }}"><img src="{{ sponsor.img }}" style="border-radius:15px"></a>
    {% endfor %}
    {% endif %}
    
    <!-- /sponsors -->
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 21K bytes
    - Viewed (0)
  5. src/go/ast/filter.go

    	if len(lit.Elts) < n {
    		lit.Incomplete = true
    	}
    }
    
    func filterExprList(list []Expr, filter Filter, export bool) []Expr {
    	j := 0
    	for _, exp := range list {
    		switch x := exp.(type) {
    		case *CompositeLit:
    			filterCompositeLit(x, filter, export)
    		case *KeyValueExpr:
    			if x, ok := x.Key.(*Ident); ok && !filter(x.Name) {
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. src/go/doc/filter.go

    		}
    		if n > 0 {
    			a[w] = td
    			w++
    		}
    	}
    	return a[0:w]
    }
    
    // Filter eliminates documentation for names that don't pass through the filter f.
    // TODO(gri): Recognize "Type.Method" as a name.
    func (p *Package) Filter(f Filter) {
    	p.Consts = filterValues(p.Consts, f)
    	p.Vars = filterValues(p.Vars, f)
    	p.Types = filterTypes(p.Types, f)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  7. tests/integration/telemetry/api/testdata/accesslog/filter.yaml

    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: logs
    spec:
      accessLogging:
        - providers:
            - name: envoy
          filter:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 19 17:39:03 UTC 2022
    - 208 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter.go

    	}
    	return NewFilter(compilationResults)
    }
    
    // filter implements the Filter interface
    type filter struct {
    	compilationResults []CompilationResult
    }
    
    func NewFilter(compilationResults []CompilationResult) Filter {
    	return &filter{
    		compilationResults,
    	}
    }
    
    func convertObjectToUnstructured(obj interface{}) (*unstructured.Unstructured, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 14:46:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  9. internal/bucket/lifecycle/filter.go

    package lifecycle
    
    import (
    	"encoding/xml"
    	"io"
    
    	"github.com/minio/minio-go/v7/pkg/tags"
    )
    
    var errInvalidFilter = Errorf("Filter must have exactly one of Prefix, Tag, or And specified")
    
    // Filter - a filter for a lifecycle configuration Rule.
    type Filter struct {
    	XMLName xml.Name `xml:"Filter"`
    	set     bool
    
    	Prefix Prefix
    
    	ObjectSizeGreaterThan int64 `xml:"ObjectSizeGreaterThan,omitempty"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 27 00:01:20 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. internal/bucket/replication/filter.go

    )
    
    var errInvalidFilter = Errorf("Filter must have exactly one of Prefix, Tag, or And specified")
    
    // Filter - a filter for a replication configuration Rule.
    type Filter struct {
    	XMLName xml.Name `xml:"Filter" json:"Filter"`
    	Prefix  string
    	And     And
    	Tag     Tag
    
    	// Caching tags, only once
    	cachedTags map[string]string
    }
    
    // IsEmpty returns true if filter is not set
    func (f Filter) IsEmpty() bool {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Sep 28 18:25:46 UTC 2022
    - 3.5K bytes
    - Viewed (0)
Back to top