Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 118 for cipher (0.34 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/config.go

    	// Values are from tls package constants (https://golang.org/pkg/crypto/tls/#pkg-constants).
    	MinTLSVersion uint16
    
    	// CipherSuites optionally overrides the list of allowed cipher suites for the server.
    	// Values are from tls package constants (https://golang.org/pkg/crypto/tls/#pkg-constants).
    	CipherSuites []uint16
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  2. src/crypto/aes/gcm_ppc64x.s

    	XXLOR VS4, VS4, V26; \
    	XXLOR VS5, VS5, V27; \
    	VCIPHER vin, V23, vin; \
    	VCIPHER vin, V24, vin; \
    	VCIPHER vin, V25, vin; \
    	VCIPHER vin, V26, vin; \
    	VCIPHER vin, V27, vin; \
    	XXLOR VS6, VS6, V23; \
    	XXLOR VS7, VS7, V24; \
    	XXLOR VS8, VS8, V25; \
    	XXLOR VS9, VS9, V26; \
    	VCIPHER vin, V23, vin; \
    	VCIPHER vin, V24, vin; \
    	VCIPHER vin, V25, vin; \
    	VCIPHER	vin, V26, vin
    
    // Encrypt 1 value (vin) with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_test.go

    }
    
    func TestCreateWithKeyExist(t *testing.T) {
    	ctx, cacher, terminate := testSetup(t)
    	t.Cleanup(terminate)
    	storagetesting.RunTestCreateWithKeyExist(ctx, t, cacher)
    }
    
    func TestGet(t *testing.T) {
    	ctx, cacher, terminate := testSetup(t)
    	t.Cleanup(terminate)
    	storagetesting.RunTestGet(ctx, t, cacher)
    }
    
    func TestUnconditionalDelete(t *testing.T) {
    	ctx, cacher, terminate := testSetup(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 17K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueState.java

            private final Function<S, S> copier;
            private boolean explicitValue;
            private boolean finalizeOnNextGet;
            private boolean disallowChanges;
            private boolean disallowUnsafeRead;
            private S convention;
    
            public NonFinalizedValue(PropertyHost host, Function<S, S> copier) {
                this.host = host;
                this.copier = copier;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. pkg/api/v1/persistentvolume/util_test.go

    		{Spec: corev1.PersistentVolumeSpec{
    			PersistentVolumeSource: corev1.PersistentVolumeSource{
    				Cinder: &corev1.CinderPersistentVolumeSource{
    					SecretRef: &corev1.SecretReference{
    						Name:      "Spec.PersistentVolumeSource.Cinder.SecretRef",
    						Namespace: "cinder"}}}}},
    		{Spec: corev1.PersistentVolumeSpec{
    			ClaimRef: &corev1.ObjectReference{Namespace: "claimrefns", Name: "claimrefname"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    // webInterface holds the state needed for serving a browser based interface.
    type webInterface struct {
    	prof         *profile.Profile
    	copier       profileCopier
    	options      *plugin.Options
    	help         map[string]string
    	settingsFile string
    }
    
    func makeWebInterface(p *profile.Profile, copier profileCopier, opt *plugin.Options) (*webInterface, error) {
    	settingsFile, err := settingsFileName()
    	if err != nil {
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher_test.go

    	backingStorage := &dummyStorage{}
    	cacher, _, err := newTestCacher(backingStorage)
    	if err != nil {
    		t.Fatalf("Couldn't create cacher: %v", err)
    	}
    	defer cacher.Stop()
    
    	// Wait until cacher is initialized.
    	if err := cacher.ready.wait(context.Background()); err != nil {
    		t.Fatalf("unexpected error waiting for the cache to be ready")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher.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 (
    	"context"
    	"fmt"
    	"sync"
    	"time"
    
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 12:22:41 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/applyconfigurations/core/v1/persistentvolumespec.go

    	b.ISCSI = value
    	return b
    }
    
    // WithCinder sets the Cinder field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Cinder field is set to the value of the last call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  10. 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)
Back to top