Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 76 for setDist (0.15 sec)

  1. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApi.groovy

            this.daemonBaseDir = context.daemonBaseDir
            this.requiresDaemon = !GradleContextualExecuter.embedded
            this.testWorkDirProvider = testWorkDirProvider
        }
    
        void setDist(GradleDistribution dist) {
            this.dist = dist
        }
    
        /**
         * Specifies that the test use its own Gradle user home dir and daemon registry.
         */
        void requireIsolatedUserHome() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:07:23 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiSpecification.groovy

        }
    
        // reflectively invoked by ToolingApiExecution
        void setTargetDist(GradleDistribution targetDist) {
            targetGradleDistribution = targetDist
            toolingApi.setDist(targetGradleDistribution)
        }
    
        GradleDistribution getTargetDist() {
            if (targetGradleDistribution == null) {
                throw new IllegalStateException("targetDist is not yet set by the testing framework")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. schema/field.go

    			case uint32:
    				field.ReflectValueOf(ctx, value).SetUint(uint64(data))
    			case int64:
    				field.ReflectValueOf(ctx, value).SetUint(uint64(data))
    			case int:
    				field.ReflectValueOf(ctx, value).SetUint(uint64(data))
    			case int8:
    				field.ReflectValueOf(ctx, value).SetUint(uint64(data))
    			case int16:
    				field.ReflectValueOf(ctx, value).SetUint(uint64(data))
    			case int32:
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 15 03:20:20 UTC 2024
    - 32K bytes
    - Viewed (0)
  4. src/testing/quick/quick.go

    	case reflect.Int16:
    		v.SetInt(randInt64(rand))
    	case reflect.Int32:
    		v.SetInt(randInt64(rand))
    	case reflect.Int64:
    		v.SetInt(randInt64(rand))
    	case reflect.Int8:
    		v.SetInt(randInt64(rand))
    	case reflect.Int:
    		v.SetInt(randInt64(rand))
    	case reflect.Uint16:
    		v.SetUint(uint64(randInt64(rand)))
    	case reflect.Uint32:
    		v.SetUint(uint64(randInt64(rand)))
    	case reflect.Uint64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/testing/utils.go

    		}
    		return nil
    	}
    }
    
    // StorageInjectingListErrors injects a dummy error for first N GetList calls.
    type StorageInjectingListErrors struct {
    	storage.Interface
    
    	lock   sync.Mutex
    	Errors int
    }
    
    func (s *StorageInjectingListErrors) GetList(ctx context.Context, key string, opts storage.ListOptions, listObj runtime.Object) error {
    	err := func() error {
    		s.lock.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 22 07:26:55 UTC 2024
    - 10.3K bytes
    - Viewed (1)
  6. src/encoding/binary/binary.go

    		v.SetBool(d.bool())
    
    	case reflect.Int8:
    		v.SetInt(int64(d.int8()))
    	case reflect.Int16:
    		v.SetInt(int64(d.int16()))
    	case reflect.Int32:
    		v.SetInt(int64(d.int32()))
    	case reflect.Int64:
    		v.SetInt(d.int64())
    
    	case reflect.Uint8:
    		v.SetUint(uint64(d.uint8()))
    	case reflect.Uint16:
    		v.SetUint(uint64(d.uint16()))
    	case reflect.Uint32:
    		v.SetUint(uint64(d.uint32()))
    	case reflect.Uint64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:29:31 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/collect/testing/testers/ListSubListTester.java

           */
        }
      }
    
      public void testSubList_empty() {
        assertEquals("subList(0, 0) should be empty", emptyList(), getList().subList(0, 0));
      }
    
      public void testSubList_entireList() {
        assertEquals(
            "subList(0, size) should be equal to the original list",
            getList(),
            getList().subList(0, getNumElements()));
      }
    
      @ListFeature.Require(SUPPORTS_REMOVE_WITH_INDEX)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/collect/testing/testers/ListSubListTester.java

           */
        }
      }
    
      public void testSubList_empty() {
        assertEquals("subList(0, 0) should be empty", emptyList(), getList().subList(0, 0));
      }
    
      public void testSubList_entireList() {
        assertEquals(
            "subList(0, size) should be equal to the original list",
            getList(),
            getList().subList(0, getNumElements()));
      }
    
      @ListFeature.Require(SUPPORTS_REMOVE_WITH_INDEX)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/it/search/SearchApiTests.java

            List<Map<String, Object>> docs1 = JsonPath.from(wcResponse1).getList("data");
            for (Map<String, Object> doc : docs1) {
                assertTrue(doc.get(field).toString().toLowerCase().contains(query), doc.toString());
            }
            List<Map<String, Object>> docs2 = JsonPath.from(wcResponse2).getList("data");
            for (Map<String, Object> doc : docs2) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaseCrossBuildResultsStore.java

                            performanceResults.setTestGroup(testExecutions.getString(9));
                            performanceResults.setChannel(testExecutions.getString(10));
                            performanceResults.setHost(testExecutions.getString(11));
                            performanceResults.setTeamCityBuildId(testExecutions.getString(12));
    
                            if (ignore(performanceResults)) {
                                continue;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top