Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 39 for hp (0.02 sec)

  1. 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)
  2. 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)
  3. src/net/http/response.go

    }
    
    // RFC 7234, section 5.4: Should treat
    //
    //	Pragma: no-cache
    //
    // like
    //
    //	Cache-Control: no-cache
    func fixPragmaCacheControl(header Header) {
    	if hp, ok := header["Pragma"]; ok && len(hp) > 0 && hp[0] == "no-cache" {
    		if _, presentcc := header["Cache-Control"]; !presentcc {
    			header["Cache-Control"] = []string{"no-cache"}
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. platforms/jvm/jvm-services/src/test/groovy/org/gradle/internal/jvm/inspection/DefaultJvmMetadataDetectorTest.groovy

            'hpuxJre6'       | hpuxJvm('6')             | JavaVersion.VERSION_1_6 | 'HP-UX JRE 6'                | true
            'hpuxJdk7'       | hpuxJvm('7')             | JavaVersion.VERSION_1_7 | 'HP-UX JDK 7'                | false
            'sapjdk13'       | sapJvm('13')             | JavaVersion.VERSION_13  | 'SAP SapMachine JDK 13'      | false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 18:25:34 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/crypto/tls/testdata/Server-TLSv13-ALPN-NotConfigured

    00000420  09 68 14 9a 89 e0 6b ef  ac 90 27 69 2b 01 6c 2e  |.h....k...'i+.l.|
    00000430  6d e9 26 9f b1 ff b8 6c  8b 33 bb e8 42 54 85 c9  |m.&....l.3..BT..|
    00000440  14 d5 89 48 50 a6 8d be  dd b8 96 f1 45 4f 90 08  |...HP.......EO..|
    00000450  da cf 1f 75 33 85 d9 be  8e a5 4a c5 be a9 a3 16  |...u3.....J.....|
    00000460  f6 37 02 79 ea c3 e5 10  ed ff d5 f2 3d 46 7b ed  |.7.y........=F{.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  10. 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)
Back to top