Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 141 for dAtA (0.23 sec)

  1. src/reflect/value.go

    		// to load the data at v.ptr into the interface data word.
    		e.Data = *(*unsafe.Pointer)(v.ptr)
    	default:
    		// Value is direct, and so is the interface.
    		e.Data = v.ptr
    	}
    	// Now, fill in the type portion. We're very careful here not
    	// to have any operation between the e.word and e.typ assignments
    	// that would let the garbage collector observe the partially-built
    	// interface value.
    	e.Type = t
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    ins:[hn,un],args:"animation",props:{close:String},data:{animation:[!0],selClose:".uk-alert-close",duration:150,hideProps:G({opacity:0},un.data.hideProps)},events:[{name:"click",delegate:function(){return this.selClose},handler:function(t){t.preventDefault(),this.close()}}],methods:{close:function(){var t=this;this.toggleElement(this.$el).then(function(){return t.$destroy(!0)})}}},dn={args:"autoplay",props:{automute:Boolean,autoplay:Boolean},data:{automute:!1,autoplay:!0},computed:{inView:functio...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

                - mountPath: /var/run/secrets/istio/kubernetes
                  name: kube-ca-cert
                {{- end }}
                - mountPath: /var/lib/istio/data
                  name: istio-data
                {{ if (isset .ObjectMeta.Annotations `sidecar.istio.io/bootstrapOverride`) }}
                - mountPath: /etc/istio/custom-bootstrap
                  name: custom-bootstrap-volume
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      // For f16 data type on devices with Tensor Cores support NHWC data format
      // is up to ~2x faster.
      const bool is_f16 = input_ty.getElementType().isF16();
      if (is_f16 && CanUseTensorCores(devices)) return "NHWC";
    
      // For f32/f16 data type decision depends on the filter size in spatial
      // dimensions, for other data types we keep current data format.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  5. src/internal/trace/testdata/tests/go122-gc-stress.test

    Strings
    String id=1
    	data="Not worker"
    String id=2
    	data="GC (dedicated)"
    String id=3
    	data="GC (fractional)"
    String id=4
    	data="GC (idle)"
    String id=5
    	data="unspecified"
    String id=6
    	data="forever"
    String id=7
    	data="network"
    String id=8
    	data="select"
    String id=9
    	data="sync.(*Cond).Wait"
    String id=10
    	data="sync"
    String id=11
    	data="chan send"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 139.1K bytes
    - Viewed (0)
  6. cmd/bucket-replication.go

    	case resyncMetaFormat:
    	default:
    		return brs, fmt.Errorf("resyncMeta: unknown format: %d", binary.LittleEndian.Uint16(data[0:2]))
    	}
    	switch binary.LittleEndian.Uint16(data[2:4]) {
    	case resyncMetaVersion:
    	default:
    		return brs, fmt.Errorf("resyncMeta: unknown version: %d", binary.LittleEndian.Uint16(data[2:4]))
    	}
    	// OK, parse data.
    	if _, err = brs.UnmarshalMsg(data[4:]); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

      mv "${tmpfile}" "${file}"
    }
    
    function write-pki-data {
      local data="${1}"
      local path="${2}"
      # remove the path if it exists
      rm -f "${path}"
      if [[ -n "${KUBE_PKI_READERS_GROUP:-}" ]]; then
        (umask 027; echo "${data}" | base64 --decode > "${path}")
        chgrp "${KUBE_PKI_READERS_GROUP:-}" "${path}"
        chmod g+r "${path}"
      else
        (umask 077; echo "${data}" | base64 --decode > "${path}")
      fi
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/load/pkg.go

    			data.p.ImportComment != "" && data.p.ImportComment != path &&
    			!strings.Contains(path, "/vendor/") && !strings.HasPrefix(path, "vendor/") {
    			data.err = fmt.Errorf("code in directory %s expects import %q", data.p.Dir, data.p.ImportComment)
    		}
    		return data.p, data.err
    	})
    
    	return p, loaded, err
    }
    
    // importSpec describes an import declaration in source code. It is used as a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  9. tensorflow/c/c_api.cc

        if (run_options != nullptr && !run_options_proto.ParseFromArray(
                                          run_options->data, run_options->length)) {
          status->status = InvalidArgument("Unparseable RunOptions proto");
          return;
        }
        if (run_metadata != nullptr && run_metadata->data != nullptr) {
          status->status =
              InvalidArgument("Passing non-empty run_metadata is invalid.");
          return;
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  10. src/debug/elf/elf.go

    func (i Class) GoString() string { return stringName(uint32(i), classStrings, true) }
    
    // Data is found in Header.Ident[EI_DATA] and Header.Data.
    type Data byte
    
    const (
    	ELFDATANONE Data = 0 /* Unknown data format. */
    	ELFDATA2LSB Data = 1 /* 2's complement little-endian. */
    	ELFDATA2MSB Data = 2 /* 2's complement big-endian. */
    )
    
    var dataStrings = []intName{
    	{0, "ELFDATANONE"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
Back to top