Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for var0 (0.06 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          if (!c->Dim(s0, i).SameHandle(c->Dim(s1, i))) {
            int64_t val0 = c->Value(c->Dim(s0, i));
            int64_t val1 = c->Value(c->Dim(s1, i));
            // Negative value is treated as unknown so all negative values indicate
            // the same dimension.
            if (val0 >= 0 && val1 >= 0 && val0 != val1) return false;
          }
        }
        return true;
      };
    
      bool changed = true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    		infiles := []string{}
    		for i, file := range str.StringList(gofiles, cgofiles) {
    			if base.IsTestFile(file) {
    				continue // Not covering this file.
    			}
    
    			var sourceFile string
    			var coverFile string
    			var key string
    			if base, found := strings.CutSuffix(file, ".cgo1.go"); found {
    				// cgo files have absolute paths
    				base = filepath.Base(base)
    				sourceFile = file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    var grouplessPrefix = "api"
    
    var groupVersions = []schema.GroupVersion{grouplessGroupVersion, testGroupVersion, newGroupVersion}
    
    var scheme = runtime.NewScheme()
    var codecs = serializer.NewCodecFactory(scheme)
    
    var codec = codecs.LegacyCodec(groupVersions...)
    var testCodec = codecs.LegacyCodec(testGroupVersion)
    var newCodec = codecs.LegacyCodec(newGroupVersion)
    var parameterCodec = runtime.NewParameterCodec(scheme)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  4. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // Paywhirl, Inc : https://paywhirl.com/
    // Submitted by Daniel Netzer <******@****.***>
    *.paywhirl.com
    
    // pcarrier.ca Software Inc: https://pcarrier.ca/
    // Submitted by Pierre Carrier <******@****.***>
    bar0.net
    bar1.net
    bar2.net
    rdv.to
    
    // .pl domains (grandfathered)
    art.pl
    gliwice.pl
    krakow.pl
    poznan.pl
    wroc.pl
    zakopane.pl
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "properties": {
            "containerName": {
              "description": "Container name: required for volumes, optional for env vars",
              "type": "string"
            },
            "divisor": {
              "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    var main_init_done chan bool
    
    //go:linkname main_main main.main
    func main_main()
    
    // mainStarted indicates that the main M has started.
    var mainStarted bool
    
    // runtimeInitTime is the nanotime() at which the runtime started.
    var runtimeInitTime int64
    
    // Value to use for signal mask for newly created M's.
    var initSigmask sigset
    
    // The main goroutine.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    fieldPath: spec.nodeName volumeMounts: - name: workload-socket mountPath: /var/run/secrets/workload-spiffe-uds - name: credential-socket mountPath: /var/run/secrets/credential-uds - name: workload-certs mountPath: /var/run/secrets/workload-spiffe-credentials - name: istio-envoy mountPath: /etc/istio/proxy - name: config-volume mountPath: /etc/istio/config {{- if eq .Values.global.pilotCertProvider "istiod" }} - mountPath: /var/run/secrets/istio name: istiod-ca-cert {{- end }} {{- if eq .Values.global.jwtPolicy...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top