Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 855 for Explicit (0.41 sec)

  1. maven-model-builder/src/test/resources/poms/depmgmt/root-distance-explicit.xml

    Tamas Cservenak <******@****.***> 1706804704 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Feb 01 16:25:04 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inject/explicit-security-context.yaml.injected

    John Howard <******@****.***> 1709052916 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationPublicationsTest.groovy

            variants.size() == 2
    
            def implicit = variants.first()
            implicit.displayName == displayName
            implicit.attributes == AttributeTestUtil.attributes(["thing": "value1"])
            implicit.artifacts == allArtifacts
    
            def explicit = (variants as List)[1]
            explicit.displayName.displayName == '<config> variant child'
            explicit.attributes == AttributeTestUtil.attributes(["thing": "value2"])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:15 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  4. tensorflow/cc/framework/ops.h

        Initializer(const T& v) {  // NOLINT(runtime/explicit)
          typedef typename RealType<T>::type RealT;
          Tensor t(DataTypeToEnum<RealT>::v(), TensorShape());
          t.flat<RealT>()(0) = RealT(v);
          tensor = t;
        }
    
        Initializer(const Tensor& t) : tensor(t) {}  // NOLINT(runtime/explicit)
    
        /// Construct from a scalar value and an explicit shape
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaReceiverValue.kt

         * fun test(s1: String?, s2: String) {
         *   s1?.length // explicit receiver `s1` has `isSafeNavigation = true`
         *   s2.length // explicit receiver `s2` has `isSafeNavigation = false`
         * }
         * ```
         */
        public val isSafeNavigation: Boolean by validityAsserted(isSafeNavigation)
    
        override val type: KaType by validityAsserted(type)
    }
    
    /**
     * An implicit receiver. For example
     * ```
     * class A {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/modules.txt

    # github.com/ianlancetaylor/demangle v0.0.0-20240312041847-bd984b5ce465
    ## explicit; go 1.13
    github.com/ianlancetaylor/demangle
    # golang.org/x/arch v0.8.0
    ## explicit; go 1.18
    golang.org/x/arch/arm/armasm
    golang.org/x/arch/arm64/arm64asm
    golang.org/x/arch/ppc64/ppc64asm
    golang.org/x/arch/x86/x86asm
    # golang.org/x/build v0.0.0-20240603162849-5dfbda438323
    ## explicit; go 1.21
    golang.org/x/build/relnote
    # golang.org/x/mod v0.18.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. src/vendor/modules.txt

    ## explicit; go 1.18
    golang.org/x/crypto/chacha20
    golang.org/x/crypto/chacha20poly1305
    golang.org/x/crypto/cryptobyte
    golang.org/x/crypto/cryptobyte/asn1
    golang.org/x/crypto/hkdf
    golang.org/x/crypto/internal/alias
    golang.org/x/crypto/internal/poly1305
    golang.org/x/crypto/sha3
    # golang.org/x/net v0.25.1-0.20240603202750-6249541f2a6c
    ## explicit; go 1.18
    golang.org/x/net/dns/dnsmessage
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 872 bytes
    - Viewed (0)
  8. tensorflow/cc/experimental/libtf/value.h

      /// one type (<=8bytes).
      Type type_;
    
      // we use an explicit union here because we want to avoid C++17's
      // variant structures due to c++14 compatibility requirements.
      // TODO(b/183980966): Compare against absl::variant.
      union Data {
        explicit Data() {}
        explicit Data(Float32 f32) : f32(f32) {}
        explicit Data(Int64 i64) : i64(i64) {}
        explicit Data(const char* s) : s(String(s)) {}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:23:45 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtVisibilityCheckerMixIn.kt

        }
    
        /**
         * Returns true for effectively public symbols, including internal declarations with @PublishedApi annotation.
         * In 'Explicit API' mode explicit visibility modifier and explicit return types are required for such symbols.
         * See FirExplicitApiDeclarationChecker.kt
         */
        public fun isPublicApi(symbol: KaSymbolWithVisibility): Boolean = withValidityAssertion {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/passes/post_quantize.cc

    namespace {
    
    // Applies clean-up patterns after quantization.
    class PostQuantizePass : public impl::PostQuantizePassBase<PostQuantizePass> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(PostQuantizePass)
    
      explicit PostQuantizePass() = default;
    
     private:
      void runOnOperation() override;
    };
    
    // TODO: b/305815328 - Consider preserving leading and trailing QDQs for
    // ModifyIONodesPass in TFLite use cases.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top