Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Hp (0.1 sec)

  1. android/guava-tests/test/com/google/common/net/HostAndPortTest.java

        }
      }
    
      public void testFromHost() {
        HostAndPort hp = HostAndPort.fromHost("gmail.com");
        assertEquals("gmail.com", hp.getHost());
        assertFalse(hp.hasPort());
    
        hp = HostAndPort.fromHost("[::1]");
        assertEquals("::1", hp.getHost());
        assertFalse(hp.hasPort());
    
        try {
          HostAndPort.fromHost("gmail.com:80");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 17 11:19:47 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/topologymanager/scope_container_test.go

    	tcases := []struct {
    		name     string
    		hp       []HintProvider
    		expected []map[string][]TopologyHint
    	}{
    		{
    			name:     "No hint providers",
    			hp:       []HintProvider{},
    			expected: ([]map[string][]TopologyHint)(nil),
    		},
    		{
    			name: "HintProvider returns empty non-nil map[string][]TopologyHint",
    			hp: []HintProvider{
    				&mockHintProvider{
    					map[string][]TopologyHint{},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 12 11:25:55 UTC 2020
    - 6.2K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/topologymanager/scope_pod_test.go

    	tcases := []struct {
    		name     string
    		hp       []HintProvider
    		expected []map[string][]TopologyHint
    	}{
    		{
    			name:     "No hint providers",
    			hp:       []HintProvider{},
    			expected: ([]map[string][]TopologyHint)(nil),
    		},
    		{
    			name: "HintProvider returns empty non-nil map[string][]TopologyHint",
    			hp: []HintProvider{
    				&mockHintProvider{
    					map[string][]TopologyHint{},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 12 11:25:55 UTC 2020
    - 6.1K bytes
    - Viewed (0)
  4. src/net/hosts.go

    	expire time.Time
    	path   string
    	mtime  time.Time
    	size   int64
    }
    
    func readHosts() {
    	now := time.Now()
    	hp := hostsFilePath
    
    	if now.Before(hosts.expire) && hosts.path == hp && len(hosts.byName) > 0 {
    		return
    	}
    	mtime, size, err := stat(hp)
    	if err == nil && hosts.path == hp && hosts.mtime.Equal(mtime) && hosts.size == size {
    		hosts.expire = now.Add(cacheMaxAge)
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 07:21:38 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. test/fixedbugs/issue15572.dir/b.go

    package b
    
    import "./a"
    
    func F() {
    	a.F()
    	a.Fi()
    }
    
    func Fp() {
    	a.Fp()
    	a.Fip()
    }
    
    func Gp() {
    	a.Gp()
    	a.Gip()
    }
    
    func Hp() {
    	a.Hp()
    	a.Hip()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 09 06:16:07 UTC 2016
    - 309 bytes
    - Viewed (0)
  6. 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)
  7. test/fixedbugs/issue15572.dir/a.go

    }
    
    func Gp() map[int]*T {
    	return map[int]*T{0: &T{}}
    }
    
    func Gip() map[int]*T {
    	return map[int]*T{0: {}} // element with implicit composite literal type
    }
    
    func Hp() map[*T]int {
    	return map[*T]int{&T{}: 0}
    }
    
    func Hip() map[*T]int {
    	return map[*T]int{{}: 0} // key with implicit composite literal type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 09 06:16:07 UTC 2016
    - 738 bytes
    - Viewed (0)
  8. src/go/doc/comment/html.go

    }
    
    // HTML returns an HTML formatting of the [Doc].
    // See the [Printer] documentation for ways to customize the HTML output.
    func (p *Printer) HTML(d *Doc) []byte {
    	hp := &htmlPrinter{Printer: p}
    	var out bytes.Buffer
    	for _, x := range d.Content {
    		hp.block(&out, x)
    	}
    	return out.Bytes()
    }
    
    // block prints the block x to out.
    func (p *htmlPrinter) block(out *bytes.Buffer, x Block) {
    	switch x := x.(type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/JvmVendor.java

            APPLE("apple", "Apple"),
            AZUL("azul systems", "Azul Zulu"),
            BELLSOFT("bellsoft", "BellSoft Liberica"),
            GRAAL_VM("graalvm community", "GraalVM Community"),
            HEWLETT_PACKARD("hewlett-packard", "HP-UX"),
            IBM("ibm", "ibm|international business machines corporation", "IBM"),
            JETBRAINS("jetbrains", "JetBrains"),
            MICROSOFT("microsoft", "Microsoft"),
            ORACLE("oracle", "Oracle"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 02 23:55:59 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. src/math/log1p.go

    //       algorithm can be used to compute log1p(x) to within a few ULP:
    //
    //              u = 1+x;
    //              if(u==1.0) return x ; else
    //                         return log(u)*(x/(u-1.0));
    //
    //       See HP-15C Advanced Functions Handbook, p.193.
    
    // Log1p returns the natural logarithm of 1 plus its argument x.
    // It is more accurate than [Log](1 + x) when x is near zero.
    //
    // Special cases are:
    //
    //	Log1p(+Inf) = +Inf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top