Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 110 for _encapsulate (0.33 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    └── subproject-two
        └── build.gradle
    ----
    =====
    ====
    
    [[sec:build_sources]]
    == Use `buildSrc` to abstract imperative logic
    
    Complex build logic is usually a good candidate for being encapsulated either as custom task or binary plugin.
    Custom task and plugin implementations should not live in the build script.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. pkg/util/iptables/testing/parse.go

    // `negatable` tag indicates if a parameter is allowed to be preceded by "!".
    //
    // Parameters that take a value are stored as type `*IPTablesValue`, which encapsulates a
    // string value and whether the rule was negated (ie, whether the rule requires that we
    // *match* or *don't match* that value). But string-valued parameters that can't be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

        ```
      }];
    
      let constructor = "tensorflow::tf2xla::internal::CreateExtractOutsideCompilationPass()";
    }
    
    def XlaClusterFormationPass : Pass<"tf-xla-cluster-formation", "ModuleOp"> {
      let summary = "Encapsulate partitioned calls within a Cluster op";
      let description = [{
        This pass clusters `tf.PartitionedCall` and `tf.StatefulPartitionedCall`
        with `_xla_compile_device_type` attribute into a `tf_device.cluster`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  4. cmd/admin-handlers_test.go

    	"net/http/httptest"
    	"net/url"
    	"sort"
    	"sync"
    	"testing"
    	"time"
    
    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/minio/internal/auth"
    	"github.com/minio/mux"
    )
    
    // adminErasureTestBed - encapsulates subsystems that need to be setup for
    // admin-handler unit tests.
    type adminErasureTestBed struct {
    	erasureDirs []string
    	objLayer    ObjectLayer
    	router      *mux.Router
    	done        context.CancelFunc
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. tensorflow/cc/framework/gradients.cc

          for (const int dy_index : no_grad_dy_indices) {
            dy[dy_index] = ops::ZerosLike(scope_, Output(n, dy_index));
          }
        }
    
        // TODO(andydavis) Add option to encapsulate grad function in
        // SymbolicGradientOp (as opposed to inlining into the graph).
        std::vector<Output> dx;
        TF_RETURN_IF_ERROR(CallGradFunction(Operation(n), dy, &dx));
    
        // Backprop along the in edges.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
  6. src/runtime/mpallocbits.go

    		k *= 2
    	}
    	// Find first remaining 1.
    	// Since we shrunk from the top down, the first 1 is in
    	// its correct original position.
    	return uint(sys.TrailingZeros64(c))
    }
    
    // pallocData encapsulates pallocBits and a bitmap for
    // whether or not a given page is scavenged in a single
    // structure. It's effectively a pallocBits with
    // additional functionality.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/MavenComponentParser.java

    import java.util.List;
    import java.util.Map;
    import java.util.Objects;
    import java.util.Set;
    import java.util.function.Consumer;
    import java.util.stream.Collectors;
    import java.util.stream.Stream;
    
    /**
     * Encapsulates all logic required to extract data from a {@link SoftwareComponentInternal} in order to
     * transform it to a representation compatible with Maven.
     */
    public class MavenComponentParser {
        @VisibleForTesting
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 18:52:27 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

              suite.addTest(new GeneratedMonitorTest(method, scenario, fair, null, expectedOutcome));
            }
          }
        }
      }
    
      /** A guard that encapsulates a simple, mutable boolean flag. */
      static class FlagGuard extends Monitor.Guard {
    
        private boolean satisfied;
    
        protected FlagGuard(Monitor monitor) {
          super(monitor);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueSupplier.java

    import org.gradle.internal.DisplayName;
    
    import javax.annotation.Nullable;
    import java.io.Serializable;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.List;
    
    /**
     * Encapsulates the production of some value by some producer.
     * <p>
     * All providers implement this interface, but this interface may be implemented whenever
     * lazy evaluation is required.
     * </p>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 20:31:29 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

              suite.addTest(new GeneratedMonitorTest(method, scenario, fair, null, expectedOutcome));
            }
          }
        }
      }
    
      /** A guard that encapsulates a simple, mutable boolean flag. */
      static class FlagGuard extends Monitor.Guard {
    
        private boolean satisfied;
    
        protected FlagGuard(Monitor monitor) {
          super(monitor);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top