Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 56 for produceDirs (0.21 sec)

  1. src/debug/dwarf/entry.go

    		// block. DWARF 4 distinguishes ClassBlock and
    		// ClassExprLoc, but there are no attributes that can
    		// be both, so we also promote ClassBlock values in
    		// DWARF 4 that should be ClassExprLoc in case
    		// producers get this wrong.
    		if attrIsExprloc[attr] {
    			return ClassExprLoc
    		}
    		return ClassBlock
    
    	case formData1, formData2, formData4, formData8, formSdata, formUdata, formData16, formImplicitConst:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

            assertTransformationsExecuted()
        }
    
        def "can attach @#classpathAnnotation.simpleName to dependencies property"() {
            given:
            setupBuildWithNoSteps {
                produceJars()
            }
            buildFile << """
    allprojects {
        dependencies {
            registerTransform(ClasspathTransform) {
                from.attribute(color, 'blue')
                to.attribute(color, 'green')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/Futures.java

     * monitoring, debugging, and cancellation. Examples of frameworks include:
     *
     * <ul>
     *   <li><a href="https://dagger.dev/producers.html">Dagger Producers</a>
     * </ul>
     *
     * <p>If you do chain your operations manually, you may want to use {@link FluentFuture}.
     *
     * @author Kevin Bourrillion
     * @author Nishant Thakkar
     * @author Sven Mawson
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                          type: integer
                        reason:
                          description: reason contains a programmatic identifier indicating
                            the reason for the condition's last transition. Producers
                            of specific condition types may define expected values and
                            meanings for this field, and whether the values are considered
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

    Gradle provides the artifacts and dependencies from the `apiElements` variant to the consumer.
    
    == A more complicated example
    
    In the real world, consumers and producers have more than one attribute.
    
    A Java Library project in Gradle will involve several different attributes:
    
    - `org.gradle.usage` that describes how the variant is used
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  6. tests/integration/pilot/testdata/gateway-api-crd.yaml

                                description: |-
                                  reason contains a programmatic identifier indicating the reason for the condition's last transition.
                                  Producers of specific condition types may define expected values and meanings for this field,
                                  and whether the values are considered a guaranteed API.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/deadness_analysis.cc

        // consumers to should_revisit, and these newly added nodes will also be
        // processed by this very same loop.  Since we're traversing the graph in
        // topological order (producers before consumers) and HandleNode(n) can only
        // ever add n's consumers to should_revisit, we won't "miss" an addition to
        // should_revisit.
        if (should_revisit[n->id()]) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"reason":             "reason contains a programmatic identifier indicating the reason for the condition's last transition. Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API. The value should be a CamelCase string. This field may not be empty.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      for (auto* n : arg_nodes) {
        int index;
        TF_RETURN_IF_ERROR(GetNodeAttr(n->attrs(), "index", &index));
        // Record out edges and remove `n` before adding those edges to RecvAtHost.
        // This is to avoid multiple producers.
        std::vector<OutEdgeInfo> out_edge_info;
        out_edge_info.reserve(n->out_edges().size());
        for (auto edge : n->out_edges()) {
          out_edge_info.push_back(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  10. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // +kubebuilder:validation:Format=date-time
      optional Time lastTransitionTime = 4;
    
      // reason contains a programmatic identifier indicating the reason for the condition's last transition.
      // Producers of specific condition types may define expected values and meanings for this field,
      // and whether the values are considered a guaranteed API.
      // The value should be a CamelCase string.
      // This field may not be empty.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top