Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,198 for repeated (0.18 sec)

  1. src/crypto/hmac/hmac.go

    // key is zero padded to the block size of the hash function
    // ipad = 0x36 byte repeated for key length
    // opad = 0x5c byte repeated for key length
    // hmac = H([key ^ opad] H([key ^ ipad] text))
    
    // marshalable is the combination of encoding.BinaryMarshaler and
    // encoding.BinaryUnmarshaler. Their method definitions are repeated here to
    // avoid a dependency on the encoding package.
    type marshalable interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/java-feature-variant/producer-separate-sourceset/tests/build.out

         +--- org.mongodb:bson:3.9.1
         \--- org.mongodb:mongodb-driver-core:3.9.1
              \--- org.mongodb:bson:3.9.1
    
    (*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation.
    
    A web-based, searchable dependency report is available by adding the --scan option.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 784 bytes
    - Viewed (0)
  3. operator/pkg/validate/common.go

    // production optional.
    func optional(res ...*regexp.Regexp) *regexp.Regexp {
    	return match(group(expression(res...)).String() + `?`)
    }
    
    // repeated wraps the regexp in a non-capturing group to get one or more
    // matches.
    func repeated(res ...*regexp.Regexp) *regexp.Regexp {
    	return match(group(expression(res...)).String() + `+`)
    }
    
    // group wraps the regexp in a non-capturing group.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/node/v1alpha1/generated.proto

      // be rejected in admission.
      // +optional
      // +mapType=atomic
      map<string, string> nodeSelector = 1;
    
      // tolerations are appended (excluding duplicates) to pods running with this
      // RuntimeClass during admission, effectively unioning the set of nodes
      // tolerated by the pod and the RuntimeClass.
      // +optional
      // +listType=atomic
      repeated k8s.io.api.core.v1.Toleration tolerations = 2;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. src/go/scanner/example_test.go

    	file := fset.AddFile("", fset.Base(), len(src)) // register input "file"
    	s.Init(file, src, nil /* no error handler */, scanner.ScanComments)
    
    	// Repeated calls to Scan yield the token sequence found in the input.
    	for {
    		pos, tok, lit := s.Scan()
    		if tok == token.EOF {
    			break
    		}
    		fmt.Printf("%s\t%s\t%q\n", fset.Position(pos), tok, lit)
    	}
    
    	// output:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 19:47:49 UTC 2022
    - 1K bytes
    - Viewed (0)
  6. pkg/apis/authentication/types.go

    	// It can be repeated multiplied times for multiple groups.
    	ImpersonateGroupHeader = "Impersonate-Group"
    
    	// ImpersonateUserExtraHeaderPrefix is a prefix for any header used to impersonate an entry in the
    	// extra map[string][]string for user.Info.  The key will be every after the prefix.
    	// It can be repeated multiplied times for multiple map keys and the same key can be repeated multiple
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:33:37 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/certificates/v1/generated.proto

    message CertificateSigningRequestList {
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // items is a collection of CertificateSigningRequest objects
      repeated CertificateSigningRequest items = 2;
    }
    
    // CertificateSigningRequestSpec contains the certificate request.
    message CertificateSigningRequestSpec {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. test/fixedbugs/issue13415.go

    // Verify that error message regarding := appears on
    // correct line (and not on the line of the 2nd :=).
    
    package p
    
    func f() {
        select {
        case x, x := <-func() chan int { // ERROR "x repeated on left side of :=|redefinition|declared and not used"
                c := make(chan int)
                return c
        }():
        }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 21:10:19 UTC 2022
    - 500 bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/node/v1/generated.proto

      // be rejected in admission.
      // +optional
      // +mapType=atomic
      map<string, string> nodeSelector = 1;
    
      // tolerations are appended (excluding duplicates) to pods running with this
      // RuntimeClass during admission, effectively unioning the set of nodes
      // tolerated by the pod and the RuntimeClass.
      // +optional
      // +listType=atomic
      repeated k8s.io.api.core.v1.Toleration tolerations = 2;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/batch/v1/generated.proto

    // been accounted in Job status counters.
    message UncountedTerminatedPods {
      // succeeded holds UIDs of succeeded Pods.
      // +listType=set
      // +optional
      repeated string succeeded = 1;
    
      // failed holds UIDs of failed Pods.
      // +listType=set
      // +optional
      repeated string failed = 2;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
Back to top