Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,101 for compiledir (0.32 sec)

  1. test/chan/select5.go

    // license that can be found in the LICENSE file.
    
    // Generate test of channel operations and simple selects.
    // The output of this program is compiled and run to do the
    // actual test.
    
    // Each test does only one real send or receive at a time, but phrased
    // in various ways that the compiler may or may not rewrite
    // into simpler expressions.
    
    package main
    
    import (
    	"bufio"
    	"fmt"
    	"io"
    	"os"
    	"text/template"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 10K bytes
    - Viewed (0)
  2. src/cmd/go/internal/list/list.go

            // Cgo directives
            CgoCFLAGS    []string // cgo: flags for C compiler
            CgoCPPFLAGS  []string // cgo: flags for C preprocessor
            CgoCXXFLAGS  []string // cgo: flags for C++ compiler
            CgoFFLAGS    []string // cgo: flags for Fortran compiler
            CgoLDFLAGS   []string // cgo: flags for linker
            CgoPkgConfig []string // cgo: pkg-config names
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.cc

    #include "tensorflow/compiler/mlir/tf2xla/transforms/passes.h"
    #include "tensorflow/compiler/tf2xla/xla_compilation_device.h"
    #include "tensorflow/compiler/tf2xla/xla_context.h"
    #include "tensorflow/compiler/tf2xla/xla_expression.h"
    #include "tensorflow/compiler/tf2xla/xla_helpers.h"
    #include "tensorflow/compiler/tf2xla/xla_op_registry.h"
    #include "xla/client/xla_builder.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/help/helpdoc.go

    		If the package uses cgo or SWIG, these will be compiled with the
    		OS-native compiler (typically gcc); otherwise they will
    		trigger an error.
    	.cc, .cpp, .cxx, .hh, .hpp, .hxx
    		C++ source files. Only useful with cgo or SWIG, and always
    		compiled with the OS-native compiler.
    	.m
    		Objective-C source files. Only useful with cgo, and always
    		compiled with the OS-native compiler.
    	.s, .S, .sx
    		Assembler source files.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/accessors.go

    	GetConfigurationName() string
    
    	// GetRESTClient gets the webhook client
    	GetRESTClient(clientManager *webhookutil.ClientManager) (*rest.RESTClient, error)
    
    	// GetCompiledMatcher gets the compiled matcher object
    	GetCompiledMatcher(compiler cel.FilterCompiler) matchconditions.Matcher
    
    	// GetName gets the webhook Name field. Note that the name is scoped to the webhook
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tpu_validate_inputs.cc

    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_executor.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_types.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/attribute_utils.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.h"
    #include "xla/client/sharding_builder.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 06:51:01 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/build_xla_ops_pass.cc

    #include "tensorflow/cc/ops/logging_ops.h"
    #include "tensorflow/compiler/jit/defs.h"
    #include "tensorflow/compiler/jit/device_util.h"
    #include "tensorflow/compiler/jit/encapsulate_subgraphs_pass.h"
    #include "tensorflow/compiler/jit/flags.h"
    #include "tensorflow/compiler/jit/xla_cluster_util.h"
    #include "tensorflow/compiler/tf2xla/cc/ops/xla_jit_ops.h"
    #include "tensorflow/compiler/tf2xla/xla_op_registry.h"
    #include "xla/status_macros.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation.go

    	}
    	activation, optionalOldSelfActivation := s.celActivationFactory(sts, obj, oldObj)
    	for i, compiled := range s.compiledRules {
    		rule := s.uncompiledRules[i]
    		if compiled.Error != nil {
    			errs = append(errs, field.Invalid(fldPath, sts.Type, fmt.Sprintf("rule compile error: %v", compiled.Error)))
    			continue
    		}
    		if compiled.Program == nil {
    			// rule is empty
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 32.2K bytes
    - Viewed (0)
  9. platforms/jvm/language-groovy/src/testFixtures/groovy/org/gradle/groovy/compile/AbstractBasicGroovyCompilerIntegrationSpec.groovy

            // Because there is an annotation processor on the classpath,
            // the Java stub of Groovy.groovy will be compiled even if
            // it's not referenced by any other java code, even if the
            // Groovy compiler fails to compile the same class.
            file('build/classes/stub/Groovy.java').exists()
            groovyClassFile('Groovy.class').exists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 09:08:49 UTC 2023
    - 27K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.h

    //
    //   XLAs `mhlo.transpose` operation requires permutation to be an attribute
    //   (compile time value), so it means that if we want to put `tf.Transpose`
    //   into a cluster that will be compiled with XLA, the `%perm` operand must
    //   be a known compiled time value, e.g. result of a `tf.Const` operation.
    //
    class ClusteringPolicy {
     public:
      virtual ~ClusteringPolicy() = default;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 03:47:00 UTC 2023
    - 12.1K bytes
    - Viewed (0)
Back to top