Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 169 for cipher (0.28 sec)

  1. staging/src/k8s.io/api/certificates/v1/types.go

    	//
    	// Valid values are:
    	//  "signing", "digital signature", "content commitment",
    	//  "key encipherment", "key agreement", "data encipherment",
    	//  "cert sign", "crl sign", "encipher only", "decipher only", "any",
    	//  "server auth", "client auth",
    	//  "code signing", "email protection", "s/mime",
    	//  "ipsec end system", "ipsec tunnel", "ipsec user",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_interval.go

    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package cacher
    
    import (
    	"fmt"
    	"sort"
    	"sync"
    
    	"k8s.io/apimachinery/pkg/fields"
    	"k8s.io/apimachinery/pkg/labels"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. tests/integration/pilot/testdata/gateway-api-crd.yaml

                      For example, `"*.foo.example.com"` takes precedence over `"*.example.com"`.
                      The precise definition here is that the higher the number of dots in the
                      hostname to the right of the wildcard character, the higher the precedence.
    
    
                      The wildcard character will match any number of characters _and dots_ to
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package testing
    
    import (
    	"context"
    	"fmt"
    	"net/http"
    	"sync"
    	"testing"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"":          "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.",
    	"volumeID":  "volumeID used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. pkg/api/pod/util.go

    				return false
    			}
    		case source.CephFS != nil:
    			if source.CephFS.SecretRef != nil && !visitor(source.CephFS.SecretRef.Name) {
    				return false
    			}
    		case source.Cinder != nil:
    			if source.Cinder.SecretRef != nil && !visitor(source.Cinder.SecretRef.Name) {
    				return false
    			}
    		case source.FlexVolume != nil:
    			if source.FlexVolume.SecretRef != nil && !visitor(source.FlexVolume.SecretRef.Name) {
    				return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_interval_test.go

    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package cacher
    
    import (
    	"errors"
    	"fmt"
    	"reflect"
    	"sync"
    	"testing"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/fields"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    			// To avoid rewriting all tests, we wait for watchcache to initialize.
    			if err := cacher.Wait(context.Background()); err != nil {
    				t.Fatal(err)
    			}
    		}
    		d := destroyFunc
    		s = cacher
    		destroyFunc = func() {
    			cacher.Stop()
    			d()
    		}
    	}
    
    	return destroyFunc, &Store{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/generated.proto

    }
    
    // Represents a cinder volume resource in Openstack.
    // A Cinder volume must exist before mounting to a container.
    // The volume must also be in the same region as the kubelet.
    // Cinder volumes support ownership management and SELinux relabeling.
    message CinderVolumeSource {
      // volumeID used to identify the volume in cinder.
      // More info: https://examples.k8s.io/mysql-cinder-pd/README.md
      optional string volumeID = 1;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types.go

    	FlexVolume *FlexVolumeSource `json:"flexVolume,omitempty" protobuf:"bytes,12,opt,name=flexVolume"`
    	// cinder represents a cinder volume attached and mounted on kubelets host machine.
    	// More info: https://examples.k8s.io/mysql-cinder-pd/README.md
    	// +optional
    	Cinder *CinderVolumeSource `json:"cinder,omitempty" protobuf:"bytes,13,opt,name=cinder"`
    	// cephFS represents a Ceph FS mount on the host that shares a pod's lifetime
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top