Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for machine (0.17 sec)

  1. .bazelrc

    build:rbe_cross_compile_base --remote_instance_name=projects/tensorflow-testing/instances/default_instance
    
    # XLA depends on some local Python headers that are configured as Genrule. They
    # are present on the local host machine but not on the remote execution machine,
    # leading to build failures. To resolve the issue, the following line is added
    # to make sure all Genrule targets are excuted locally.
    build:rbe_cross_compile_base_xla --config=rbe_cross_compile_base
    Plain Text
    - Registered: Tue May 07 12:40:20 GMT 2024
    - Last Modified: Thu May 02 19:34:20 GMT 2024
    - 52.8K bytes
    - Viewed (2)
  2. configure.py

    
    def is_linux():
      return platform.system() == 'Linux'
    
    
    def is_macos():
      return platform.system() == 'Darwin'
    
    
    def is_ppc64le():
      return platform.machine() == 'ppc64le'
    
    
    def is_s390x():
      return platform.machine() == 's390x'
    
    
    def is_cygwin():
      return platform.system().startswith('CYGWIN_NT')
    
    
    def get_input(question):
      try:
        try:
          answer = raw_input(question)
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (1)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

        }
    
        /**
         * Travels all containing classes of [innerClass] and finds the one matching ClassId with one of [candidates]. Returns the matching
         * ClassId. If it does not have a matching ClassId, it returns null.
         */
        private fun findMostInnerClassMatchingId(innerClass: KtClassOrObject, candidates: Set<ClassId>): ClassId? {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:51:33 GMT 2024
    - 69.5K bytes
    - Viewed (0)
  4. cmd/iam-store.go

    	cache.updatedAt = time.Now()
    
    	return d.UpdateDate, nil
    }
    
    // ListPolicies - fetches all policies from storage and updates cache as well.
    // If bucketName is non-empty, returns policies matching the bucket.
    func (store *IAMStoreSys) ListPolicies(ctx context.Context, bucketName string) (map[string]policy.Policy, error) {
    	cache := store.lock()
    	defer store.unlock()
    
    	m := map[string]PolicyDoc{}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sat Apr 27 10:04:10 GMT 2024
    - 75.2K bytes
    - Viewed (2)
  5. internal/bucket/lifecycle/lifecycle_test.go

    			},
    			hasRules: false,
    		},
    		{ // PUT version with no matching tags
    			lc: Lifecycle{
    				Rules: []Rule{
    					rules[0],
    				},
    			},
    			opts: ObjectOpts{
    				IsLatest: true,
    				Name:     "obj-1",
    				Size:     1 * humanize.MiByte,
    			},
    			hasRules: false,
    		},
    		{ // PUT version with matching tags
    			lc: Lifecycle{
    				Rules: []Rule{
    					rules[0],
    				},
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:11:10 GMT 2024
    - 53.2K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

            checkPluginVersions(lineage, request, problems);
    
            // inheritance assembly
            Model resultModel = assembleInheritance(lineage, request, problems);
    
            // consider caching inherited model
    
            problems.setSource(resultModel);
            problems.setRootModel(resultModel);
    
            // model interpolation
            resultModel = interpolateModel(resultModel, request, problems);
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri May 03 08:48:38 GMT 2024
    - 61.5K bytes
    - Viewed (0)
  7. cmd/object-api-listobjects_test.go

    		// Test listing an object with uncommon delimiter
    		{testBuckets[4], "", "", "guidSplunk", 1000, resultCases[35], nil, true},
    		// Test listing an object with uncommon delimiter and matching prefix
    		{testBuckets[4], "file1/", "", "guidSplunk", 1000, resultCases[35], nil, true},
    		// Test listing at prefix with expected prefix markers
    		{testBuckets[5], "dir/", "", SlashSeparator, 1, resultCases[36], nil, true},
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 11:07:40 GMT 2024
    - 73.1K bytes
    - Viewed (0)
  8. cmd/erasure-server-pool.go

    	if poolIdx < len(z.serverPools) && setIdx < len(z.serverPools[poolIdx].sets) {
    		return z.serverPools[poolIdx].sets[setIdx].getDisks(), nil
    	}
    	return nil, fmt.Errorf("Matching pool %s, set %s not found", humanize.Ordinal(poolIdx+1), humanize.Ordinal(setIdx+1))
    }
    
    // Return the count of disks in each pool
    func (z *erasureServerPools) SetDriveCounts() []int {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 20:08:20 GMT 2024
    - 80.5K bytes
    - Viewed (0)
  9. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrReplicationNoExistingObjects: {
    		Code:           "XMinioReplicationNoExistingObjects",
    		Description:    "No matching ExistingsObjects rule enabled",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrRemoteTargetDenyAddError: {
    		Code:           "XMinioAdminRemoteTargetDenyAdd",
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun May 05 16:56:21 GMT 2024
    - 91.4K bytes
    - Viewed (6)
  10. cmd/test-utils_test.go

    	globalObjectAPI = objLayer
    	globalObjLayerMutex.Unlock()
    
    	// When cache is enabled, Put and Get operations are passed
    	// to underlying cache layer to manage object layer operation and disk caching
    	// operation
    	api := objectAPIHandlers{
    		ObjectAPI: func() ObjectLayer {
    			return globalObjectAPI
    		},
    	}
    
    	// Register ListBuckets	handler.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 17:26:51 GMT 2024
    - 76.2K bytes
    - Viewed (0)
Back to top