- Sort Score
- Num 10 results
- Language All
Results 91 - 100 of 519 for h$ (0.01 seconds)
-
internal/grid/manager.go
func (m *Manager) RegisterStreamingHandler(id HandlerID, h StreamHandler) error { if !id.valid() { return ErrUnknownHandler } if debugPrint { fmt.Println("RegisterStreamingHandler: subroute:", h.Subroute) } if h.Subroute == "" { if m.handlers.hasAny(id) && !id.isTestHandler() { return ErrHandlerAlreadyExists } m.handlers.streams[id] = &h return nil }
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Nov 12 20:41:41 GMT 2024 - 10.8K bytes - Click Count (0) -
src/cmd/asm/internal/asm/testdata/loong64enc1.s
XVFRSQRTD X2, X1 // 41089d76 // [X]VNEG{B/H/W/V} instructions VNEGB V1, V2 // 22309c72 VNEGH V1, V2 // 22349c72 VNEGW V1, V2 // 22389c72 VNEGV V1, V2 // 223c9c72 XVNEGB X2, X1 // 41309c76 XVNEGH X2, X1 // 41349c76 XVNEGW X2, X1 // 41389c76 XVNEGV X2, X1 // 413c9c76 // [X]{VMULW}{EV/OD}.{H.B/W.H/D.W/Q.D}[U] instructions VMULWEVHB V1, V2, V3 // 43049070Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Thu Nov 27 00:46:52 GMT 2025 - 44.5K bytes - Click Count (0) -
src/main/webapp/css/admin/respond.min.js
Node(F)),n.push(E)}},v=function(a,b,d){var e=a.replace(c.regex.keyframes,"").match(c.regex.media),f=e&&e.length||0;b=b.substring(0,b.lastIndexOf("/"));var g=function(a){return a.replace(c.regex.urls,"$1"+b+"$2$3")},h=!f&&d;b.length&&(b+="/"),h&&(f=1);for(var i=0;f>i;i++){var j,k,n,o;h?(j=d,m.push(g(a))):(j=e[i].match(c.regex.findStyles)&&RegExp.$1,m.push(RegExp.$2&&g(RegExp.$2))),n=j.split(","),o=n.length;for(var p=0;o>p;p++)k=n[p],l.push({media:k.split("(")[0].match(c.regex.only)&&RegExp.$2||"a...
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Oct 08 12:14:13 GMT 2015 - 4.3K bytes - Click Count (0) -
guava-tests/test/com/google/common/base/FunctionsTest.java
Function<? super Integer, Boolean> h = Functions.constant(Boolean.TRUE); Function<? super String, Integer> g = new HashCodeFunction(); Function<Float, String> f = Functions.forMap(m, "F"); Function<Float, Boolean> c1 = Functions.compose(Functions.compose(h, g), f); Function<Float, Boolean> c2 = Functions.compose(h, Functions.compose(g, f)); // Might be nice (eventually) to have:
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 15:59:55 GMT 2026 - 16.2K bytes - Click Count (0) -
cmd/bitrot.go
if algo != HighwayHash256S { h := algo.New() if n, err := io.Copy(h, r); err != nil || n != wantSize { // Premature failure in reading the object, file is corrupt. return errFileCorrupt } if !bytes.Equal(h.Sum(nil), want) { return errFileCorrupt } return nil } h := algo.New() hashBuf := make([]byte, h.Size()) left := wantSizeCreated: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 7.7K bytes - Click Count (0) -
tensorflow/c/c_test.c
#include <limits.h> #include <memory.h> #include <stdio.h> #include <stdlib.h> #include <time.h> #include <unistd.h> #ifdef _WIN32 #include <process.h> #endif #include "tensorflow/c/c_api.h" #include "tensorflow/c/c_api_experimental.h" #include "tensorflow/c/env.h" #include "tensorflow/c/kernels.h"
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Wed Apr 24 20:50:35 GMT 2024 - 2.8K bytes - Click Count (0) -
cmd/data-usage-cache.go
// Returns false if not found. func (d *dataUsageCache) isCompacted(h dataUsageHash) bool { due, ok := d.Cache[h.Key()] if !ok { return false } return due.Compacted } // findChildrenCopy returns a copy of the children of the supplied hash. func (d *dataUsageCache) findChildrenCopy(h dataUsageHash) dataUsageHashMap { ch := d.Cache[h.String()].Children res := make(dataUsageHashMap, len(ch))
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 34.7K bytes - Click Count (0) -
src/archive/tar/common.go
verifyNumeric(h.Mode, len(v7.mode()), "Mode", paxNone) verifyNumeric(int64(h.Uid), len(v7.uid()), "Uid", paxUid) verifyNumeric(int64(h.Gid), len(v7.gid()), "Gid", paxGid) verifyNumeric(h.Size, len(v7.size()), "Size", paxSize) verifyNumeric(h.Devmajor, len(ustar.devMajor()), "Devmajor", paxNone) verifyNumeric(h.Devminor, len(ustar.devMinor()), "Devminor", paxNone)
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Tue Oct 07 19:46:36 GMT 2025 - 24.5K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/io/FilesSimplifyPathTest.java
assertThat(simplifyPath("/a/b/c/./../g")).isEqualTo("/a/b/g"); assertThat(simplifyPath("/a/b/c/./g/.")).isEqualTo("/a/b/c/g"); assertThat(simplifyPath("/a/b/c/g/./h")).isEqualTo("/a/b/c/g/h"); assertThat(simplifyPath("/a/b/c/g/../h")).isEqualTo("/a/b/c/h"); assertThat(simplifyPath("/a/b/c/g;x=1/./y")).isEqualTo("/a/b/c/g;x=1/y"); assertThat(simplifyPath("/a/b/c/g;x=1/../y")).isEqualTo("/a/b/c/y"); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 11.9K bytes - Click Count (0) -
guava-tests/test/com/google/common/io/FilesSimplifyPathTest.java
assertThat(simplifyPath("/a/b/c/./../g")).isEqualTo("/a/b/g"); assertThat(simplifyPath("/a/b/c/./g/.")).isEqualTo("/a/b/c/g"); assertThat(simplifyPath("/a/b/c/g/./h")).isEqualTo("/a/b/c/g/h"); assertThat(simplifyPath("/a/b/c/g/../h")).isEqualTo("/a/b/c/h"); assertThat(simplifyPath("/a/b/c/g;x=1/./y")).isEqualTo("/a/b/c/g;x=1/y"); assertThat(simplifyPath("/a/b/c/g;x=1/../y")).isEqualTo("/a/b/c/y"); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 11.9K bytes - Click Count (0)