Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 131 for locations (0.3 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    		return errnoErr(errno)
    	}
    	return nil
    }
    
    // RemoteIovec is Iovec with the pointer replaced with an integer.
    // It is used for ProcessVMReadv and ProcessVMWritev, where the pointer
    // refers to a location in a different process' address space, which
    // would confuse the Go garbage collector.
    type RemoteIovec struct {
    	Base uintptr
    	Len  int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  2. configure.py

    def setup_python(environ_cp):
      """Setup python related env variables."""
      # Get PYTHON_BIN_PATH, default is the current running python.
      default_python_bin_path = sys.executable
      ask_python_bin_path = ('Please specify the location of python. [Default is '
                             '{}]: ').format(default_python_bin_path)
      while True:
        python_bin_path = get_from_env_or_user_or_default(environ_cp,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. pkg/apis/batch/validation/validation.go

    // metadata, and the labels on the pod template are as generated.
    //
    // TODO: generalize for other controller objects that will follow the same pattern, such as ReplicaSet and DaemonSet, and
    // move to new location.  Replace batch.Job with an interface.
    func validateGeneratedSelector(obj *batch.Job, validateBatchLabels bool) field.ErrorList {
    	allErrs := field.ErrorList{}
    	if obj.Spec.ManualSelector != nil && *obj.Spec.ManualSelector {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      // have the same requested device, which in turn will be the requested device
      // for the entire encapsulated subgraph. In case of soft placement, use a
      // deterministic approach to fill in the requested device. Handle co-location
      // constraints similarly if they exist.
      if (device_.empty()) {
        device_ = node->assigned_device_name().empty()
                      ? node->requested_device()
                      : node->assigned_device_name();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

    #include "mlir/IR/BuiltinAttributes.h"  // from @llvm-project
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "mlir/IR/BuiltinTypes.h"  // from @llvm-project
    #include "mlir/IR/Location.h"  // from @llvm-project
    #include "mlir/IR/MLIRContext.h"  // from @llvm-project
    #include "mlir/IR/PatternMatch.h"  // from @llvm-project
    #include "mlir/IR/Value.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  6. fess-crawler/src/test/resources/ajax/js/jquery-2.1.1.min.js

    "+a),a=a.replace(cb,db).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return...
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 82.3K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/riscv/obj.go

    	var inss []*instruction
    	if p.Ctxt.Flag_shared {
    		// TLS initial-exec mode - load TLS offset from GOT, add the thread pointer
    		// register, then load from or store to the resulting memory location.
    		insAUIPC := &instruction{as: AAUIPC, rd: REG_TMP}
    		insLoadTLSOffset := &instruction{as: ALD, rd: REG_TMP, rs1: REG_TMP}
    		inss = []*instruction{insAUIPC, insLoadTLSOffset, insAddTP, ins}
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  8. src/cmd/go/internal/test/test.go

    The following flags are also recognized by 'go test' and can be used to
    profile the tests during execution:
    
    	-benchmem
    	    Print memory allocation statistics for benchmarks.
    	    Allocations made in C or using C.malloc are not counted.
    
    	-blockprofile block.out
    	    Write a goroutine blocking profile to the specified file
    	    when all tests are complete.
    	    Writes test binary as -c would.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  9. cmd/kubelet/app/server.go

    		//    kubeadm needs the initial data in the kubeconfig to be placed into the cert store
    		// 2. If the client provides only an initial bootstrap kubeconfig file, we must create a
    		//    kubeconfig file at the target location that points to the cert store, but until
    		//    the file is present the client config will have no certs
    		// 3. If the client provides both and the kubeconfig is valid, we must ignore the bootstrap
    		//    kubeconfig.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	SPDRP_REMOVAL_POLICY_OVERRIDE     SPDRP = 0x00000021 // Removal Policy Override (RW)
    	SPDRP_INSTALL_STATE               SPDRP = 0x00000022 // Device Install State (R)
    	SPDRP_LOCATION_PATHS              SPDRP = 0x00000023 // Device Location Paths (R)
    	SPDRP_BASE_CONTAINERID            SPDRP = 0x00000024 // Base ContainerID (R)
    
    	SPDRP_MAXIMUM_PROPERTY SPDRP = 0x00000025 // Upper bound on ordinals
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
Back to top