Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of about 10,000 for internally (0.42 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/VirtualComponentIdentifier.java

     * limitations under the License.
     */
    package org.gradle.internal.component.external.model;
    
    import org.gradle.api.artifacts.component.ComponentIdentifier;
    
    /**
     * This interface is used to make the difference between a "real" component
     * and something that was either created in a component metadata rule or
     * internally by the engine. Typically, virtual platforms.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/ObjectIdentifiers.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package okhttp3.tls.internal.der
    
    /** ASN.1 object identifiers used internally by this implementation. */
    internal object ObjectIdentifiers {
      const val EC_PUBLIC_KEY = "1.2.840.10045.2.1"
      const val SHA256_WITH_ECDSA = "1.2.840.10045.4.3.2"
      const val RSA_ENCRYPTION = "1.2.840.113549.1.1.1"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Jan 07 16:05:34 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/passes.td

    }
    
    def SHLOSimplifyPass: Pass<"shlo-simplify", "ModuleOp"> {
      let summary = "Apply internal canonicalizations and foldings.";
      let description = [{
        Applies various internally defined patterns.
      }];
    
      let options = [
    
      ];
      let constructor = "CreateSHLOSimplifyPass()";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 19:05:30 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/internal/accesscontrol/ForExternalUse.java

     * limitations under the License.
     */
    
    package org.gradle.internal.accesscontrol;
    
    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Designates a public API declaration that should not be used internally in the Gradle codebase.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Oct 22 03:06:57 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/transforms.h

    // This function is a common entry point for all graph optimizations that are
    // not specific to any hardware. It legalizes SHLO->MHLO, does MHLO->MHLO
    // optimizations by calling `AddMhloOptimizationPasses` internally, and
    // legalizes MHLO->SHLO
    void AddStablehloOptimizationPasses(OpPassManager& pm);
    
    // Adds all the backend-agonstic stableHLO optimization passes
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 01:08:27 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/base/env.go

    // if one or more elements of dir is a symlink.
    func AppendPWD(base []string, dir string) []string {
    	// POSIX requires PWD to be absolute.
    	// Internally we only use absolute paths, so dir should already be absolute.
    	if !filepath.IsAbs(dir) {
    		panic(fmt.Sprintf("AppendPWD with relative path %q", dir))
    	}
    	return append(base, "PWD="+dir)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 16:40:59 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/base/link.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package base
    
    import (
    	"cmd/internal/obj"
    )
    
    // ReservedImports are import paths used internally for generated
    // symbols by the compiler.
    //
    // The linker uses the magic symbol prefixes "go:" and "type:".
    // Avoid potential confusion between import paths and symbols
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 11:28:56 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  8. test/fixedbugs/issue11326.go

    // Tests for golang.org/issue/11326.
    
    package main
    
    func main() {
    	// The gc compiler implementation uses the minimally required 32bit
    	// binary exponent, so these constants cannot be represented anymore
    	// internally. However, the language spec does not preclude other
    	// implementations from handling these. Don't check the error.
    	// var _ = 1e2147483647 // "constant too large"
    	// var _ = 1e646456993  // "constant too large"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 23 05:11:09 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/static-files.md

    ## Details
    
    The first `"/static"` refers to the sub-path this "sub-application" will be "mounted" on. So, any path that starts with `"/static"` will be handled by it.
    
    The `directory="static"` refers to the name of the directory that contains your static files.
    
    The `name="static"` gives it a name that can be used internally by **FastAPI**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 19:56:09 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/api/v1/cluster_tf.h

    // that is compatible with the given device_type. The MLIR should be in the TF
    // Executor Dialect for graph nodes and edges or TF Functional. It will convert
    // to TF Functional internally. Individual Op inside a node should be the
    // Tensorflow Dialect. The output MLIR is in the TF Functional Dialect.  The
    // input MLIR should not have infeed and outfeed ops, which are unsupported via
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 14:08:41 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top