Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 598 for inputs_ (0.21 sec)

  1. platforms/documentation/docs/src/snippets/modelRules/modelDsl/groovy/build.gradle

        void people(ModelMap<Person> people) {
        }
    }
    
    apply plugin: PersonRules
    
    // tag::configure-rule[]
    // tag::create-rule[]
    // tag::rule-inputs[]
    // tag::create-rule-no-config[]
    // tag::managed-type-nested-config-rule[]
    model {
    // end::create-rule[]
    // end::rule-inputs[]
    // end::create-rule-no-config[]
    // end::managed-type-nested-config-rule[]
        person {
            lastName = "Smith"
        }
    // end::configure-rule[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/transform/TransformedClosure.java

         */
        SourceLocation sourceLocation();
    
        /**
         * Marks this closure as a rule action, with the given inputs
         *
         * @param nestedRuleFactory Factory to use to create nested rules.
         */
        void makeRule(PotentialInputs inputs, @Nullable ClosureBackedRuleFactory nestedRuleFactory);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/gradients/tape/tape_operation.cc

    }
    Status TapeOperation::AddInput(AbstractTensorHandle* input) {
      TF_RETURN_IF_ERROR(parent_op_->AddInput(input));
      forward_op_.inputs.push_back(input);
      return absl::OkStatus();
    }
    Status TapeOperation::AddInputList(
        absl::Span<AbstractTensorHandle* const> inputs) {
      TF_RETURN_IF_ERROR(parent_op_->AddInputList(inputs));
      for (auto input : inputs) {
        forward_op_.inputs.push_back(input);
      }
      return absl::OkStatus();
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 06:16:45 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. cmd/object-api-input-checks.go

    Anis Eleuch <******@****.***> 1712232280 +0100
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/writing-tasks/tasks-with-dependency-resolution-result-inputs/README.adoc

    include::{samplesPath}/writing-tasks/tasks-with-dependency-resolution-result-inputs/tests/listResolvedArtifacts.out[]
    
    BUILD SUCCESSFUL in 1s
    1 actionable task: 1 executed
    ----
    =====
    =====
    [.sample-command]
    ----
    > ./gradlew -q graphResolvedComponents
    include::{samplesPath}/writing-tasks/tasks-with-dependency-resolution-result-inputs/tests/graphResolvedComponents.out[]
    
    BUILD SUCCESSFUL in 1s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/buildCache/java-version-tracking/groovy/build.gradle

    plugins {
        id('java-library')
    }
    
    // tag::trackVendor[]
    tasks.withType(AbstractCompile).configureEach {
        inputs.property("java.vendor") {
            System.getProperty("java.vendor")
        }
    }
    
    tasks.withType(Test).configureEach {
        inputs.property("java.vendor") {
            System.getProperty("java.vendor")
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 340 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/buildCache/java-version-tracking/kotlin/build.gradle.kts

    plugins {
        id("java-library")
    }
    
    // tag::trackVendor[]
    tasks.withType<AbstractCompile>().configureEach {
        inputs.property("java.vendor") {
            System.getProperty("java.vendor")
        }
    }
    
    tasks.withType<Test>().configureEach {
        inputs.property("java.vendor") {
            System.getProperty("java.vendor")
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 344 bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/SymlinkFileSystemWatchingIntegrationTest.groovy

            def actualDir = file("actualDir").createDir()
            file("symlink1").createLink(actualDir)
            file("symlink2").createLink(actualDir)
    
            buildFile << """
                task myTask {
                    def outputFile = file("build/output.txt")
                    inputs.dir("symlink1")
                    inputs.dir("symlink2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/dependencies/transforms/SnapshotTransformInputsBuildOperationType.java

        public interface Details {
        }
    
        /**
         * The hashes of the inputs.
         * <p>
         * If the inputs were not snapshotted, all fields are null.
         */
        public interface Result {
    
            /**
             * The overall hash value for the inputs.
             * <p>
             * Null if the overall key was not calculated because the inputs were invalid.
             */
            @Nullable
            byte[] getHashBytes();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/deadness_analysis.h

    #include "tensorflow/core/graph/graph.h"
    
    namespace tensorflow {
    
    // This analyzes a TensorFlow graph to identify nodes which may have partially
    // dead inputs (i.e. these nodes may have some dead inputs and some alive
    // inputs).
    //
    // For example, the ADD node in the following graph
    //
    //      V0  PRED0    V1  PRED1
    //       |    |       |    |
    //       v    v       v    v
    //       SWITCH       SWITCH
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top