Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for hp (0.31 sec)

  1. pkg/proxy/kubemark/hollow_proxy.go

    			NodeRef: &v1.ObjectReference{
    				Kind:      "Node",
    				Name:      nodeName,
    				UID:       types.UID(nodeName),
    				Namespace: "",
    			},
    		},
    	}
    }
    
    func (hp *HollowProxy) Run() error {
    
    	if err := hp.ProxyServer.Run(context.TODO()); err != nil {
    		return fmt.Errorf("Error while running proxy: %w", err)
    	}
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/types_test.go

    		t.Run(test.desc, func(t *testing.T) {
    			hp := make(HostPortInfo)
    			for _, param := range test.added {
    				hp.Add(param.ip, param.protocol, param.port)
    			}
    			for _, param := range test.removed {
    				hp.Remove(param.ip, param.protocol, param.port)
    			}
    			if hp.Len() != test.length {
    				t.Errorf("%v failed: expect length %d; got %d", test.desc, test.length, hp.Len())
    				t.Error(hp)
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 45.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/assign.go

    //	      s = s[:n]
    //	    } else {
    //	      s = growslice(T, s.ptr, n, s.cap, l2, T)
    //	    }
    //	    // clear the new portion of the underlying array.
    //	    hp := &s[len(s)-l2]
    //	    hn := l2 * sizeof(T)
    //	    memclr(hp, hn)
    //	  }
    //	}
    //	s
    //
    //	if T has pointers, the final memclr can go inside the "then" branch, as
    //	growslice will have done the clearing for us.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. pkg/volume/hostpath/host_path.go

    // The direct at the specified path will be directly exposed to the container.
    type hostPath struct {
    	path     string
    	pathType *v1.HostPathType
    	volume.MetricsNil
    }
    
    func (hp *hostPath) GetPath() string {
    	return hp.path
    }
    
    type hostPathMounter struct {
    	*hostPath
    	readOnly      bool
    	mounter       mount.Interface
    	hu            hostutil.HostUtils
    	noTypeChecker bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. src/crypto/tls/testdata/Client-TLSv12-ECDHE-RSA-AES128-SHA256

    00000100  cb 3b 74                                          |.;t|
    >>> Flow 2 (server to client)
    00000000  16 03 03 00 5d 02 00 00  59 03 03 8f cc 68 50 60  |....]...Y....hP`|
    00000010  11 c8 c3 ce e7 e9 e1 3c  fb 29 d7 4f df 44 16 65  |.......<.).O.D.e|
    00000020  1d 3b 25 5b 32 59 f1 8e  be d8 49 20 c2 89 a7 d5  |.;%[2Y....I ....|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. src/crypto/tls/testdata/Client-TLSv12-ClientCert-ECDSA-RSA

    00000100  cb 3b 74                                          |.;t|
    >>> Flow 2 (server to client)
    00000000  16 03 03 00 5d 02 00 00  59 03 03 ed c3 6f 59 34  |....]...Y....oY4|
    00000010  78 33 49 00 68 50 1f a5  aa 93 45 9a 87 34 c4 4e  |x3I.hP....E..4.N|
    00000020  71 b0 ab 5e 43 f7 a1 5c  89 e8 2f 20 f7 42 d7 2a  |q..^C..\../ .B.*|
    00000030  a5 fe 16 76 ac 6f cf 20  1d a6 bc d5 9d 27 9d 81  |...v.o. .....'..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. src/compress/bzip2/bzip2.go

    	bz2.lastByte = -1
    	bz2.byteRepeats = 0
    	bz2.repeats = 0
    
    	return nil
    }
    
    // inverseBWT implements the inverse Burrows-Wheeler transform as described in
    // http://www.hpl.hp.com/techreports/Compaq-DEC/SRC-RR-124.pdf, section 4.2.
    // In that document, origPtr is called ā€œIā€ and c is the ā€œCā€ array after the
    // first pass over the data. It's an argument here because we merge the first
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. src/debug/elf/elf.go

    // OSABI is found in Header.Ident[EI_OSABI] and Header.OSABI.
    type OSABI byte
    
    const (
    	ELFOSABI_NONE       OSABI = 0   /* UNIX System V ABI */
    	ELFOSABI_HPUX       OSABI = 1   /* HP-UX operating system */
    	ELFOSABI_NETBSD     OSABI = 2   /* NetBSD */
    	ELFOSABI_LINUX      OSABI = 3   /* Linux */
    	ELFOSABI_HURD       OSABI = 4   /* Hurd */
    	ELFOSABI_86OPEN     OSABI = 5   /* 86Open common IA32 ABI */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Client-TLSv12-RenegotiateTwice

    000001f0  00 43 12 93 92 99 07 44  23 48 78 46 c8 fc 4a 96  |.C.....D#HxF..J.|
    00000200  88 72 45 2a f4 ff 92 41  7b e5 a0 74 93 ff b8 f6  |.rE*...A{..t....|
    00000210  3e e0 6a 3b 3b 12 68 50  89 d1 d3 22 e0 a1 3f ef  |>.j;;.hP..."..?.|
    00000220  da 18 15 5b c2 48 0e 78  d0 af ae d7 81 af 23 16  |...[.H.x......#.|
    00000230  ab 71 07 9d 26 b2 8b 34  7e b2 1a 1e f4 fb 02 9a  |.q..&..4~.......|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  10. pkg/scheduler/schedule_one_test.go

    			list, err := prioritizeNodes(ctx, nil, fwk, state, test.pod, tf.BuildNodeInfos(test.nodes))
    			if err != nil {
    				t.Errorf("unexpected error: %v", err)
    			}
    			for _, hp := range list {
    				if hp.TotalScore != test.expectedScore {
    					t.Errorf("expected %d for all priorities, got list %#v", test.expectedScore, list)
    				}
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
Back to top