Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 47 for Binary1 (0.33 sec)

  1. CREDITS

    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    
    
    -------
    internal/common/binary.go in the gopsutil is copied and modified from golang/encoding/binary.go.
    
    
    
    Copyright (c) 2009 The Go Authors. All rights reserved.
    
    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions are
    met:
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  2. cmd/encryption-v1.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"bufio"
    	"bytes"
    	"context"
    	"crypto/hmac"
    	"crypto/rand"
    	"crypto/subtle"
    	"encoding/binary"
    	"encoding/hex"
    	"errors"
    	"fmt"
    	"io"
    	"net/http"
    	"path"
    	"strconv"
    	"strings"
    
    	"github.com/minio/kms-go/kes"
    	"github.com/minio/minio/internal/crypto"
    	"github.com/minio/minio/internal/etag"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  3. pom.xml

                libraries that provide a widely-used project build tool, targeting mainly Java
                development. Apache Maven promotes the use of dependencies via a
                standardized coordinate system, binary plugins, and a standard build
                lifecycle.</charter>
              </asfExtOptions>
            </configuration>
          </plugin>
          <plugin>
            <groupId>org.apache.rat</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

        verbs: ["deletecollection"]
        omitStages:
          - "RequestReceived"
    
      # Secrets, ConfigMaps, TokenRequest and TokenReviews can contain sensitive & binary data,
      # so only log at the Metadata level.
      - level: Metadata
        resources:
          - group: "" # core
            resources: ["secrets", "configmaps", "serviceaccounts/token"]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    std::unique_ptr<OperationPass<func::FuncOp>> CreateTPUColocateSplitsPass();
    
    // Creates a pass that replicates the tf._TPUCompileMlir op on each host that
    // needs the compiled program. It helps avoid transferring the compiled binary
    // between hosts.
    std::unique_ptr<OperationPass<mlir::ModuleOp>>
    CreateTPUCompileOpReplicationPass();
    
    // Creates a pass that applies space to depth transform
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    		resourceVersion = w.resourceVersion
    	}
    	if resourceVersion < oldest-1 {
    		return nil, errors.NewResourceExpired(fmt.Sprintf("too old resource version: %d (%d)", resourceVersion, oldest-1))
    	}
    
    	// Binary search the smallest index at which resourceVersion is greater than the given one.
    	f := func(i int) bool {
    		return w.cache[(w.startIndex+i)%w.capacity].ResourceVersion > resourceVersion
    	}
    	first := sort.Search(size, f)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  7. RELEASE.md

    * <IF A CHANGE CLOSES A GITHUB ISSUE, IT SHOULD BE DOCUMENTED HERE>
    * <NOTES SHOULD BE GROUPED PER AREA>
    
    * GPU
        * Support for NVIDIA GPUs with compute capability 8.9 (e.g. L4 & L40) has
          been added to TF binary distributions (Python wheels).
    * Replace `DebuggerOptions` of TensorFlow Quantizer, and migrate to
      `DebuggerConfig` of StableHLO Quantizer.
    * Add TensorFlow to StableHLO converter to TensorFlow pip package.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.31.md

    - Kubeadm: switched kubeadm to start using the CRI client library instead of shelling out of the `crictl` binary
      for actions against a CRI endpoint. The kubeadm deb/rpm packages will continue to install the `cri-tools`
      package for one more release, but in you must adapt your scripts to install `crictl` manually from
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    }
    
    // Deprecated: This is maintained to aid in porting old code that is not yet
    // dynamic shape aware and uses broadcasting modes that CHLO does not support.
    // Applies static binary broadcasting to a binary elementwise op.
    // This is a legacy helper to provide general broadcasting support in legacy,
    // static shaped code that relies on non-left-padded broadcasting semantics.
    template <typename BinaryOp>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.27.md

    - Made `apiextensions-apiserver` binary linking static (also affects the deb and rpm packages). ([#114226](https://github.com/kubernetes/kubernetes/pull/114226), [@saschagrunert](https://github.com/saschagrunert))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
Back to top