Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for containerA (0.17 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

    #include <set>
    #include <string>
    #include <unordered_map>
    #include <unordered_set>
    #include <utility>
    #include <vector>
    
    #include "absl/algorithm/container.h"
    #include "absl/base/attributes.h"
    #include "absl/container/flat_hash_map.h"
    #include "absl/container/flat_hash_set.h"
    #include "absl/status/status.h"
    #include "absl/strings/cord.h"
    #include "absl/strings/str_cat.h"
    #include "absl/strings/str_format.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    #include <type_traits>
    #include <unordered_map>
    #include <unordered_set>
    #include <utility>
    #include <vector>
    
    #include "absl/algorithm/container.h"
    #include "absl/base/thread_annotations.h"
    #include "absl/container/flat_hash_map.h"
    #include "absl/container/flat_hash_set.h"
    #include "absl/container/inlined_vector.h"
    #include "absl/strings/escaping.h"
    #include "absl/strings/numbers.h"
    #include "absl/strings/str_cat.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    //
    // syscall_runtime_BeforeFork is for package syscall,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/containerd/containerd
    //   - gvisor.dev/gvisor
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname syscall_runtime_BeforeFork syscall.runtime_BeforeFork
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

          For example, the following pseudo MLIR code (types are left out for
          brevity)
          ```mlir
            func.func @hoist_loop_invariant(%arg0, %arg1) {
              %var = "tf.VarHandleOp"() {container="", shared_name="var_name", device = "/device:CPU:0"}
              %results:2 = "tf.WhileRegion"(%arg0, %arg1) ({
              ^bb0(%arg2, %arg3):
                %0 = "tf.OpA"() {is_stateless = true}
                "tf.Yield"(%0)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let description = [{
        Returns a handle for a variable resource from its name.
        container: the container this variable is placed in.
        shared_name: the name by which this variable is referred to.
      }];
    
      let arguments = (ins
        DefaultValuedStrAttr<StrAttr, "">:$container,
        DefaultValuedStrAttr<StrAttr, "">:$shared_name
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"self.setNullableStr != null":    "no matching overload for '_!=_' applied to '(string, null)",
    			},
    		},
    		{name: "null values in container types",
    			obj: map[string]interface{}{
    				"m": map[string]interface{}{
    					"a": nil,
    					"b": "not-nil",
    				},
    				"l": []interface{}{
    					nil, "not-nil",
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

    #include <cmath>
    #include <cstdint>
    #include <iterator>
    #include <memory>
    #include <optional>
    #include <tuple>
    #include <utility>
    
    #include "absl/algorithm/container.h"
    #include "absl/log/check.h"
    #include "llvm/ADT/STLExtras.h"
    #include "llvm/ADT/SmallVector.h"
    #include "llvm/Support/Debug.h"
    #include "mlir/Dialect/Arith/IR/Arith.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func CryptAcquireContext(provhandle *Handle, container *uint16, provider *uint16, provtype uint32, flags uint32) (err error) {
    	r1, _, e1 := syscall.Syscall6(procCryptAcquireContextW.Addr(), 5, uintptr(unsafe.Pointer(provhandle)), uintptr(unsafe.Pointer(container)), uintptr(unsafe.Pointer(provider)), uintptr(provtype), uintptr(flags), 0)
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  9. cmd/admin-handlers.go

    	if objectAPI == nil {
    		return
    	}
    
    	if globalInplaceUpdateDisabled || currentReleaseTime.IsZero() {
    		// if MINIO_UPDATE=off - inplace update is disabled, mostly in containers.
    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrMethodNotAllowed), r.URL)
    		return
    	}
    
    	vars := mux.Vars(r)
    	updateURL := vars["updateURL"]
    	mode := getMinioMode()
    	if updateURL == "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  10. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.plugins.ide.eclipse.model.Container.getKind()> does not have raw return type assignable to org.gradle.api.provider.Provider in (Container.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
Back to top