Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,244 for sameId (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_tasks.adoc

        fileText.convention("HELLO FROM THE CREATE FILE TASK METHOD") // Set convention
    }
    
    tasks.named<CreateFileTask>("createFileTask") {
        fileText.set("HELLO FROM THE NAMED METHOD") // Override with custom message
    }
    ----
    
    // Add a small excerpt about properties
    
    In the `named()` method, we find the `createFileTask` task and set the text that will be written to the file.
    
    When the task is executed:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    link:{javadocPath}/org/gradle/nativeplatform/NativeBinarySpec.html[NativeBinarySpec], Gradle will create a task named `assembleDependents__${component.name}${binary.variant}__` that _assembles_ (compile and link) the binary and all of its dependent binaries.
    
    For each link:{javadocPath}/org/gradle/nativeplatform/NativeComponentSpec.html[NativeComponentSpec], Gradle will create a task named `assembleDependents__${component.name}__` that _assembles_ all the binaries of the component and all of their...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/reflect/type_test.go

    func TestStructOfEmbeddedIfaceMethodCall(t *testing.T) {
    	type Named interface {
    		Name() string
    	}
    
    	typ := reflect.StructOf([]reflect.StructField{
    		{
    			Anonymous: true,
    			Name:      "Named",
    			Type:      reflect.TypeFor[Named](),
    		},
    	})
    
    	v := reflect.New(typ).Elem()
    	v.Field(0).Set(
    		reflect.ValueOf(reflect.TypeFor[string]()),
    	)
    
    	x := v.Interface().(Named)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. 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)
  10. maven-compat/src/test/java/org/apache/maven/project/TestMavenRepositorySystem.java

     * under the License.
     */
    package org.apache.maven.project;
    
    import javax.inject.Inject;
    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import org.apache.maven.artifact.resolver.ArtifactResolver;
    import org.apache.maven.repository.legacy.LegacyRepositorySystem;
    
    @Named("classpath")
    @Singleton
    @Deprecated
    public class TestMavenRepositorySystem extends LegacyRepositorySystem {
        @Inject
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top