Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 104 for locations (0.16 sec)

  1. src/syscall/syscall_windows.go

    		panic("syscall: string with NUL passed to StringToUTF16")
    	}
    	return a
    }
    
    // UTF16FromString returns the UTF-16 encoding of the UTF-8 string
    // s, with a terminating NUL added. If s contains a NUL byte at any
    // location, it returns (nil, [EINVAL]). Unpaired surrogates
    // are encoded using WTF-8.
    func UTF16FromString(s string) ([]uint16, error) {
    	if bytealg.IndexByteString(s, 0) != -1 {
    		return nil, EINVAL
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    // DNS message packing and unpacking.
    //
    // The package also supports messages with Extension Mechanisms for DNS
    // (EDNS(0)) as defined in RFC 6891.
    //
    // This implementation is designed to minimize heap allocations and avoid
    // unnecessary packing and unpacking as much as possible.
    package dnsmessage
    
    import (
    	"errors"
    )
    
    // Message formats
    
    // A Type is a type of DNS request and response.
    type Type uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.31.md

      package for one more release, but in you must adapt your scripts to install `crictl` manually from
      https://github.com/kubernetes-sigs/cri-tools/releases or a different location.
      
      The `kubeadm` package will stop depending on the `cri-tools` package in Kubernetes 1.32, which means that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    		panic("windows: string with NUL passed to StringToUTF16")
    	}
    	return a
    }
    
    // UTF16FromString returns the UTF-16 encoding of the UTF-8 string
    // s, with a terminating NUL added. If s contains a NUL byte at any
    // location, it returns (nil, syscall.EINVAL).
    func UTF16FromString(s string) ([]uint16, error) {
    	return syscall.UTF16FromString(s)
    }
    
    // UTF16ToString returns the UTF-8 encoding of the UTF-16 sequence s,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  5. src/runtime/asm_amd64.s

    // systemstack_switch is incorrect.
    // Smashes R9.
    TEXT gosave_systemstack_switch<>(SB),NOSPLIT|NOFRAME,$0
    	// Take systemstack_switch PC and add 8 bytes to skip
    	// the prologue. The final location does not matter
    	// as long as we are between the prologue and the epilogue.
    	MOVQ	$runtime·systemstack_switch+8(SB), R9
    	MOVQ	R9, (g_sched+gobuf_pc)(R14)
    	LEAQ	8(SP), R9
    	MOVQ	R9, (g_sched+gobuf_sp)(R14)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  6. 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)
  7. 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 (1)
  8. 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)
  9. 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)
  10. 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)
Back to top