Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 171 for instantiation (0.47 sec)

  1. tensorflow/c/eager/c_api_distributed_test.cc

                             std::vector<std::string>* control_ret_node_names,
                             bool* control_rets_updated) override {
        // Inject failure to function instantiation if finding a node that contains
        // the given node name (error_node_) and requested device (error_device_).
        for (const auto node : graph->get()->nodes()) {
          if (node->name().find(error_node_) != string::npos &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskContainer.java

        }
    
        @Override
        public <S extends Task> TaskCollection<S> withType(Class<S> type) {
            Instantiator instantiator = getInstantiator();
            return Cast.uncheckedCast(instantiator.newInstance(DefaultRealizableTaskCollection.class, type, super.withType(type), modelNode, instantiator));
        }
    
        @Deprecated
        @Override
        public boolean remove(Object o) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 09:54:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  3. src/go/types/predicates.go

    func identicalOrigin(x, y *Named) bool {
    	// TODO(gri) is this correct?
    	return x.Origin().obj == y.Origin().obj
    }
    
    // identicalInstance reports if two type instantiations are identical.
    // Instantiations are identical if their origin and type arguments are
    // identical.
    func identicalInstance(xorig Type, xargs []Type, yorig Type, yargs []Type) bool {
    	if len(xargs) != len(yargs) {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/predicates.go

    func identicalOrigin(x, y *Named) bool {
    	// TODO(gri) is this correct?
    	return x.Origin().obj == y.Origin().obj
    }
    
    // identicalInstance reports if two type instantiations are identical.
    // Instantiations are identical if their origin and type arguments are
    // identical.
    func identicalInstance(xorig Type, xargs []Type, yorig Type, yargs []Type) bool {
    	if len(xargs) != len(yargs) {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. src/go/types/assignments.go

    	if sig, _ := under(x.typ).(*Signature); sig != nil && sig.TypeParams().Len() > 0 {
    		check.errorf(x, WrongTypeArgCount, "cannot use generic function %s without instantiation in %s", x, context)
    		x.mode = invalid
    		return
    	}
    
    	// spec: "If a left-hand side is the blank identifier, any typed or
    	// non-constant value except for the predeclared identifier nil may
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/assignments.go

    	if sig, _ := under(x.typ).(*Signature); sig != nil && sig.TypeParams().Len() > 0 {
    		check.errorf(x, WrongTypeArgCount, "cannot use generic function %s without instantiation in %s", x, context)
    		x.mode = invalid
    		return
    	}
    
    	// spec: "If a left-hand side is the blank identifier, any typed or
    	// non-constant value except for the predeclared identifier nil may
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:21:43 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. api/maven-api-plugin/src/main/mdo/plugin.mdo

            <field>
              <name>instantiationStrategy</name>
              <version>1.0.0/1.1.0</version>
              <type>String</type>
              <defaultValue>per-lookup</defaultValue>
              <description>Specify the instantiation strategy.</description>
            </field>
            <field>
              <name>executionStrategy</name>
              <version>1.0.0/1.1.0</version>
              <type>String</type>
              <description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/AbstractTask.java

    import org.gradle.internal.extensibility.ExtensibleDynamicObject;
    import org.gradle.internal.hash.ClassLoaderHierarchyHasher;
    import org.gradle.internal.hash.HashCode;
    import org.gradle.internal.instantiation.InstanceGenerator;
    import org.gradle.internal.logging.LoggingManagerInternal;
    import org.gradle.internal.logging.StandardOutputCapture;
    import org.gradle.internal.logging.slf4j.ContextAwareTaskLogger;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_node_status.go

    // repopulated and the volume ReportedInUse is initialized to false, while the
    // VolumesInUse list from the Node object still contains the state from the
    // previous kubelet instantiation.
    //
    // Once the volumes are added to the dsw, the ReportedInUse field needs to be
    // synced from the VolumesInUse list in the Node.Status.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  10. src/go/types/decl.go

    	// This avoids a nuisance in the best case (non-parameterized receiver type) and
    	// since the method is not a type, we get an error. If we have a parameterized
    	// receiver type, instantiating the receiver type leads to the instantiation of
    	// its methods, and we don't want a cycle error in that case.
    	// TODO(gri) review if this is correct and/or whether we still need this?
    	saved := obj.color_
    	obj.color_ = black
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
Back to top