Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for withKey (0.22 sec)

  1. src/crypto/internal/boring/rsa.go

    	return cryptRSA(priv.withKey, C.GO_RSA_PKCS1_PADDING, nil, nil, nil, 0, 0, decryptInit, decrypt, ciphertext)
    }
    
    func EncryptRSAPKCS1(pub *PublicKeyRSA, msg []byte) ([]byte, error) {
    	return cryptRSA(pub.withKey, C.GO_RSA_PKCS1_PADDING, nil, nil, nil, 0, 0, encryptInit, encrypt, msg)
    }
    
    func DecryptRSANoPadding(priv *PrivateKeyRSA, ciphertext []byte) ([]byte, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 23:38:03 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1beta1/auditannotation.go

    	return &AuditAnnotationApplyConfiguration{}
    }
    
    // WithKey sets the Key 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 Key field is set to the value of the last call.
    func (b *AuditAnnotationApplyConfiguration) WithKey(value string) *AuditAnnotationApplyConfiguration {
    	b.Key = &value
    	return b
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 20:56:23 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1/auditannotation.go

    	return &AuditAnnotationApplyConfiguration{}
    }
    
    // WithKey sets the Key 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 Key field is set to the value of the last call.
    func (b *AuditAnnotationApplyConfiguration) WithKey(value string) *AuditAnnotationApplyConfiguration {
    	b.Key = &value
    	return b
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1alpha1/auditannotation.go

    	return &AuditAnnotationApplyConfiguration{}
    }
    
    // WithKey sets the Key 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 Key field is set to the value of the last call.
    func (b *AuditAnnotationApplyConfiguration) WithKey(value string) *AuditAnnotationApplyConfiguration {
    	b.Key = &value
    	return b
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 02:51:33 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. maven-di/src/main/java/org/apache/maven/di/impl/Binding.java

            this.scope = scope;
            return this;
        }
    
        public Binding<T> prioritize(int priority) {
            this.priority = priority;
            return this;
        }
    
        public Binding<T> withKey(Key<?> key) {
            this.originalKey = key;
            return this;
        }
    
        public Binding<T> initializeWith(BindingInitializer<T> bindingInitializer) {
            return new Binding<T>(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. platforms/software/resources-s3/src/main/java/org/gradle/internal/resource/transport/aws/s3/S3Client.java

                        UploadPartRequest uploadPartRequest = new UploadPartRequest()
                            .withBucketName(bucketName)
                            .withKey(s3BucketKey)
                            .withUploadId(initResponse.getUploadId())
                            .withPartNumber(partNumber)
                            .withPartSize(partSize)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  7. maven-di/src/main/java/org/apache/maven/di/impl/ReflectionUtils.java

            Priority priority = constructor.getDeclaringClass().getAnnotation(Priority.class);
            if (priority != null) {
                binding = binding.prioritize(priority.value());
            }
    
            return binding.withKey(key);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/DefaultIvyContextManagerTest.groovy

            def ivy
    
            when:
            manager.withIvy(action1)
    
            then:
            1 * action1.execute(_) >> { Ivy param ->
                ivy = param
                manager.withIvy(transformer)
            }
            1 * transformer.transform(_) >> { Ivy param ->
                assert param.is(ivy)
                manager.withIvy(action2)
            }
            1 * action2.execute(_) >> { Ivy param ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/IvyContextualMetaDataParser.java

            return ivyContextManager.withIvy(ivy -> {
                return delegate.parseMetaData(context, resource);
            });
        }
    
        @Override
        public ParseResult<T> parseMetaData(final DescriptorParseContext ivySettings, final File descriptorFile) throws MetaDataParseException {
            return ivyContextManager.withIvy(ivy -> {
                return delegate.parseMetaData(ivySettings, descriptorFile);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    		if continueRV > 0 {
    			withRev = continueRV
    		}
    		return withRev, nil
    	}
    	// Returns 0 if ResourceVersion is not specified.
    	if len(opts.ResourceVersion) == 0 {
    		return withRev, nil
    	}
    	parsedRV, err := s.versioner.ParseResourceVersion(opts.ResourceVersion)
    	if err != nil {
    		return withRev, apierrors.NewBadRequest(fmt.Sprintf("invalid resource version: %v", err))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
Back to top