Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,451 for generations (0.33 sec)

  1. platforms/documentation/docs/src/snippets/workerApi/md5ProcessIsolation/tests/md5Task.out

    > Task :md5
    Generating MD5 for einstein.txt...
    Generating MD5 for feynman.txt...
    Generating MD5 for hawking.txt...
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 170 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/workerApi/md5ProcessIsolation/tests/md5Task2.out

    > Task :md5
    Generating MD5 for einstein.txt...
    Generating MD5 for feynman.txt...
    Generating MD5 for hawking.txt...
    
    BUILD SUCCESSFUL in 1s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 170 bytes
    - Viewed (0)
  3. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/SourceGeneratingBuildGenerator.java

        private final ProjectGenerator descriptor;
        private final List<? extends BuildContentGenerator> generators;
    
        public SourceGeneratingBuildGenerator(ProjectGenerator projectGenerator, List<? extends BuildContentGenerator> generators) {
            super(projectGenerator, generators);
            this.generators = generators;
            this.descriptor = projectGenerator;
        }
    
        @Override
        public String getId() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 19:14:25 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. pilot/pkg/status/resourcelock.go

    			cfg := wp.get(target)
    			if cfg != nil {
    				// Check that generation matches
    				if strconv.FormatInt(cfg.Generation, 10) == target.Generation {
    					x, err := GetOGProvider(cfg.Status)
    					if err == nil {
    						// Not all controllers user generation, so we can ignore errors
    						x.SetObservedGeneration(cfg.Generation)
    					}
    					for c, i := range perControllerWork {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 04 03:39:42 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. security/pkg/pki/util/generate_csr.go

    			default:
    				curve = elliptic.P256()
    			}
    			priv, err = ecdsa.GenerateKey(curve, rand.Reader)
    			if err != nil {
    				return nil, nil, fmt.Errorf("EC key generation failed (%v)", err)
    			}
    		default:
    			return nil, nil, errors.New("csr cert generation fails due to unsupported EC signature algorithm")
    		}
    	} else {
    		if options.RSAKeySize < minimumRsaKeySize {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 06 12:48:53 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. pkg/apis/authentication/v1/conversion.go

    )
    
    // Convert_v1_UserInfo_To_authentication_UserInfo is defined outside the autogenerated file for use by other API packages
    // This is needed because it is referenced from other APIs, but is invisible at code-generation time because of the build tags.
    func Convert_v1_UserInfo_To_authentication_UserInfo(in *v1.UserInfo, out *authentication.UserInfo, s conversion.Scope) error {
    	return autoConvert_v1_UserInfo_To_authentication_UserInfo(in, out, s)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:46:42 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. src/internal/trace/testdata/testprog/wait-on-pipe.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Tests a goroutine sitting blocked in a syscall for
    // an entire generation. This is a regression test for
    // #65196.
    
    //go:build ignore
    
    package main
    
    import (
    	"log"
    	"os"
    	"runtime/trace"
    	"syscall"
    	"time"
    )
    
    func main() {
    	// Create a pipe to block on.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. pkg/apis/admissionregistration/v1/conversion.go

    )
    
    // Convert_admissionregistration_RuleWithOperations_To_v1_RuleWithOperations is an autogenerated conversion function.
    // This is needed because it is referenced from other APIs, but is invisible at code-generation time because of the build tags.
    func Convert_admissionregistration_RuleWithOperations_To_v1_RuleWithOperations(in *admissionregistration.RuleWithOperations, out *v1.RuleWithOperations, s conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:46:42 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. platforms/software/security/src/testFixtures/groovy/org/gradle/security/fixtures/SimpleKeyRing.groovy

        }
    
        File sign(File toSign, Map<PGPSecretKey, String> additionalKeys) {
            List<PGPSignatureGenerator> generators = []
            generators << createGenerator(secretKey, password)
            additionalKeys.each { secretKey, password ->
                generators << createGenerator(secretKey, password)
            }
            toSign.withInputStream {
                def buffer = new byte[1024]
                int len
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/value/metrics.go

    		&metrics.HistogramOpts{
    			Namespace:      namespace,
    			Subsystem:      subsystem,
    			Name:           "data_key_generation_duration_seconds",
    			Help:           "Latencies in seconds of data encryption key(DEK) generation operations.",
    			Buckets:        metrics.ExponentialBuckets(5e-6, 2, 14),
    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    
    	dataKeyGenerationFailuresTotal = metrics.NewCounter(
    		&metrics.CounterOpts{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 22:44:02 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top