Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 316 for modue (0.27 sec)

  1. src/cmd/go/internal/modload/init.go

    	pathPrefix map[module.Version]string
    
    	// inGorootSrc caches whether modRoot is within GOROOT/src.
    	// The "std" module is special within GOROOT/src, but not otherwise.
    	inGorootSrc map[module.Version]bool
    
    	modFiles map[module.Version]*modfile.File
    
    	modContainingCWD module.Version
    
    	workFile *modfile.WorkFile
    
    	workFileReplaceMap map[module.Version]module.Version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/buildlist.go

    }
    
    // IsDirect returns whether the given module provides a package directly
    // imported by a package or test in the main module.
    func (rs *Requirements) IsDirect(path string) bool {
    	return rs.direct[path]
    }
    
    // A ModuleGraph represents the complete graph of module dependencies
    // of a main module.
    //
    // If the main module supports module graph pruning, the graph does not include
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

            void expectGetStatus(HttpModule module, String status = 'release', boolean broken = false) {
                def path = pathOf(module)
                statusFiles[path.replace('/', ':')] = expectGetStatusOf(path, status, broken)
            }
    
            private String pathOf(HttpModule module) {
                if (module instanceof IvyHttpModule) {
                    "${module.organisation}/${module.module}/${module.version}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/load.go

    			// module and loaded from some other module (not the standard library).
    			// Mark its module as a direct dependency.
    			direct[dep.mod.Path] = true
    		}
    	}
    	if maxTooNew != nil {
    		return false, maxTooNew
    	}
    
    	var addRoots []module.Version
    	if ld.Tidy {
    		// When we are tidying a module with a pruned dependency graph, we may need
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. src/cmd/go/internal/test/test.go

    		// Otherwise, if fuzzing identifies a failure it could corrupt checksums in
    		// the module cache (or permanently alter the behavior of std tests for all
    		// users) by writing the failing input to the package's testdata directory.
    		// (See https://golang.org/issue/48495 and test_fuzz_modcache.txt.)
    		mainMods := modload.MainModules
    		if m := pkgs[0].Module; m != nil && m.Path != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    		return 0, err
    	}
    	resInfo, err := findResource(module, namePtr, resTypePtr)
    	runtime.KeepAlive(name16)
    	runtime.KeepAlive(resType16)
    	return resInfo, err
    }
    
    func LoadResourceData(module, resInfo Handle) (data []byte, err error) {
    	size, err := SizeofResource(module, resInfo)
    	if err != nil {
    		return
    	}
    	resData, err := LoadResource(module, resInfo)
    	if err != nil {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modget/get.go

    // selected version of a module (or of the module containing a package),
    // whether a pattern denotes a package or module may change as updates are
    // applied (see the example in mod_get_patchmod.txt).
    //
    // There are a few other ambiguous cases to resolve, too. A package can exist in
    // two different modules at the same version: for example, the package
    // example.com/foo might be found in module example.com and also in module
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

      def _create_simple_gather_and_conv_model(
          self,
          input_type: dtypes.DType,
          filter_shape: Sequence[int],
          is_qat_model: bool = False,
      ) -> module.Module:
        class SimpleGatherAndConvModel(module.Module):
          """A simple model with a single gather and a conv2d."""
    
          def __init__(self):
            """Initializes a SimpleGatherAndConvModel."""
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

            when:
            expectAlignment {
                module('xml') alignsTo('1.0') byVirtualPlatform()
                module('core') alignsTo('1.0')
                module('json') tries('1.1')
                module('foo') group('org2') alignsTo('1.0')
                module('bar') group('org3') alignsTo('1.0')
                module('a') group('org4') tries('1.0') alignsTo('1.1')
                module('b') group('org4') alignsTo('1.1')
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            */
            mavenRepo.module("org", "c", '1.0').publish()
            mavenRepo.module("org", "x", '1.0').publish()
            mavenRepo.module("org", "c", '2.0').dependsOn("org", "x", '1.0').publish()
            mavenRepo.module("org", "a").dependsOn("org", "c", "1.0").publish()
            mavenRepo.module("org", "b").dependsOn("org", "c", "2.0").publish()
            mavenRepo.module("org", "d").dependsOn("org", "x", "1.0").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
Back to top