Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 646 for generations (0.19 sec)

  1. security/pkg/pki/util/generate_cert.go

    				curve = elliptic.P256()
    			}
    
    			ecPriv, err = ecdsa.GenerateKey(curve, rand.Reader)
    			if err != nil {
    				return nil, nil, fmt.Errorf("cert generation fails at EC key generation (%v)", err)
    			}
    
    		default:
    			return nil, nil, errors.New("cert generation fails due to unsupported EC signature algorithm")
    		}
    		return genCert(options, ecPriv, &ecPriv.PublicKey)
    	}
    
    	if options.RSAKeySize < minimumRsaKeySize {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 02 14:34:38 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/generate/generate.go

    	for i, word := range words {
    		words[i] = os.Expand(word, g.expandVar)
    	}
    	return words
    }
    
    var stop = fmt.Errorf("error in generation")
    
    // errorf logs an error message prefixed with the file and line number.
    // It then exits the program (with exit status 1) because generation stops
    // at the first error.
    func (g *Generator) errorf(format string, args ...any) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. platforms/software/signing/src/main/java/org/gradle/plugins/signing/Sign.java

                    ? computeCachedSignatures()
                    : generators.get()
            );
        }
    
        /**
         * Returns signature generators mapped by their key with duplicated and non-existing inputs removed.
         */
        private static Map<String, Signature.Generator> sanitize(Collection<Signature.Generator> generators) {
            return generators.stream()
                .filter(signature -> signature.getToSign().exists())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  4. platforms/software/signing/src/main/java/org/gradle/plugins/signing/SigningExtension.java

        /**
         * Whether this task should fail if no signatory or signature type are configured at generation time.
         *
         * @since 4.0
         */
        public void setRequired(boolean required) {
            this.required = required;
        }
    
        /**
         * Whether this task should fail if no signatory or signature type are configured at generation time.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  5. architecture/networking/pilot.md

    There are a few ways to prevent these:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  6. internal/kms/kms.go

    	// decrypted.
    	Ciphertext []byte
    
    	// AssociatedData is the crypto. associated data.
    	// It must match the data used during encryption
    	// or data key generation.
    	AssociatedData Context
    }
    
    // MACRequest is a structure containing fields
    // and options for generating message authentication
    // codes (MAC).
    type MACRequest struct {
    	// Name is the name of the master key used decrypt
    	// the ciphertext.
    	Name string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. docs/en/docs/advanced/generate-clients.md

    ## Client and SDK Generators - Sponsor
    
    There are also some **company-backed** Client and SDK generators based on OpenAPI (FastAPI), in some cases they can offer you **additional features** on top of high-quality generated SDKs/clients.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

            thumbnailTaskQueue = new LinkedBlockingQueue<>(thumbnailTaskQueueSize);
            generating = !Constants.TRUE.equalsIgnoreCase(System.getProperty("fess.thumbnail.process"));
            thumbnailQueueThread = new Thread((Runnable) () -> {
                final List<Tuple3<String, String, String>> taskList = new ArrayList<>();
                while (generating) {
                    try {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  9. src/cmd/trace/gen.go

    	ProcRange(ctx *traceContext, ev *trace.Event)
    	ProcTransition(ctx *traceContext, ev *trace.Event)
    
    	// User annotations.
    	Log(ctx *traceContext, ev *trace.Event)
    
    	// Finish indicates the end of the trace and finalizes generation.
    	Finish(ctx *traceContext)
    }
    
    // runGenerator produces a trace into ctx by running the generator over the parsed trace.
    func runGenerator(ctx *traceContext, g generator, parsed *parsedTrace, opts *genOpts) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. pkg/registry/batch/cronjob/strategy_test.go

    		t.Errorf("CronJob does not allow setting status on create")
    	}
    	if cronJob.Generation != 1 {
    		t.Errorf("expected Generation=1, got %d", cronJob.Generation)
    	}
    	errs := Strategy.Validate(ctx, cronJob)
    	if len(errs) != 0 {
    		t.Errorf("Unexpected error validating %v", errs)
    	}
    	now := metav1.Now()
    
    	// ensure we do not change generation for non-spec updates
    	updatedLabelCronJob := cronJob.DeepCopy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top