Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 406 for sub1 (0.17 sec)

  1. platforms/ide/ide-plugins/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r54/RunEclipseAutoBuildTasksCrossVersionSpec.groovy

    class RunEclipseAutoBuildTasksCrossVersionSpec extends ToolingApiSpecification {
        def setup() {
            file("sub1").mkdirs()
    
            buildFile << """
                apply plugin: 'eclipse'
    
                task foo {
                }
    
                task bar {
                }
    
                project(":sub") {
                    apply plugin: 'eclipse'
    
                    task bar {
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/HelpTaskIntegrationTest.groovy

    Group
         -
    
    BUILD SUCCESSFUL"""
        }
    
        def "listsCommonDynamicAvailableValues"() {
            createDirs("sub1", "sub2")
            when:
            run "help", "--task", "hello"
            then:
            output.contains """Detailed task information for hello
    
    Paths
         :sub1:hello
         :sub2:hello
    
    Type
         CustomTask (CustomTask)
    
    Options
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 14K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/TreeRangeMapTest.java

        RangeMap<Integer, Integer> sub1 = rangeMap.subRangeMap(Range.closed(5, 11));
        assertEquals(
            ImmutableMap.of(Range.closedOpen(5, 7), 1, Range.closed(9, 10), 2), sub1.asMapOfRanges());
        RangeMap<Integer, Integer> sub2 = sub1.subRangeMap(Range.open(6, 15));
        assertEquals(
            ImmutableMap.of(Range.open(6, 7), 1, Range.closed(9, 10), 2), sub2.asMapOfRanges());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 20:09:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/breakup-islands.mlir

    // CHECK:    %[[SUB1:.*]], %[[SUB1_control:.*]] = tf_executor.island(%[[ADD2_control]]) wraps "tf.Sub"(%arg0, %arg1)
    // CHECK:    %[[MUL:.*]], %[[MUL_control:.*]] = tf_executor.island wraps "tf.Mul"(%[[SUB1]], %arg1)
    // CHECK:    %[[SUB2:.*]], %[[SUB2_control:.*]] = tf_executor.island(%[[ADD2_control]], %[[MUL_control]]) wraps "tf.Sub"(%[[ADD1]], %[[SUB1]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 28.5K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TestProgressCrossVersionSpec.groovy

            given:
            projectDir.createFile('settings.gradle') << """
                include ':sub1'
                include ':sub2'
            """
            projectDir.createFile('build.gradle')
    
            [projectDir.createDir('sub1'), projectDir.createDir('sub2')].eachWithIndex { TestFile it, def index ->
                it.file('build.gradle') << """
                apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationDependenciesBuildOperationIntegrationTest.groovy

            setup:
            def m1 = mavenHttpRepo.module('org.foo', 'some-dep').publish()
    
            createDirs("projectB", "projectB/sub1")
            file("projectB/settings.gradle") << """
            rootProject.name = 'project-b'
            include "sub1"
            """
    
            file("projectB/build.gradle") << """
                    buildscript {
                        repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      // CHECK: %[[SUB0:.*]] = "tf.Sub"(%arg0, %arg1)
      // CHECK: %[[SUB1:.*]] = "tf.Sub"(%arg2, %[[SUB0]])
      // CHECK: return %[[SUB1]]
      %sub0 = "tf.Sub" (%0#0, %0#1) : (tensor<*xf32>, tensor<*xf32>) -> tensor<*xf32>
      %sub1 = "tf.Sub" (%0#2, %sub0) : (tensor<*xf32>, tensor<*xf32>) -> tensor<*xf32>
      func.return %sub1 : tensor<*xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loader/loader_test.go

    	es1 := ldr.LookupOrCreateSym("outer", 0)
    	ldr.MakeSymbolUpdater(es1).SetSize(101)
    	es2 := ldr.LookupOrCreateSym("sub1", 0)
    	es3 := ldr.LookupOrCreateSym("sub2", 0)
    	es4 := ldr.LookupOrCreateSym("sub3", 0)
    	es5 := ldr.LookupOrCreateSym("sub4", 0)
    	es6 := ldr.LookupOrCreateSym("sub5", 0)
    
    	// Should not have an outer sym initially
    	if ldr.OuterSym(es1) != 0 {
    		t.Errorf("es1 outer sym set ")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:08:09 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. docs/config/README.md

    ```sh
    export MINIO_DOMAIN=mydomain.com
    minio server /data
    ```
    
    For advanced use cases `MINIO_DOMAIN` environment variable supports multiple-domains with comma separated values.
    
    ```sh
    export MINIO_DOMAIN=sub1.mydomain.com,sub2.mydomain.com
    minio server /data
    ```
    
    ## Explore Further
    
    * [MinIO Quickstart Guide](https://min.io/docs/minio/linux/index.html#quickstart-for-linux)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 11 21:48:54 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_debugging.adoc

    == Example
    
    We will walk you through the process of diagnosing a cache miss.
    Let's say we have build `A` and build `B` and we expected all the test tasks for a sub-project `sub1` to be cached in build `B` since only a unit test for another sub-project `sub2` changed.
    Instead, all the tests for the sub-project have been executed.
    Since we have the cascading effect when we have cache misses, we need to find the task which caused the caching chain to fail.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 15K bytes
    - Viewed (0)
Back to top