Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 913 for Usages (0.11 sec)

  1. staging/src/k8s.io/api/certificates/v1beta1/generated.pb.go

    			dAtA[i] = 0xa
    			i = encodeVarintGenerated(dAtA, i, uint64(baseI-i))
    			i--
    			dAtA[i] = 0x32
    		}
    	}
    	if len(m.Usages) > 0 {
    		for iNdEx := len(m.Usages) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.Usages[iNdEx])
    			copy(dAtA[i:], m.Usages[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.Usages[iNdEx])))
    			i--
    			dAtA[i] = 0x2a
    		}
    	}
    	if len(m.Groups) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. doc/next/5-toolchain.md

    are not marked with `//go:linkname` on their definitions.
    Similarly, the linker disallows references to such symbols from assembly
    code.
    For backward compatibility, existing usages of `//go:linkname` found in
    a large open-source code corpus remain supported.
    Any new references to standard library internal symbols will be disallowed.
    
    A linker command line flag `-checklinkname=0` can be used to disable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/options/constant.go

    	TokenStr = "token"
    
    	// TokenTTL flag sets the time to live for token
    	TokenTTL = "token-ttl"
    
    	// TokenUsages flag sets the usages of the token
    	TokenUsages = "usages"
    
    	// TokenGroups flag sets the authentication groups of the token
    	TokenGroups = "groups"
    
    	// TokenDescription flag sets the description of the token
    	TokenDescription = "description"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/certificates/v1/generated.pb.go

    			dAtA[i] = 0xa
    			i = encodeVarintGenerated(dAtA, i, uint64(baseI-i))
    			i--
    			dAtA[i] = 0x32
    		}
    	}
    	if len(m.Usages) > 0 {
    		for iNdEx := len(m.Usages) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.Usages[iNdEx])
    			copy(dAtA[i:], m.Usages[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.Usages[iNdEx])))
    			i--
    			dAtA[i] = 0x2a
    		}
    	}
    	if len(m.Groups) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/DeprecatedConfigurationUsageIntegrationTest.groovy

        }
    
        private String buildProperNames(List<ProperMethodUsage> usages) {
            usages.collect { ProperMethodUsage.buildProperName(it) }.join(", ")
        }
    
        private String buildAllowedUsages(String role) {
            switch (role) {
                case 'dependencyScope':
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 02:32:37 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/certificates/v1beta1/generated.proto

      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // spec contains the certificate request, and is immutable after creation.
      // Only the request, signerName, expirationSeconds, and usages fields can be set on creation.
      // Other fields are derived by Kubernetes and cannot be modified by users.
      optional CertificateSigningRequestSpec spec = 2;
    
      // Derived information about the request.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. cmd/data-usage.go

    // loadPrefixUsageFromBackend returns prefix usages found in passed buckets
    //
    //	e.g.:  /testbucket/prefix => 355601334
    func loadPrefixUsageFromBackend(ctx context.Context, objAPI ObjectLayer, bucket string) (map[string]uint64, error) {
    	z, ok := objAPI.(*erasureServerPools)
    	if !ok {
    		// Prefix usage is empty
    		return map[string]uint64{}, nil
    	}
    
    	cache := dataUsageCache{}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 00:51:34 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. src/crypto/x509/verify.go

    	usages := make([]ExtKeyUsage, len(keyUsages))
    	copy(usages, keyUsages)
    
    	if len(chain) == 0 {
    		return false
    	}
    
    	usagesRemaining := len(usages)
    
    	// We walk down the list and cross out any usages that aren't supported
    	// by each certificate. If we cross out all the usages, then the chain
    	// is unacceptable.
    
    NextCert:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  9. security/pkg/pki/ra/k8s_ra.go

    		certSigner = certSignerDomain + "/" + certSigner
    	} else {
    		certSigner = r.raOpts.CaSigner
    	}
    	usages := []cert.KeyUsage{
    		cert.UsageDigitalSignature,
    		cert.UsageKeyEncipherment,
    		cert.UsageServerAuth,
    		cert.UsageClientAuth,
    	}
    	certChain, _, err := chiron.SignCSRK8s(r.csrInterface, csrPEM, certSigner, usages, "", caCertFile, true, false, requestedLifetime)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 02 14:34:38 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  10. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneAnnotationsResolver.kt

    import org.jetbrains.kotlin.name.ClassId
    import org.jetbrains.kotlin.name.FqName
    import org.jetbrains.kotlin.psi.*
    import org.jetbrains.kotlin.utils.filterIsInstanceAnd
    
    /**
     * This implementation works only for FQN annotations usages (`@foo.Bar` instead of `@Bar`).
     * It does not perform the full resolve of the annotation call, but it checks whether the annotation
     * with such FQN is present in the [scope] with [KotlinDeclarationProvider].
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top