Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 156 for Compiler (0.22 sec)

  1. android/guava/src/com/google/common/reflect/TypeToken.java

      }
    
      private TypeToken<? super T> getArraySupertype(Class<? super T> supertype) {
        // with component type, we have lost generic type information
        // Use raw type so that compiler allows us to call getSupertype()
        @SuppressWarnings("rawtypes")
        TypeToken componentType = getComponentType();
        // TODO(cpovirk): checkArgument?
        if (componentType == null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    comment begins with "Unordered output:" then the output is compared to the
    comment, however the order of the lines is ignored. An example with no such
    comment is compiled but not executed. An example with no text after
    "Output:" is compiled, executed, and expected to produce no output.
    
    Godoc displays the body of ExampleXxx to demonstrate the use
    of the function, constant, or variable Xxx. An example of a method M with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

    # pylint: disable=invalid-name
    # pylint: disable=missing-function-docstring
    # pylint: disable=g-direct-tensorflow-import
    
    import enum
    import os
    import re
    import types
    import gast as ast
    
    from tensorflow.compiler.mlir.tfr import tfr_wrapper as tfr
    from tensorflow.core.framework import types_pb2
    from tensorflow.python.autograph.converters import control_flow
    from tensorflow.python.autograph.converters import return_statements
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_server_test.go

    	"strings"
    	"testing"
    	"time"
    )
    
    func testClientHello(t *testing.T, serverConfig *Config, m handshakeMessage) {
    	testClientHelloFailure(t, serverConfig, m, "")
    }
    
    // testFatal is a hack to prevent the compiler from complaining that there is a
    // call to t.Fatal from a non-test goroutine
    func testFatal(t *testing.T, err error) {
    	t.Helper()
    	t.Fatal(err)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  5. pkg/apis/admissionregistration/types.go

    	FieldRef string
    	// The content of type checking information in a human-readable form.
    	// Each line of the warning contains the type that the expression is checked
    	// against, followed by the type check error from the compiler.
    	Warning string
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // ValidatingAdmissionPolicyList is a list of ValidatingAdmissionPolicy.
    type ValidatingAdmissionPolicyList struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    ```mlir
      %input = "tf.IteratorGetNext"(...) {device = "/CPU:0"}
      %compile:2 = "tf._TPUCompileMlir"(...)
      %get_layout = "tf.TPUGetLayoutOp"(%compile#1) {...}
      %copy_to_device = "tf.TPUCopyWithLayout"(%input, %get_layout)
          {device = "/TPU:0"}
      %execute = "tf.TPUExecute"(%copy_to_device, ..., %compile#1)
          {device = "/TPU:0"}
    ```
    
    This way, %compile will determine the layout, which will be respected by
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/prove.go

    // from previous dominating comparisons.
    //
    // By far, the most common redundant pair are generated by bounds checking.
    // For example for the code:
    //
    //	a[i] = 4
    //	foo(a[i])
    //
    // The compiler will generate the following code:
    //
    //	if i >= len(a) {
    //	    panic("not in bounds")
    //	}
    //	a[i] = 4
    //	if i >= len(a) {
    //	    panic("not in bounds")
    //	}
    //	foo(a[i])
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  8. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.tasks.scala.ScalaCompile.setCompiler(org.gradle.language.base.internal.compile.Compiler)> has arguments/return type org.gradle.language.base.internal.compile.Compiler that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (ScalaCompile.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // The content of type checking information in a human-readable form.
      // Each line of the warning contains the type that the expression is checked
      // against, followed by the type check error from the compiler.
      optional string warning = 3;
    }
    
    // MatchCondition represents a condition which must be fulfilled for a request to be sent to a webhook.
    message MatchCondition {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    //    generation because the address can't be re-used. Inserting instructions in the
    //    assembler also means clobbering the temp register and it is a long-term goal
    //    to prevent the compiler doing this so that it can be allocated as a normal
    //    register.
    //
    // For more information about the z/Architecture, the instruction set and the
    // addressing modes it supports take a look at the z/Architecture Principles of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
Back to top