Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 60 for Usages (0.12 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

    TEST(XlaCompilationTest, StagePipelinePreservedByClusterScopingPass) {
      auto build_staged_graph = [](std::unique_ptr<Graph>* graph) -> Status {
        // Construct a graph as below with two pipeline stages and test that nodes
        // in different stages will not be merged if ClusterScopingPass is on.
        //
        //       b
        //       |
        //       v
        // a -> add0 -> relu0 -> stage
        //
        //             b
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  2. cmd/admin-handlers-users.go

    	r.Header.Set("prefix", "")
    
    	// Set delimiter value for "s3:delimiter" policy conditionals.
    	r.Header.Set("delimiter", SlashSeparator)
    
    	// Check if we are asked to return prefix usage
    	enablePrefixUsage := r.Form.Get("prefix-usage") == "true"
    
    	isAllowedAccess := func(bucketName string) (rd, wr bool) {
    		if globalIAMSys.IsAllowed(policy.Args{
    			AccountName:     cred.AccessKey,
    			Groups:          cred.Groups,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top