Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 248 for getRand (0.26 sec)

  1. tensorflow/c/experimental/gradients/tape/tape_context.h

      Status RegisterFunction(AbstractFunction*) override;
      Status RemoveFunction(const string& func) override;
      // For LLVM style RTTI.
      static bool classof(const AbstractContext* ptr) {
        return ptr->getKind() == kTape;
      }
      ~TapeContext() override;
    
     private:
      AbstractContext* parent_ctx_;  // Not owned.
      Tape* tape_;
      const GradientRegistry& registry_;
    };
    }  // namespace gradients
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 23 23:12:39 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/model/ParameterInfoImpl.java

        public String getName() {
            return name;
        }
    
        @Override
        public Type getParameterType() {
            return parameterType;
        }
    
        @Override
        public ParameterKindInfo getKind() {
            return kind;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Variable.java

        }
    
        public Variable(FileReference library) {
            super(library);
        }
    
        @Override
        public String getKind() {
            return "var";
        }
    
        @Override
        public String toString() {
            return "Variable" + 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)
  4. security/pkg/util/jwtutil.go

    	case float64:
    		expiration = time.Unix(int64(exp), 0)
    	case json.Number:
    		v, _ := exp.Int64()
    		expiration = time.Unix(v, 0)
    	}
    	return expiration, nil
    }
    
    // GetAud returns the claim `aud` from the token. Returns nil if not found.
    func GetAud(token string) ([]string, error) {
    	claims, err := parseJwtClaims(token)
    	if err != nil {
    		return nil, err
    	}
    
    	rawAud := claims["aud"]
    	if rawAud == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 16:07:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_with_tf2xla.cc

      // If the original type doesn't have a rank, then refine as the updated type
      // has a rank.
      if (!original.hasRank()) return true;
    
      // Both types must have the same rank.
      if (original.getRank() != updated.getRank()) return false;
    
      // Refine if the updated type is bounded.
      return IsBounded(updated);
    }
    
    // Propagates more refined type by cloning op using the new operands. This
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/model/CallableInfoImpl.java

            this.owner = owner;
            this.callableName = callableName;
            this.returnType = returnType;
            this.parameters = parameters;
        }
    
        @Override
        public CallableKindInfo getKind() {
            return kind;
        }
    
        @Override
        public CallableOwnerInfo getOwner() {
            return owner;
        }
    
        @Override
        public String getCallableName() {
            return callableName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. tests/fuzz/pkg_util_fuzzer.go

    // limitations under the License.
    
    package fuzz
    
    import (
    	"istio.io/istio/security/pkg/util"
    )
    
    func FuzzJwtUtil(data []byte) int {
    	_, _ = util.GetExp(string(data))
    	_, _ = util.GetAud(string(data))
    	_, _ = util.ExtractJwtAud(string(data))
    	return 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 20 06:17:08 UTC 2022
    - 805 bytes
    - Viewed (0)
Back to top