Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 474 for convenient (0.19 sec)

  1. tools/istio-docker.mk

    dockerx.save: docker.save
    	@:
    dockerx.push: docker.push
    	@:
    dockerx.pushx: docker.push
    	@:
    dockerx: docker
    	@:
    
    # Support individual images like `dockerx.pilot`
    
    # Docker commands defines some convenience targets
    # Build individual docker image and push it. Ex: push.docker.pilot
    push.docker.%:
    	DOCKER_TARGETS=docker.$* ./tools/docker --push
    
    # Build individual docker image and save it. Ex: tar.docker.pilot
    tar.docker.%:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 31 21:56:36 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/settings/SettingsUtils.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.settings;
    
    import org.apache.maven.internal.impl.SettingsUtilsV4;
    
    /**
     * Several convenience methods to handle settings
     *
     */
    public final class SettingsUtils {
    
        private SettingsUtils() {
            // don't allow construction.
        }
    
        /**
         * @param dominant
         * @param recessive
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/link.go

    	ctxt.version++
    	return ctxt.version - 1
    }
    
    // returns the maximum version number
    func (ctxt *Link) MaxVersion() int {
    	return ctxt.version
    }
    
    // generatorFunc is a convenience type.
    // Some linker-created Symbols are large and shouldn't really live in the heap.
    // Such Symbols can define a generator function. Their bytes can be generated
    // directly in the output mmap.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 19 15:59:22 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/saved_model/core/ops/BUILD

    # This package contains written convenience helpers for Eager Operations
    # used by SavedModel. Once we autogenerate C++ Eager Op wrappers, we can remove these.
    load(
        "//tensorflow:tensorflow.bzl",
        "tf_cc_test",
    )
    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        default_visibility = [
            # Restricting visibility for now
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/Collector.java

        /**
         * Returns a view of this collector that never returns a missing value.
         */
        Collector<T> absentIgnoring();
    
        /**
         * Convenience method that returns a view of this collector that never returns a missing value,
         * if that capability is required, or this very collector.
         */
        default Collector<T> absentIgnoringIfNeeded(boolean required) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 05:02:13 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. platforms/software/security/src/main/java/org/gradle/plugins/signing/type/AbstractSignatureType.java

    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    
    /**
     * Convenience base class for {@link SignatureType} implementations.
     */
    public abstract class AbstractSignatureType implements SignatureType {
    
        @Override
        public File sign(Signatory signatory, File toSign) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/fields/fields.go

    	Get(field string) (value string)
    }
    
    // Set is a map of field:value. It implements Fields.
    type Set map[string]string
    
    // String returns all fields listed as a human readable string.
    // Conveniently, exactly the format that ParseSelector takes.
    func (ls Set) String() string {
    	selector := make([]string, 0, len(ls))
    	for key, value := range ls {
    		selector = append(selector, key+"="+value)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 19 14:50:16 UTC 2017
    - 1.7K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/main/java/org/gradle/plugins/ide/api/PropertyListGeneratorTask.java

    import org.gradle.plugins.ide.internal.generator.generator.PersistableConfigurationObjectGenerator;
    import org.gradle.work.DisableCachingByDefault;
    
    /**
     * A convenience superclass for those tasks which generate Property List configuration files from a domain object of type T.
     *
     * @param <T> The domain object type.
     * @since 4.2
     */
    @Incubating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/project/MavenProjectHelper.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.project;
    
    import java.io.File;
    import java.util.List;
    
    /**
     * Convenience interface for plugins to add or replace artifacts and resources on projects.
     */
    public interface MavenProjectHelper {
        String ROLE = MavenProjectHelper.class.getName();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  10. docs/en/docs/advanced/response-cookies.md

        You could also use `from starlette.responses import Response` or `from starlette.responses import JSONResponse`.
    
        **FastAPI** provides the same `starlette.responses` as `fastapi.responses` just as a convenience for you, the developer. But most of the available responses come directly from Starlette.
    
        And as the `Response` can be used frequently to set headers and cookies, **FastAPI** also provides it at `fastapi.Response`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top