Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 62 for RAW (0.04 sec)

  1. tensorflow/compiler/mlir/lite/python/converter_python_api.cc

      toco_log_after.SerializeToOstream(&ostream_after);
      ostream_after.close();
      toco::LogDump(toco::kLogLevelModelChanged, "tflite_graph", *flatbuffer_model);
    }
    
    // NOTE(aselle): We are using raw PyObject's here because we want to make
    // sure we input and output bytes rather than unicode strings for Python3.
    PyObject* Convert(PyObject* model_flags_proto_txt_raw,
                      PyObject* toco_flags_proto_txt_raw,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. src/os/exec.go

    )
    
    // ErrProcessDone indicates a [Process] has finished.
    var ErrProcessDone = errors.New("os: process already finished")
    
    type processMode uint8
    
    const (
    	// modePID means that Process operations such use the raw PID from the
    	// Pid field. handle is not used.
    	//
    	// This may be due to the host not supporting handles, or because
    	// Process was created as a literal, leaving handle unset.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/Helpers.java

       * suitable for testing that map entries cannot be modified via a nefarious implementation of
       * equals. This is used for testing unmodifiable collections of map entries; for example, it
       * should not be possible to access the raw (modifiable) map entry via a nefarious equals method.
       */
      public static <K extends @Nullable Object, V extends @Nullable Object>
          Entry<K, V> nefariousMapEntry(K key, V value) {
        return new Entry<K, V>() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/Helpers.java

       * suitable for testing that map entries cannot be modified via a nefarious implementation of
       * equals. This is used for testing unmodifiable collections of map entries; for example, it
       * should not be possible to access the raw (modifiable) map entry via a nefarious equals method.
       */
      public static <K extends @Nullable Object, V extends @Nullable Object>
          Entry<K, V> nefariousMapEntry(K key, V value) {
        return new Entry<K, V>() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  5. cmd/storage-datatypes.go

    				return i
    			}
    		}
    		return -1
    	}
    
    	for i, ver := range f.Versions {
    		if ver.VersionID == v {
    			return i
    		}
    	}
    	return -1
    }
    
    // RawFileInfo - represents raw file stat information as byte array.
    // The above means that any added/deleted fields are incompatible.
    // Make sure to bump the internode version at storage-rest-common.go
    type RawFileInfo struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. pilot/pkg/simulation/traffic.go

    		return fc.GetTransportProtocol() == ""
    	}, func(fc *listener.FilterChainMatch) bool {
    		if !hasTLSInspector {
    			// Without tls inspector, transport protocol will always be raw buffer
    			return fc.GetTransportProtocol() == xdsfilters.RawBufferTransportProtocol
    		}
    		switch fc.GetTransportProtocol() {
    		case xdsfilters.TLSTransportProtocol:
    			return input.TLS == TLS || input.TLS == MTLS
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    	// except when it doesn't.
    	var icfg bytes.Buffer
    	fmt.Fprintf(&icfg, "# import config\n")
    	for i, raw := range p.Internal.RawImports {
    		final := p.Imports[i]
    		if final != raw {
    			fmt.Fprintf(&icfg, "importmap %s=%s\n", raw, final)
    		}
    	}
    	for _, a1 := range a.Deps {
    		p1 := a1.Package
    		if p1 == nil || p1.ImportPath == "" || a1.built == "" {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. samples/addons/grafana.yaml

    dashboard","url":"/dashboard/db/istio-workload-dashboard?var-workload=${__cell_2:raw}&var-namespace=${__cell_3:raw}"}]},{"id":"custom.align"}]},{"matcher":{"id":"byName","options":"destination_service"},"properties":[{"id":"displayName","value":"Service"},{"id":"unit","value":"short"},{"id":"decimals","value":2},{"id":"links","value":[{"targetBlank":false,"title":"$__cell dashboard","url":"/dashboard/db/istio-service-dashboard?var-service=${__cell_1:raw}"}]},{"id":"custom.align"},{"id":"custom.minWidth","value":40...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go

    	}
    
    	// Make sure the compared CAs are whitespace-trimmed. The function clientcmd.LoadFromFile() just decodes
    	// the base64 CA and places it raw in the v1.Config object. In case the user has extra whitespace
    	// in the CA they used to create a kubeconfig this comparison to a generated v1.Config will otherwise fail.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 27K bytes
    - Viewed (0)
  10. pilot/pkg/networking/util/util.go

    		return netip.Prefix{}, fmt.Errorf("empty address")
    	}
    
    	// Already a CIDR, just parse it.
    	if strings.Contains(addr, "/") {
    		return netip.ParsePrefix(addr)
    	}
    
    	// Otherwise it is a raw IP. Make it a /32 or /128 depending on family
    	ipa, err := netip.ParseAddr(addr)
    	if err != nil {
    		return netip.Prefix{}, err
    	}
    
    	return netip.PrefixFrom(ipa, ipa.BitLen()), nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
Back to top