Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 81 for handling (0.1 sec)

  1. android/guava/src/com/google/common/net/PercentEscaper.java

       * escaped.
       */
      private final boolean[] safeOctets;
    
      /**
       * Constructs a percent escaper with the specified safe characters and optional handling of the
       * space character.
       *
       * <p>Not that it is allowed, but not necessarily desirable to specify {@code %} as a safe
       * character. This has the effect of creating an escaper which has no well-defined inverse but it
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/net/PercentEscaper.java

       * escaped.
       */
      private final boolean[] safeOctets;
    
      /**
       * Constructs a percent escaper with the specified safe characters and optional handling of the
       * space character.
       *
       * <p>Not that it is allowed, but not necessarily desirable to specify {@code %} as a safe
       * character. This has the effect of creating an escaper which has no well-defined inverse but it
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/internal/execution/XCTestExecuter.java

     *
     * This class is mostly responsible for managing the starting/stopping of the test process and wiring together the
     * different test execution bits (output scraping, event generation, process handling).
     *
     * NOTE: Eventually, we would like to replace some of this with a lower level integration with XCTest, which would
     * get rid of the output scraping and allow us to do things like:
     *
     * - Parallel test execution
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/attributes/Bundling.java

     *         </ul>
     *     </li>
     * </ul>
     *
     * @since 5.3
     */
    public interface Bundling extends Named {
        Attribute<Bundling> BUNDLING_ATTRIBUTE = Attribute.of("org.gradle.dependency.bundling", Bundling.class);
    
        /**
         * The most common case: dependencies are provided as individual components.
         */
        String EXTERNAL = "external";
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/developingPlugins/reactingToPlugins/groovy/buildSrc/src/main/java/InhouseConventionWarPlugin.java

    import org.gradle.api.Plugin;
    import org.gradle.api.Project;
    import org.gradle.api.tasks.bundling.War;
    
    // tag::snippet[]
    public class InhouseConventionWarPlugin implements Plugin<Project> {
        public void apply(Project project) {
            project.getTasks().withType(War.class).configureEach(war ->
                war.setWebXml(project.file("src/someWeb.xml")));
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 387 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/metadata/DefaultMavenImmutableAttributesFactory.java

                result = concat(result, CATEGORY_ATTRIBUTE, new CoercingStringValueSnapshot(Category.DOCUMENTATION, objectInstantiator));
                result = concat(result, Bundling.BUNDLING_ATTRIBUTE, objectInstantiator.named(Bundling.class, Bundling.EXTERNAL));
                result = concat(result, DocsType.DOCS_TYPE_ATTRIBUTE, objectInstantiator.named(DocsType.class, DocsType.SOURCES));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/artifact/ArchiveTaskBasedIvyArtifact.java

    import org.gradle.api.internal.tasks.TaskDependencyFactory;
    import org.gradle.api.publish.ivy.internal.publisher.IvyPublicationCoordinates;
    import org.gradle.api.tasks.TaskDependency;
    import org.gradle.api.tasks.bundling.AbstractArchiveTask;
    
    import java.io.File;
    
    public class ArchiveTaskBasedIvyArtifact extends AbstractIvyArtifact {
        private final AbstractArchiveTask archiveTask;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/file/MaybeCompressedFileResource.java

    import org.gradle.api.resources.MissingResourceException;
    import org.gradle.api.resources.ReadableResource;
    import org.gradle.api.resources.internal.ReadableResourceInternal;
    import org.gradle.api.tasks.bundling.Compression;
    
    import java.io.File;
    import java.io.InputStream;
    import java.net.URI;
    
    public class MaybeCompressedFileResource implements ReadableResourceInternal {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 2.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/tasks/bundling/Compression.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.tasks.bundling;
    
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.List;
    
    /**
     * Specifies the compression which should be applied to a TAR archive.
     */
    public enum Compression {
        NONE("tar"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 1.5K bytes
    - Viewed (0)
  10. platforms/jvm/war/src/main/java/org/gradle/api/plugins/WarPlugin.java

    import org.gradle.api.plugins.jvm.JvmTestSuite;
    import org.gradle.api.plugins.jvm.internal.JvmFeatureInternal;
    import org.gradle.api.tasks.TaskProvider;
    import org.gradle.api.tasks.bundling.War;
    import org.gradle.internal.deprecation.DeprecationLogger;
    
    import javax.inject.Inject;
    import java.util.concurrent.Callable;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 12 16:57:15 UTC 2023
    - 7.4K bytes
    - Viewed (0)
Back to top