Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 91 for _dot_U (0.18 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm/armasm/gnu.go

    	"bytes"
    	"fmt"
    	"strings"
    )
    
    var saveDot = strings.NewReplacer(
    	".F16", "_dot_F16",
    	".F32", "_dot_F32",
    	".F64", "_dot_F64",
    	".S32", "_dot_S32",
    	".U32", "_dot_U32",
    	".FXS", "_dot_S",
    	".FXU", "_dot_U",
    	".32", "_dot_32",
    )
    
    // GNUSyntax returns the GNU assembler syntax for the instruction, as defined by GNU binutils.
    // This form typically matches the syntax defined in the ARM Reference Manual.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 14 17:21:52 UTC 2016
    - 3.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/escaping.go

    // false if the ident does not match the supported input format of `[a-zA-Z_.-/][a-zA-Z0-9_.-/]*`.
    // Escaping Rules:
    //   - '__' escapes to '__underscores__'
    //   - '.' escapes to '__dot__'
    //   - '-' escapes to '__dash__'
    //   - '/' escapes to '__slash__'
    //   - Identifiers that exactly match a CEL RESERVED keyword escape to '__{keyword}__'. The keywords are: "true", "false",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  3. tensorflow/cc/framework/cc_op_gen_main.cc

    namespace {
    
    void PrintAllCCOps(const std::string& dot_h, const std::string& dot_cc,
                       bool include_internal,
                       const std::vector<string>& api_def_dirs) {
      OpList ops;
      absl::StatusOr<ApiDefMap> api_def_map =
          LoadOpsAndApiDefs(ops, include_internal, api_def_dirs);
      TF_CHECK_OK(api_def_map.status());
      api_def_map->UpdateDocs();
      WriteCCOps(ops, *api_def_map, dot_h, dot_cc);
    }
    
    }  // namespace
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. tensorflow/cc/framework/cc_op_gen.h

    #include "tensorflow/core/framework/op_def.pb.h"
    #include "tensorflow/core/framework/op_gen_lib.h"
    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace cc_op {
    /// Result is written to files dot_h and dot_cc.
    void WriteCCOps(const OpList& ops, const ApiDefMap& api_def_map,
                    const string& dot_h_fname, const string& dot_cc_fname);
    
    }  // namespace cc_op
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 15:31:16 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/maplist.go

    	"k8s.io/apiserver/pkg/cel/common"
    )
    
    // makeMapList returns a queryable interface over the provided x-kubernetes-list-type=map
    // keyedItems. If the provided schema is _not_ an array with x-kubernetes-list-type=map, returns an
    // empty mapList.
    func makeMapList(sts *schema.Structural, items []interface{}) (rv common.MapList) {
    	return common.MakeMapList(&model.Structural{Structural: sts}, items)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 07 02:56:51 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/declaringRepositories-filtering/groovy/build.gradle

                excludeGroupByRegex "my\\.company.*"
            }
        }
    }
    // end::repository-filter[]
    
    // tag::exclusive-repository-filter[]
    repositories {
        // This repository will _not_ be searched for artifacts in my.company
        // despite being declared first
        mavenCentral()
        exclusiveContent {
            forRepository {
                maven {
                    url "https://repo.mycompany.com/maven2"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10CompileTimeConstantProvider.kt

            val bindingContext = analysisContext.analyze(expression)
    
            val constant = ConstantExpressionEvaluator.getPossiblyErrorConstant(expression, bindingContext)
    
            // TODO: how to _not_ evaluate expressions with a compilation error, e.g., uninitialized property access
            if (constant?.usesNonConstValAsConstant == true) return null
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/declaringRepositories-filtering/kotlin/build.gradle.kts

                excludeGroupByRegex("my\\.company.*")
            }
        }
    }
    // end::repository-filter[]
    
    // tag::exclusive-repository-filter[]
    repositories {
        // This repository will _not_ be searched for artifacts in my.company
        // despite being declared first
        mavenCentral()
        exclusiveContent {
            forRepository {
                maven {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/results/VisitedGraphResults.java

        Set<UnresolvedDependency> getUnresolvedDependencies();
    
        /**
         * Returns an optional failure describing an error that occurred during resolution.
         * This failure does not encompass unresolved dependencies and is _not_ captured in the resolution result.
         */
        Optional<ResolveException> getResolutionFailure();
    
        /**
         * Returns the root of the dependency graph.
         */
        MinimalResolutionResult getResolutionResult();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/TrackingHttpHandler.java

    import java.util.Collection;
    
    interface TrackingHttpHandler {
        /**
         * Selects a response producer to handle the given request.
         *
         * This method is called under the state lock. The handler is _not_ called under the state lock. That is, the lock is held only while selecting how to handle the request.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top