Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 491 for Generating (0.28 sec)

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

         *
         * <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. 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)
  3. docs/en/docs/advanced/using-request-directly.md

    Taking data from:
    
    * The path as parameters.
    * Headers.
    * Cookies.
    * etc.
    
    And by doing so, **FastAPI** is validating that data, converting it and generating documentation for your API automatically.
    
    But there are situations where you might need to access the `Request` object directly.
    
    ## Details about the `Request` object
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 29 14:02:58 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  4. pkg/kubelet/pleg/pleg.go

    	//   - ContainerStarted/ContainerStopped: the container name (string).
    	//   - All other event types: unused.
    	Data interface{}
    }
    
    // PodLifecycleEventGenerator contains functions for generating pod life cycle events.
    type PodLifecycleEventGenerator interface {
    	Start()
    	Watch() chan *PodLifecycleEvent
    	Healthy() (bool, error)
    	UpdateCache(*kubecontainer.Pod, types.UID) (error, bool)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 16:14:26 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/task_basics.adoc

    // limitations under the License.
    
    [[task_basics]]
    = Task Basics
    
    A task represents some *independent unit of work* that a build performs, such as compiling classes, creating a JAR, generating Javadoc, or publishing archives to a repository.
    
    image::gradle-basic-5.png[]
    
    You run a Gradle `build` task using the `gradle` command or by invoking the Gradle Wrapper (`./gradlew` or `gradlew.bat`) in your project directory:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 19:34:59 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/PluginUnderTestMetadata.java

    import java.io.File;
    import java.io.IOException;
    import java.util.List;
    import java.util.Properties;
    
    import static org.gradle.util.internal.CollectionUtils.collect;
    
    /**
     * Custom task for generating the metadata for a plugin user test.
     *
     * @since 2.13
     */
    @DisableCachingByDefault(because = "Not worth caching")
    public abstract class PluginUnderTestMetadata extends DefaultTask {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. pilot/pkg/security/authz/model/util.go

    	return matcher.MetadataListValueMatcher(filters.EnvoyJwtFilterName, append([]string{filters.EnvoyJwtFilterPayload}, claims...), value, true)
    }
    
    // MetadataMatcherForJWTClaims is a convenient method for generating metadata matcher for JWT claims.
    func MetadataMatcherForJWTClaims(claims []string, value *matcherpb.StringMatcher, useExtendedJwt bool) *matcherpb.MetadataMatcher {
    	if useExtendedJwt {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. cluster/addons/fluentd-gcp/README.md

    manually scaled. This is useful e.g. when applications running in the cluster
    are sending a large volume of logs (i.e. over 100kB/s), causing fluentd-gcp to
    fail with OutOfMemory errors. Conversely, if the applications aren't generating
    a lot of logs, it may be useful to reduce the amount of resources consumed by
    fluentd-gcp, making these resources available to other applications. To learn
    more about Kubernetes resource requests and limits, see the official
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 20:03:37 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  9. internal/kms/kms.go

    // and options for deleting keys.
    type DeleteKeyRequest struct {
    	// Name is the name of the key that gets deleted.
    	Name string
    }
    
    // GenerateKeyRequest is a structure containing fields
    // and options for generating data keys.
    type GenerateKeyRequest struct {
    	// Name is the name of the master key used to generate
    	// the data key.
    	Name string
    
    	// AssociatedData is optional data that is cryptographically
    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. ci/official/wheel_test/test_import_api_packages.py

    from the current build or not.
    
    It uses the `_api/v2/api_packages.txt` file from the local wheel file.
    The `_api/v2/api_packages.txt` file is created during the process of generating
    TensorFlow API v2 init files and is stored in the wheel file after the build.
    
    See README.md file for "how to run" instruction.
    """
    
    import logging
    import unittest
    import pkg_resources
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 13 15:52:07 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top