Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,003 for sameId (0.16 sec)

  1. src/go/types/subst.go

    	expanding *Named   // if non-nil, the instance that is being expanded
    	ctxt      *Context
    }
    
    func (subst *subster) typ(typ Type) Type {
    	switch t := typ.(type) {
    	case nil:
    		// Call typOrNil if it's possible that typ is nil.
    		panic("nil typ")
    
    	case *Basic:
    		// nothing to do
    
    	case *Alias:
    		// This code follows the code for *Named types closely.
    		// TODO(gri) try to factor better
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/java/JavaApplicationOutgoingVariantsIntegrationTest.groovy

                    apply plugin: 'jvm-ecosystem'
                    configurations.consume.attributes.attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage, Usage.JAVA_API))
                    configurations.consume.attributes.attribute(LibraryElements.LIBRARY_ELEMENTS_ATTRIBUTE, objects.named(LibraryElements, LibraryElements.CLASSES))
                }
            """
    
            when:
            resolve()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/build.go

    They must not be standard packages (like fmt), meta-patterns (std, cmd,
    all), or relative or absolute file paths.
    
    - All arguments must have the same version suffix. Different queries are not
    allowed, even if they refer to the same version.
    
    - All arguments must refer to packages in the same module at the same version.
    
    - Package path arguments must refer to main packages. Pattern arguments
    will only match main packages.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  4. src/os/types.go

    	ModeTemporary  = fs.ModeTemporary  // T: temporary file; Plan 9 only
    	ModeSymlink    = fs.ModeSymlink    // L: symbolic link
    	ModeDevice     = fs.ModeDevice     // D: device file
    	ModeNamedPipe  = fs.ModeNamedPipe  // p: named pipe (FIFO)
    	ModeSocket     = fs.ModeSocket     // S: Unix domain socket
    	ModeSetuid     = fs.ModeSetuid     // u: setuid
    	ModeSetgid     = fs.ModeSetgid     // g: setgid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-development/src/main/java/org/gradle/initialization/buildsrc/GradlePluginApiVersionAttributeConfigurationAction.java

            setAttributeForConfiguration(configurations.named(sourceSet.getCompileClasspathConfigurationName()), instantiator);
            setAttributeForConfiguration(configurations.named(sourceSet.getRuntimeClasspathConfigurationName()), instantiator);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:27:57 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. src/go/types/api_predicates.go

    //
    // Predicates such as [Identical], [Implements], and
    // [Satisfies] assume that both operands belong to a
    // consistent collection of symbols ([Object] values).
    // For example, two [Named] types can be identical only if their
    // [Named.Obj] methods return the same [TypeName] symbol.
    // A collection of symbols is consistent if, for each logical
    // package whose path is P, the creation of those symbols
    // involved at most one call to [NewPackage](P, ...).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 16:36:08 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test_base.py

                return str(stablehlo_module)
        raise ValueError('No XlaCallModule found in saved model.')
    
      def _get_num_xla_call_module_op(self, output_saved_model_path: str) -> int:
        """Gets the number of XlaCallModule ops in the output saved model."""
        root = load.load(output_saved_model_path)
        tf_graph_def = root.signatures['serving_default'].graph.as_graph_def()
        count = 0
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. src/internal/types/testdata/check/decls2/decls2a.go

    func (x *T1) f /* ERROR "field and method with the same name f" */ () {}
    
    // Conflict between embedded field and method name,
    // with the embedded field being a basic type.
    type T1b struct {
    	int
    }
    
    func (T1b) int /* ERROR "field and method" */ () {}
    
    type T1c struct {
    	time.Time
    }
    
    func (T1c) Time /* ERROR "field and method with the same name Time" */ () int { return 0 }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    // all), or relative or absolute file paths.
    //
    // - All arguments must have the same version suffix. Different queries are not
    // allowed, even if they refer to the same version.
    //
    // - All arguments must refer to packages in the same module at the same version.
    //
    // - Package path arguments must refer to main packages. Pattern arguments
    // will only match main packages.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/subst.go

    	expanding *Named   // if non-nil, the instance that is being expanded
    	ctxt      *Context
    }
    
    func (subst *subster) typ(typ Type) Type {
    	switch t := typ.(type) {
    	case nil:
    		// Call typOrNil if it's possible that typ is nil.
    		panic("nil typ")
    
    	case *Basic:
    		// nothing to do
    
    	case *Alias:
    		// This code follows the code for *Named types closely.
    		// TODO(gri) try to factor better
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top