Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 108 for sub1 (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. tests/query_test.go

    	}
    
    	var sub1 []User
    	// limit < batchSize
    	if result := DB.Limit(5).Where("name = ?", users[0].Name).FindInBatches(&sub1, 10, func(tx *gorm.DB, batch int) error {
    		return nil
    	}); result.Error != nil || result.RowsAffected != 5 {
    		t.Errorf("Failed to batch find, got error %v, rows affected: %v", result.Error, result.RowsAffected)
    	}
    
    	var sub2 []User
    	// only offset
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/subr.go

    Cuong Manh Le <******@****.***> 1696348263 +0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  9. src/io/fs/sub.go

    )
    
    // A SubFS is a file system with a Sub method.
    type SubFS interface {
    	FS
    
    	// Sub returns an FS corresponding to the subtree rooted at dir.
    	Sub(dir string) (FS, error)
    }
    
    // Sub returns an [FS] corresponding to the subtree rooted at fsys's dir.
    //
    // If dir is ".", Sub returns fsys unchanged.
    // Otherwise, if fs implements [SubFS], Sub returns fsys.Sub(dir).
    // Otherwise, Sub returns a new [FS] implementation sub that,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 10 02:10:17 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/dec64.rules

    	(Int64Make
    		(Or32 <typ.UInt32>
    			(Or32 <typ.UInt32>
    				(Lsh32x16 <typ.UInt32> (Int64Hi x) s)
    				(Rsh32Ux16 <typ.UInt32>
    					(Int64Lo x)
    					(Sub16 <typ.UInt16> (Const16 <typ.UInt16> [32]) s)))
    			(Lsh32x16 <typ.UInt32>
    				(Int64Lo x)
    				(Sub16 <typ.UInt16> s (Const16 <typ.UInt16> [32]))))
    		(Lsh32x16 <typ.UInt32> (Int64Lo x) s))
    (Lsh64x8 x s) =>
    	(Int64Make
    		(Or32 <typ.UInt32>
    			(Or32 <typ.UInt32>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 19:35:46 UTC 2022
    - 14.2K bytes
    - Viewed (0)
Back to top