Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 5,405 for xdefine (0.41 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_types.h

    limitations under the License.
    ==============================================================================*/
    
    // This file defines the types used in the standard MLIR TensorFlow dialect.
    
    #ifndef TENSORFLOW_COMPILER_MLIR_TENSORFLOW_IR_TF_TYPES_H_
    #define TENSORFLOW_COMPILER_MLIR_TENSORFLOW_IR_TF_TYPES_H_
    
    #include "tensorflow/core/ir/types/dialect.h"
    
    namespace mlir {
    namespace TF {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 29 04:41:05 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  2. pkg/config/analysis/msg/messages.gen.go

    	// VirtualServiceHostNotFoundInGateway defines a diag.MessageType for message "VirtualServiceHostNotFoundInGateway".
    	// Description: Host defined in VirtualService not found in Gateway.
    	VirtualServiceHostNotFoundInGateway = diag.NewMessageType(diag.Warning, "IST0132", "one or more host %v defined in VirtualService %s not found in Gateway %s.")
    
    	// SchemaWarning defines a diag.MessageType for message "SchemaWarning".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h.pump

    // hack bypasses the bug by declaring the members that should otherwise be
    // private as public.
    // Sun Studio versions < 12 also have the above bug.
    #if defined(__SYMBIAN32__) || (defined(__SUNPRO_CC) && __SUNPRO_CC < 0x590)
    # define GTEST_DECLARE_TUPLE_AS_FRIEND_ public:
    #else
    # define GTEST_DECLARE_TUPLE_AS_FRIEND_ \
        template <GTEST_$(n)_TYPENAMES_(U)> friend class tuple; \
       private:
    #endif
    
    
    $range i 0..n-1
    $range j 0..n
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. src/runtime/cgo/gcc_arm64.S

    // license that can be found in the LICENSE file.
    
    .file "gcc_arm64.S"
    
    /*
     * Apple still insists on underscore prefixes for C function names.
     */
    #if defined(__APPLE__)
    #define EXT(s) _##s
    #else
    #define EXT(s) s
    #endif
    
    // Apple's ld64 wants 4-byte alignment for ARM code sections.
    // .align in both Apple as and GNU as treat n as aligning to 2**n bytes.
    .align	2
    
    /*
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 05 16:41:48 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.h

    limitations under the License.
    ==============================================================================*/
    
    // This file defines the operations used in the MLIR TensorFlow Lite dialect.
    
    #ifndef TENSORFLOW_COMPILER_MLIR_LITE_IR_TFL_OPS_H_
    #define TENSORFLOW_COMPILER_MLIR_LITE_IR_TFL_OPS_H_
    
    #include "mlir/Dialect/Traits.h"  // from @llvm-project
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/plan/LocalTaskNode.java

                    throw new IllegalStateException("Task " + taskNode + " has both outputs and destroyables defined.  A task can define either outputs or destroyables, but not both.");
                }
                if (mutations.hasFileInputs) {
                    throw new IllegalStateException("Task " + taskNode + " has both inputs and destroyables defined.  A task can define either inputs or destroyables, but not both.");
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:29:30 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  7. src/net/cgo_unix_cgo.go

    //go:build cgo && !netgo && unix && !darwin
    
    package net
    
    /*
    #define _GNU_SOURCE 1
    
    #cgo CFLAGS: -fno-stack-protector
    #include <sys/types.h>
    #include <sys/socket.h>
    #include <netinet/in.h>
    #include <netdb.h>
    #include <unistd.h>
    #include <string.h>
    #include <stdlib.h>
    
    #ifndef EAI_NODATA
    #define EAI_NODATA -5
    #endif
    
    // If nothing else defined EAI_OVERFLOW, make sure it has a value.
    #ifndef EAI_OVERFLOW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 17:49:28 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. maven-core/src/site/apt/lifecycles.apt.vm

    Lifecycles Reference
    
      Maven defines 4 lifecycles in {{{./apidocs/org/apache/maven/lifecycle/providers/package-summary.html}<<<org.apache.maven.lifecycle.providers>>>}} package:
    
    %{toc|fromDepth=2}
    
    * <<<default>>> Lifecycle
    
      <<<default>>> lifecycle is defined only with phases, <<without>> any associated plugin binding:
      plugins bindings for this lifecycle are {{{./default-bindings.html}defined separately for each packaging}}:
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Jan 08 14:57:39 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  9. helm/minio/templates/_helpers.tpl

    Properly format optional additional arguments to MinIO binary
    */}}
    {{- define "minio.extraArgs" -}}
    {{- range .Values.extraArgs -}}
    {{ " " }}{{ . }}
    {{- end -}}
    {{- end -}}
    
    {{/*
    Return the proper Docker Image Registry Secret Names
    */}}
    {{- define "minio.imagePullSecrets" -}}
    {{/*
    Helm 2.11 supports the assignment of a value to a variable defined in a different scope,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 17 06:04:15 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_version_alignment.adoc

    ====
    
    Using the rule, the versions in the example above align to whatever the selected version of `com.fasterxml.jackson:jackson-bom` defines.
    In this case, `com.fasterxml.jackson:jackson-bom:2.9.5` will be selected as `2.9.5` is the highest version of a module selected.
    In that BOM, the following versions are defined and will be used:
    `jackson-core:2.9.5`,
    `jackson-databind:2.9.5` and
    `jackson-annotation:2.9.0`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.1K bytes
    - Viewed (0)
Back to top