Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,812 for getNames (0.24 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/strip_tf_attributes.cc

          func.removeArgAttr(i, namedAttr.getName());
        }
      }
    
      for (int i = 0; i < func.getNumResults(); ++i) {
        auto stripAttrs = llvm::to_vector<4>(llvm::make_filter_range(
            func.getResultAttrs(i),
            [](NamedAttribute namedAttr) { return ShouldStripAttr(namedAttr); }));
        for (auto namedAttr : stripAttrs) {
          func.removeResultAttr(i, namedAttr.getName());
        }
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 08:06:04 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/InvalidManagedModelMutationIntegrationTest.groovy

        def "mutating managed inputs of a rule is not allowed"() {
            when:
            buildScript '''
                @Managed
                interface Person {
                    String getName()
                    void setName(String name)
                }
    
                class RulePlugin extends RuleSource {
                    @Model
                    void person(Person person) {
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/project/taskfactory/DefaultTaskClassInfoStore.java

                    Class<?> previousDeclaringClass = processedMethods.put(method.getName(), declaringClass);
                    if (taskActionFactory instanceof IncrementalTaskActionFactory
                        && foundIncrementalTaskActionFactory != null
                        && method.getName().equals(foundIncrementalTaskActionFactory.getMethod().getName())
                    ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:47 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/op_or_arg_name_mapper.cc

      llvm::StringRef ref = GetUniqueName(GetName(op_or_val), hash_value);
      name = StringRefToView(ref);
      return ref;
    }
    
    absl::string_view OpOrArgNameMapper::GetUniqueNameView(OpOrVal op_or_val) {
      auto& name = op_or_val_to_name_[op_or_val];
      if (!name.empty()) return name;
      // Update the value in the map with unique name.
      name = StringRefToView(GetUniqueName(GetName(op_or_val)));
      return name;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/dispatch/ProxyDispatchAdapter.java

                    return otherHandler.type.equals(type) && otherHandler.dispatch == dispatch;
                }
    
                if (method.getName().equals("hashCode")) {
                    return dispatch.hashCode();
                }
                if (method.getName().equals("toString")) {
                    return type.getSimpleName() + " broadcast";
                }
                dispatch.dispatch(new MethodInvocation(method, parameters));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultChecksumAlgorithmService.java

                }
                DefaultChecksumAlgorithm that = (DefaultChecksumAlgorithm) o;
                return Objects.equals(factory.getName(), that.factory.getName());
            }
    
            @Override
            public int hashCode() {
                return Objects.hash(factory.getName());
            }
        }
    
        private static class DefaultChecksumCalculator implements ChecksumCalculator {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/execution/FilePropertyVisitor.java

        /**
         * Called for each root of the current property.
         * <p>
         * {@link VisitState#getName()} and {@link VisitState#getPath()} may be called during.
         */
        void preRoot(VisitState state);
    
        /**
         * Called before entering a directory.
         * <p>
         * {@link VisitState#getName()} and {@link VisitState#getPath()} may be called during.
         */
        void preDirectory(VisitState state);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlPlexusConfiguration.java

        public XmlPlexusConfiguration(XmlNode node) {
            super(node.getName(), node.getValue());
            node.getAttributes().forEach(this::setAttribute);
            node.getChildren().forEach(c -> this.addChild(new XmlPlexusConfiguration(c)));
        }
    
        @Override
        public String toString() {
            final StringBuilder buf = new StringBuilder().append('<').append(getName());
            for (final String a : getAttributeNames()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 03 15:52:23 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/AbstractTester.java

      @GwtIncompatible // not used under GWT, and super.getName() is not available under J2CL
      public final String getTestMethodName() {
        return super.getName();
      }
    
      @J2ktIncompatible
      @GwtIncompatible // not used under GWT, and super.getName() is not available under J2CL
      @Override
      public String getName() {
        return Platform.format("%s[%s]", super.getName(), suiteName);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/collect/testing/AbstractTester.java

      @GwtIncompatible // not used under GWT, and super.getName() is not available under J2CL
      public final String getTestMethodName() {
        return super.getName();
      }
    
      @J2ktIncompatible
      @GwtIncompatible // not used under GWT, and super.getName() is not available under J2CL
      @Override
      public String getName() {
        return Platform.format("%s[%s]", super.getName(), suiteName);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top