Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 79 for ccCompiler (0.23 sec)

  1. src/cmd/compile/internal/ssa/rewrite.go

    func countRule(v *Value, key string) bool {
    	f := v.Block.Func
    	if f.ruleMatches == nil {
    		f.ruleMatches = make(map[string]int)
    	}
    	f.ruleMatches[key]++
    	return true
    }
    
    // warnRule generates compiler debug output with string s when
    // v is not in autogenerated code, cond is true and the rule has fired.
    func warnRule(cond bool, v *Value, s string) bool {
    	if pos := v.Pos; pos.Line() > 1 && cond {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  2. src/testing/testing.go

    // The value is set to "1" by a -X option to cmd/link. We assume that
    // because this is possible, the compiler will not optimize testBinary
    // into a constant on the basis that it is an unexported package-scope
    // variable that is never changed. If the compiler ever starts implementing
    // such an optimization, we will need some technique to mark this variable
    // as "changed by a cmd/link -X option".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

    from typing import Collection, Iterable, Mapping, Sequence, Tuple, Optional, Union, List
    
    from absl.testing import parameterized
    import numpy as np
    import tensorflow  # pylint: disable=unused-import
    
    from tensorflow.compiler.mlir.quantization.tensorflow.python import representative_dataset as repr_dataset
    from tensorflow.core.framework import function_pb2
    from tensorflow.core.framework import graph_pb2
    from tensorflow.core.framework import node_def_pb2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  4. src/runtime/mheap.go

    //
    // Write barriers are disallowed here because it can be called from
    // gcWork when allocating new workbufs. However, because it's an
    // indirect call from the fixalloc initializer, the compiler can't see
    // this.
    //
    // The heap lock must be held.
    //
    //go:nowritebarrierrec
    func recordspan(vh unsafe.Pointer, p unsafe.Pointer) {
    	h := (*mheap)(vh)
    	s := (*mspan)(p)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. src/net/http/request.go

    // earliest days of HTTP.  This value can also be fetched from the
    // [Header] map as Header["Referer"]; the benefit of making it available
    // as a method is that the compiler can diagnose programs that use the
    // alternate (correct English) spelling req.Referrer() but cannot
    // diagnose programs that use Header["Referrer"].
    func (r *Request) Referer() string {
    	return r.Header.Get("Referer")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top