Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 107 for set_kind (0.2 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/verifier/ChecksumVerificationFailure.java

            super(file);
            this.kind = kind;
            this.expected = expected;
            this.actual = actual;
        }
    
        public ChecksumKind getKind() {
            return kind;
        }
    
        public String getExpected() {
            return expected;
        }
    
        public String getActual() {
            return actual;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/AbstractPropertyAnnotationHandler.java

            this.allowedModifiers = allowedModifiers;
        }
    
        @Override
        public Class<? extends Annotation> getAnnotationType() {
            return annotationType;
        }
    
        @Override
        public Kind getKind() {
            return kind;
        }
    
        @Override
        public ImmutableSet<Class<? extends Annotation>> getAllowedModifiers() {
            return allowedModifiers;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/AccessRule.java

         *     <li>1: the rule defines inaccessible paths</li>
         *     <li>2: the rule defines discouraged paths</li>
         * </ul>
         *
         * @return The type of this access rule.
         */
        int getKind();
    
        /**
         * Returns the file pattern of this access rule.
         *
         * @return The file pattern of this access rule.
         */
        String getPattern();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. docs/metrics/v3.md

    | `minio_cluster_erasure_set_write_quorum`         | `gauge` | Write quorum for the erasure set in a pool                                        | `pool_id,set_id` |
    | `minio_cluster_erasure_set_online_drives_count`  | `gauge` | Count of online drives in the erasure set in a pool                               | `pool_id,set_id` |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
  5. tensorflow/c/eager/graph_function.h

          override {
        return func_record_.GetNewRef();
      }
    
      // For LLVM style RTTI.
      static bool classof(const AbstractFunction* ptr) {
        return ptr->getKind() == kGraph;
      }
    
     private:
      core::RefCountPtr<FunctionRecord> func_record_;
    };
    }  // namespace graph
    }  // namespace tracing
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 04 19:49:06 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. tensorflow/c/eager/abstract_function.h

     protected:
      enum AbstractFunctionKind { kGraph, kMlir };
      explicit AbstractFunction(AbstractFunctionKind kind) : kind_(kind) {}
    
     public:
      // Returns which subclass is this instance of.
      AbstractFunctionKind getKind() const { return kind_; }
    
      // Returns the AbstractFunction as a FunctionDef.
      virtual Status GetFunctionDef(const FunctionDef**) = 0;
    
      // Returns a shared reference to the wrapped function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 04 19:49:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/NestedExceptionPlaceholder.java

        private final Kind kind;
        private final int index;
    
        NestedExceptionPlaceholder(Kind kind, int index) {
            this.kind = kind;
            this.index = index;
        }
    
        public Kind getKind() {
            return kind;
        }
    
        public int getIndex() {
            return index;
        }
    
        enum Kind {
            cause,
            suppressed
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. pilot/pkg/model/policyattachment.go

    			targetRef.GetKind() == gvk.KubernetesGateway.Kind &&
    			target.Name == gatewayName &&
    			(targetRef.GetNamespace() == "" || targetRef.GetNamespace() == p.Namespace) {
    			return true
    		}
    
    		// Service attached
    		if p.IsWaypoint &&
    			config.CanonicalGroup(targetRef.GetGroup()) == gvk.Service.CanonicalGroup() &&
    			targetRef.GetKind() == gvk.Service.Kind &&
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Library.java

            setSourcePath(fileReferenceFactory.fromPath((String) node.attribute("sourcepath")));
        }
    
        public Library(FileReference library) {
            super(library);
        }
    
        @Override
        public String getKind() {
            return "lib";
        }
    
        @Override
        public String toString() {
            return "Library" + super.toString();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. platforms/jvm/java-compiler-plugin/src/main/java/org/gradle/internal/compiler/java/listeners/constants/ConstantsCollector.java

            return mapping;
        }
    
        @Override
        public void started(TaskEvent e) {
    
        }
    
        @Override
        public void finished(TaskEvent e) {
            if (e.getKind() == Kind.ANALYZE) {
                Trees trees = Trees.instance(task);
                ConstantsTreeVisitor visitor = new ConstantsTreeVisitor(task.getElements(), trees, constantDependentsConsumer);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:06:26 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top