Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 487 for representing (0.4 sec)

  1. platforms/software/platform-base/src/main/java/org/gradle/language/base/artifact/package-info.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Classes representing artifacts relevant to languages in general.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 736 bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/language/java/artifact/package-info.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Classes representing artifacts relevant to the Java language.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 733 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_patterns.td

      "!$0 || $0.getValue() == ::mlir::mhlo::ComparisonType::FLOAT">>;
    def SameTypeOrDefaultCompare : Constraint<CPred<
      "SameTypeOrDefaultCompare($0, $1)">>;
    
    // Converts a dag of HLOs representing banker rounding (round x.5 to nearest
    // even) to tf.round. This only supports float types because mhlo.floor only
    // supports float types. tf.round with integer input type will become an
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 03 08:58:22 UTC 2024
    - 34K bytes
    - Viewed (0)
  4. platforms/software/test-suites-base/src/main/java/org/gradle/testing/base/TestSuiteSpec.java

     */
    package org.gradle.testing.base;
    
    import org.gradle.api.Incubating;
    import org.gradle.platform.base.ComponentSpec;
    import org.gradle.platform.base.GeneralComponentSpec;
    
    /**
     * A component representing a suite of tests that will be built and executed together.
     */
    @Incubating
    public interface TestSuiteSpec extends GeneralComponentSpec {
        /**
         * The tested component.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 16:02:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/sym.go

    // allows using Sym pointer equality to test for Go identifier uniqueness when
    // handling selector expressions.
    //
    // Ideally, Sym should be used for representing Go language constructs,
    // while cmd/internal/obj.LSym is used for representing emitted artifacts.
    //
    // NOTE: In practice, things can be messier than the description above
    // for various reasons (historical, convenience).
    type Sym struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:56 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. src/go/parser/interface.go

    //
    // If the source couldn't be read, the returned AST is nil and the error
    // indicates the specific failure. If the source was read but syntax
    // errors were found, the result is a partial AST (with [ast.Bad]* nodes
    // representing the fragments of erroneous source code). Multiple errors
    // are returned via a scanner.ErrorList which is sorted by source position.
    func ParseFile(fset *token.FileSet, filename string, src any, mode Mode) (f *ast.File, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/toolchain/Toolchain.java

         * @return the toolchain type
         */
        String getType();
    
        /**
         * Gets the platform tool executable.
         *
         * @param toolName the tool platform independent tool name.
         * @return file representing the tool executable, or null if the tool can not be found
         */
        String findTool(String toolName);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/fingerprint/classpath/ClasspathFingerprinter.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Responsible for calculating a {@link FileCollectionFingerprint} for a {@link org.gradle.api.file.FileCollection} representing a Java classpath. Compared to {@link RelativePathFileCollectionFingerprinter} this fingerprinter orders files within any sub-tree.
     *
     * @see org.gradle.api.tasks.Classpath
     */
    @ServiceScope(Scope.UserHome.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/child/WorkerDirectoryProvider.java

     * limitations under the License.
     */
    
    package org.gradle.process.internal.worker.child;
    
    import java.io.File;
    
    public interface WorkerDirectoryProvider {
        /**
         * Returns a File object representing the working directory for workers.
         */
        File getWorkingDirectory();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 860 bytes
    - Viewed (0)
  10. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/NativeTestSuiteSpec.java

     */
    package org.gradle.nativeplatform.test;
    
    import org.gradle.api.Incubating;
    import org.gradle.nativeplatform.NativeComponentSpec;
    import org.gradle.testing.base.TestSuiteSpec;
    
    /**
     * A component representing a suite of tests that will be executed together.
     *
     * @since 4.2
     */
    @Incubating
    public interface NativeTestSuiteSpec extends TestSuiteSpec, NativeComponentSpec {
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top