Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 73 for Usages (0.23 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    The configuration cache takes care of caching the build configuration for a particular set of tasks.
    In other words, the configuration cache saves the output of the configuration phase, and the build cache saves the outputs of the execution phase.
    
    [IMPORTANT]
    ====
    This feature is currently not enabled by default. This feature has the following limitations:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

    // combined, so a single gather can be performed along the combined spatial
    // dimensions.
    //
    // Images must take the shape [b, h, w, c] and size is a rank-1 length-2 tensor
    // containing the height and width values for the output tensor. This lowering
    // should work with a dynamic images array.
    //
    // For example, a scaling with image shape [1, 3, 3, 1] to [2, 2] and unaligned
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

                if (resolveAliasFromModule(type)) {
                    return true;
                }
    
                if (module.hasPackageName()) {
                    // check package this class is defined in. The usage of ConstructedClassWithPackage here
                    // means, that the module package will not be involved when the
                    // compiler tries to find an inner class.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  4. pkg/controller/podautoscaler/horizontal.go

    		if err != nil {
    			return 0, nil, time.Time{}, "", condition, fmt.Errorf("failed to get %s usage: %v", resourceName, err)
    		}
    		metricNameProposal = fmt.Sprintf("%s resource", resourceName.String())
    		status := autoscalingv2.MetricValueStatus{
    			AverageValue: resource.NewMilliQuantity(rawProposal, resource.DecimalSI),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbFile.java

     * <code>java.io.File</code> usage; a '/' at the beginning of the second
     * parameter will still use the server component of the first parameter. The
     * examples below illustrate the resulting URLs when this second constructor
     * argument is used.
     *
     * <p>
     * <table border="1" cellpadding="3" cellspacing="0" width="100%" summary="Usage examples">
     * <tr bgcolor="#ccccff">
     * <td colspan="3">
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    ====
    include::sample[dir="snippets/files/fileCollections/kotlin",files="build.gradle.kts[tags=usage]"]
    include::sample[dir="snippets/files/fileCollections/groovy",files="build.gradle[tags=usage]"]
    ====
    
    You can also see at the end of the example _how to combine file collections_ using the `+` and `-` operators to merge and subtract them.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    		for _, a := range m.Additionals[1:] {
    			s += ", " + a.GoString()
    		}
    	}
    	return s + "}}"
    }
    
    // A Builder allows incrementally packing a DNS message.
    //
    // Example usage:
    //
    //	buf := make([]byte, 2, 514)
    //	b := NewBuilder(buf, Header{...})
    //	b.EnableCompression()
    //	// Optionally start a section and add things to that section.
    //	// Repeat adding sections as necessary.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  8. cmd/kubelet/app/server.go

    	cleanFlagSet.BoolP("help", "h", false, fmt.Sprintf("help for %s", cmd.Name()))
    
    	// ugly, but necessary, because Cobra's default UsageFunc and HelpFunc pollute the flagset with global flags
    	const usageFmt = "Usage:\n  %s\n\nFlags:\n%s"
    	cmd.SetUsageFunc(func(cmd *cobra.Command) error {
    		fmt.Fprintf(cmd.OutOrStderr(), usageFmt, cmd.UseLine(), cleanFlagSet.FlagUsagesWrapped(2))
    		return nil
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  9. hack/local-up-cluster.sh

    # Stop right away if the build fails
    set -e
    
    source "${KUBE_ROOT}/hack/lib/init.sh"
    kube::util::ensure-gnu-sed
    
    function usage {
                echo "This script starts a local kube cluster. "
                echo "Example 0: hack/local-up-cluster.sh -h  (this 'help' usage description)"
                echo "Example 1: hack/local-up-cluster.sh -o _output/dockerized/bin/linux/amd64/ (run from docker output)"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      // If this is a control edge then copy it and return. Lift control edges onto
      // the enclosing call operator.
      if (edge->IsControlEdge()) {
        // Add the control edge, if we have not already added it, using the images
        // determined above (potentially call operators or RecvAtHost/SendFromHost).
        if (edges_added
                ->emplace(OutputTensor(src_image, -1), InputTensor(dst_image, -1))
                .second) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
Back to top