Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 131 for locations (0.25 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	}
    	m.recordContainerEvent(pod, container, containerID, v1.EventTypeNormal, events.StartedContainer, fmt.Sprintf("Started container %s", container.Name))
    
    	// Symlink container logs to the legacy container log location for cluster logging
    	// support.
    	// TODO(random-liu): Remove this after cluster logging supports CRI container log path.
    	containerMeta := containerConfig.GetMetadata()
    	sandboxMeta := podSandboxConfig.GetMetadata()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  2. src/syscall/zsyscall_windows.go

    	"unsafe"
    )
    
    var _ unsafe.Pointer
    
    // Do the interface allocations only once for common
    // Errno values.
    const (
    	errnoERROR_IO_PENDING = 997
    )
    
    var (
    	errERROR_IO_PENDING error = Errno(errnoERROR_IO_PENDING)
    	errERROR_EINVAL     error = EINVAL
    )
    
    // errnoErr returns common boxed Errno values, to prevent
    // allocations at runtime.
    func errnoErr(e Errno) error {
    	switch e {
    	case 0:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "type": "string"
            },
            "rule": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/main/webapp/js/admin/jquery-3.6.3.min.js

    "+n),n=n.replace(te,ne).toLowerCase(),function(e){var t;do{if(t=S?e.lang:e.getAttribute("xml:lang")||e.getAttribute("lang"))return(t=t.toLowerCase())===n||0===t.indexOf(n+"-")}while((e=e.parentNode)&&1===e.nodeType);return!1}}),target:function(e){var t=n.location&&n.location.hash;return t&&t.slice(1)===e.id},root:function(e){return e===a},focus:function(e){return e===C.activeElement&&(!C.hasFocus||C.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:ge(!1),disabled:ge(!0),checked:function(e){var t=e.nodeNam...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 87.8K bytes
    - Viewed (0)
  7. src/main/webapp/js/jquery-3.6.3.min.js

    "+n),n=n.replace(te,ne).toLowerCase(),function(e){var t;do{if(t=S?e.lang:e.getAttribute("xml:lang")||e.getAttribute("lang"))return(t=t.toLowerCase())===n||0===t.indexOf(n+"-")}while((e=e.parentNode)&&1===e.nodeType);return!1}}),target:function(e){var t=n.location&&n.location.hash;return t&&t.slice(1)===e.id},root:function(e){return e===a},focus:function(e){return e===C.activeElement&&(!C.hasFocus||C.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:ge(!1),disabled:ge(!0),checked:function(e){var t=e.nodeNam...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 87.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top