Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 67 for desc2 (0.28 sec)

  1. pkg/controller/endpointslice/endpointslice_controller_test.go

    }
    
    func TestServiceExternalNameTypeSync(t *testing.T) {
    	serviceName := "testing-1"
    	namespace := metav1.NamespaceDefault
    
    	testCases := []struct {
    		desc    string
    		service *v1.Service
    	}{
    		{
    			desc: "External name with selector and ports should not receive endpoint slices",
    			service: &v1.Service{
    				ObjectMeta: metav1.ObjectMeta{Name: serviceName, Namespace: namespace},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/xcoff.go

    				name := ldr.SymExtname(s)
    				ldr.SetSymExtname(s, "."+name)
    
    				desc := ldr.MakeSymbolUpdater(ldr.CreateExtSym(name, 0))
    				desc.SetReachable(true)
    				desc.SetType(sym.SNOPTRDATA)
    				desc.AddAddr(ctxt.Arch, s)
    				desc.AddAddr(ctxt.Arch, toc.Sym())
    				desc.AddUint64(ctxt.Arch, 0)
    			}
    		}
    	}
    }
    
    // Loader section
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  3. pkg/apis/storage/validation/validation_test.go

    func TestCSIServiceAccountToken(t *testing.T) {
    	driverName := "test-driver"
    	gcp := "gcp"
    	aws := "aws"
    	notRequiresRepublish := false
    	tests := []struct {
    		desc      string
    		csiDriver *storage.CSIDriver
    		wantErr   bool
    	}{{
    		desc: "invalid - TokenRequests has tokens with the same audience",
    		csiDriver: &storage.CSIDriver{
    			ObjectMeta: metav1.ObjectMeta{Name: driverName},
    			Spec: storage.CSIDriverSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbFile.java

        @Override
        public ACE[] getSecurity ( boolean resolveSids ) throws IOException {
            try ( SmbTreeHandleImpl th = ensureTreeConnected() ) {
                SecurityDescriptor desc = querySecurity(th, SecurityInfo.DACL_SECURITY_INFO);
                ACE[] aces = desc.getAces();
                if ( aces != null ) {
                    processAces(aces, resolveSids);
                }
    
                return aces;
            }
        }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  5. src/net/http/client_test.go

    	client := &Client{Transport: &recordingTransport{}}
    	testCases := []struct {
    		desc string
    		in   string
    		out  string
    	}{
    		{
    			desc: "Strip password from error message",
    			in:   "http://user:******@****.***d/",
    			out:  `Get "http://user:***@dummy.faketld/": dummy impl`,
    		},
    		{
    			desc: "Don't Strip password from domain name",
    			in:   "http://user:******@****.***d/",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

      Option<QuantMethod> quantization_method_{
          *this, "quantization-method",
          llvm::cl::init(tensorflow::quantization::QuantizationMethod::
                             METHOD_STATIC_RANGE_INT8),
          llvm::cl::desc("Choose quantization method."),
          llvm::cl::values(
              clEnumValN(tensorflow::quantization::QuantizationMethod::
                             METHOD_STATIC_RANGE_INT8,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  7. pkg/kubelet/status/status_manager_test.go

    	// newer one, so we set the old timestamp to one second in the past.
    	// See: https://github.com/golang/go/issues/8687
    	old := metav1.NewTime(time.Now().Add(-time.Second))
    	for desc, test := range map[string]struct {
    		condition    *v1.PodCondition
    		oldCondition *v1.PodCondition
    		expectUpdate bool
    	}{
    		"should do nothing if no corresponding condition": {
    			expectUpdate: false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	SIGWINCH    = syscall.Signal(0x1c)
    	SIGXCPU     = syscall.Signal(0x18)
    	SIGXFSZ     = syscall.Signal(0x19)
    )
    
    // Error table
    var errorList = [...]struct {
    	num  syscall.Errno
    	name string
    	desc string
    }{
    	{1, "EPERM", "not owner"},
    	{2, "ENOENT", "no such file or directory"},
    	{3, "ESRCH", "no such process"},
    	{4, "EINTR", "interrupted system call"},
    	{5, "EIO", "I/O error"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go

    	SIGWINCH    = syscall.Signal(0x1c)
    	SIGXCPU     = syscall.Signal(0x18)
    	SIGXFSZ     = syscall.Signal(0x19)
    )
    
    // Error table
    var errorList = [...]struct {
    	num  syscall.Errno
    	name string
    	desc string
    }{
    	{1, "EPERM", "not owner"},
    	{2, "ENOENT", "no such file or directory"},
    	{3, "ESRCH", "no such process"},
    	{4, "EINTR", "interrupted system call"},
    	{5, "EIO", "I/O error"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go

    	SIGXCPU    = syscall.Signal(0x1e)
    	SIGXFSZ    = syscall.Signal(0x1f)
    	SIGXRES    = syscall.Signal(0x26)
    )
    
    // Error table
    var errorList = [...]struct {
    	num  syscall.Errno
    	name string
    	desc string
    }{
    	{1, "EPERM", "not owner"},
    	{2, "ENOENT", "no such file or directory"},
    	{3, "ESRCH", "no such process"},
    	{4, "EINTR", "interrupted system call"},
    	{5, "EIO", "I/O error"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59K bytes
    - Viewed (0)
Back to top