Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. cmd/kubeadm/app/constants/constants.go

    	KubeScheduler = "kube-scheduler"
    	// KubeProxy defines variable used internally when referring to kube-proxy component
    	KubeProxy = "kube-proxy"
    	// CoreDNS defines variable used internally when referring to the CoreDNS component
    	CoreDNS = "CoreDNS"
    	// Kubelet defines variable used internally when referring to the Kubelet
    	Kubelet = "kubelet"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/encoder.md

    !!! note
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/JvmLibraryProjectInitDescriptor.java

     * limitations under the License.
     */
    
    package org.gradle.buildinit.plugins.internal;
    
    import org.gradle.api.internal.DocumentationRegistry;
    import org.gradle.buildinit.plugins.internal.model.Description;
    import org.gradle.buildinit.plugins.internal.modifiers.ComponentType;
    
    import java.util.List;
    
    import static com.google.common.collect.Lists.newArrayList;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. src/syscall/pwd_plan9.go

    )
    
    var (
    	wdmu  sync.Mutex // guards following
    	wdSet bool
    	wdStr string
    )
    
    // Ensure current working directory seen by this goroutine matches
    // the most recent [Chdir] called in any goroutine. It's called internally
    // before executing any syscall which uses a relative pathname. Must
    // be called with the goroutine locked to the OS thread, to prevent
    // rescheduling on a different thread (potentially with a different
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top