Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,701 for generations (0.21 sec)

  1. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/DebugOptions.java

         * <p>For example {@code source,lines,vars} is a valid value.</p>
         *
         * <p>Alternatively setting the value to {@code none} will disable debug information generation.</p>
         *
         * <p>Setting this value to null will reset the property to its default value of only
         * generating line and source debug information.</p>
         */
        public void setDebugLevel(@Nullable String debugLevel) {
            this.debugLevel = debugLevel;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 02:50:50 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. src/cmd/covdata/doc.go

    // Copyright 2022 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.
    
    /*
    Covdata is a program for manipulating and generating reports
    from 2nd-generation coverage testing output files, those produced
    from running applications or integration tests. E.g.
    
    	$ mkdir ./profiledir
    	$ go build -cover -o myapp.exe .
    	$ GOCOVERDIR=./profiledir ./myapp.exe <arguments>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 12:57:25 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildInitializer.java

    import java.util.List;
    import java.util.Optional;
    import java.util.Set;
    
    /**
     * Initializes a Gradle build, either by converting an existing build to Gradle or generating a new Gradle build.
     *
     * <p>This interface currently includes a bunch of methods that are related to build generation and should move to {@link BuildGenerator}.</p>
     */
    public interface BuildInitializer {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 19:14:25 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-application/src/main/java/org/gradle/api/tasks/application/CreateStartScripts.java

     * <p>
     * The task generates separate scripts targeted at Microsoft Windows environments and UNIX-like environments (e.g. Linux, macOS).
     * The actual generation is implemented by the {@link #getWindowsStartScriptGenerator()} and {@link #getUnixStartScriptGenerator()} properties, of type
     * {@link org.gradle.jvm.application.scripts.ScriptGenerator}.
     * <p>
     * Example:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. src/crypto/dsa/dsa_test.go

    	}
    
    	err = GenerateKey(&priv, rand.Reader)
    	if err != nil {
    		t.Errorf("error generating key: %s", err)
    		return
    	}
    
    	testSignAndVerify(t, int(sizes), &priv)
    }
    
    func TestParameterGeneration(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping parameter generation test in short mode")
    	}
    
    	testParameterGeneration(t, L1024N160, 1024, 160)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 15 21:04:43 UTC 2019
    - 4.7K bytes
    - Viewed (0)
  6. platforms/ide/base-ide-plugins/src/main/java/org/gradle/plugins/ide/internal/IdePlugin.java

                    cleanWorker.delete(worker);
                }
            });
    
            if (includeInClean) {
                cleanTask.configure(dependsOn(cleanWorker));
            }
    
            // Always schedule the generation task after the clean task
            worker.configure(new Action<Task>() {
                @Override
                public void execute(Task task) {
                    task.shouldRunAfter(cleanWorker);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top