Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for hv (0.06 sec)

  1. operator/pkg/object/objects.go

    }
    
    // FromHash parses kind, namespace and name from a hash.
    func FromHash(hash string) (kind, namespace, name string) {
    	hv := strings.Split(hash, ":")
    	if len(hv) != 3 {
    		return "Bad hash string: " + hash, "", ""
    	}
    	kind, namespace, name = hv[0], hv[1], hv[2]
    	return
    }
    
    // HashNameKind returns a unique, insecure hash based on kind and name.
    func HashNameKind(kind, name string) string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 07:16:46 UTC 2023
    - 15.5K bytes
    - Viewed (1)
  2. src/cmd/compile/internal/coverage/cover.go

    		base.Fatalf("unexpected: got metahash length %d want 32", len(mhash))
    	}
    	var hv [16]byte
    	for i := 0; i < 16; i++ {
    		nib := string(mhash[i*2 : i*2+2])
    		x, err := strconv.ParseInt(nib, 16, 32)
    		if err != nil {
    			base.Fatalf("metahash bad byte %q", nib)
    		}
    		hv[i] = byte(x)
    	}
    
    	// Return hash and meta-data len
    	return hv, base.Flag.Cfg.CoverageInfo.MetaLen
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:46 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/OtoolBinaryInfo.groovy

        OtoolBinaryInfo(File binaryFile, List<String> environments) {
            this.binaryFile = binaryFile
            this.environments = environments
        }
    
        ArchitectureInternal getArch() {
            def process = ['otool', '-hv', binaryFile.absolutePath].execute(environments, null)
            def lines = process.inputStream.readLines()
            def archString = lines.last().split()[1]
    
            switch (archString) {
                case "I386":
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. test/typeparam/issue50485.dir/a.go

    }
    
    func (r ApplicativeFunctor2[H, HT, A1, A2, R]) ApOption(a Option[A1]) ApplicativeFunctor1[Cons[A1, H], A1, A2, R] {
    
    	nh := FlatMap(r.h, func(hv H) Option[Cons[A1, H]] {
    		return Map(a, func(av A1) Cons[A1, H] {
    			return Concat(av, hv)
    		})
    	})
    
    	return ApplicativeFunctor1[Cons[A1, H], A1, A2, R]{nh, Ap(r.fn, a)}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. src/image/jpeg/reader.go

    				return FormatError("repeated component identifier")
    			}
    		}
    
    		d.comp[i].tq = d.tmp[8+3*i]
    		if d.comp[i].tq > maxTq {
    			return FormatError("bad Tq value")
    		}
    
    		hv := d.tmp[7+3*i]
    		h, v := int(hv>>4), int(hv&0x0f)
    		if h < 1 || 4 < h || v < 1 || 4 < v {
    			return FormatError("luma/chroma subsampling ratio")
    		}
    		if h == 3 || v == 3 {
    			return errUnsupportedSubsamplingRatio
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  6. src/net/http/response_test.go

    	t.Helper()
    	hv := reflect.ValueOf(have).Elem()
    	wv := reflect.ValueOf(want).Elem()
    	if hv.Type() != wv.Type() {
    		t.Errorf("%s: type mismatch %v want %v", prefix, hv.Type(), wv.Type())
    	}
    	for i := 0; i < hv.NumField(); i++ {
    		name := hv.Type().Field(i).Name
    		if !token.IsExported(name) {
    			continue
    		}
    		hf := hv.Field(i).Interface()
    		wf := wv.Field(i).Interface()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 19:01:29 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/debug_test.go

    		if hs != ki2f[i] {
    			return false
    		}
    	}
    
    	for i, x := range h.ps {
    		if k.ps[i] != x {
    			return false
    		}
    	}
    
    	for i, hv := range h.vars {
    		kv := k.vars[i]
    		if len(hv) != len(kv) {
    			return false
    		}
    		for j, hvt := range hv {
    			if hvt != kv[j] {
    				return false
    			}
    		}
    	}
    
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/builtin.go

    	t := n.Type()
    	hmapType := reflectdata.MapType()
    	hint := n.Len
    
    	// var h *hmap
    	var h ir.Node
    	if n.Esc() == ir.EscNone {
    		// Allocate hmap on stack.
    
    		// var hv hmap
    		// h = &hv
    		h = stackTempAddr(init, hmapType)
    
    		// Allocate one bucket pointed to by hmap.buckets on stack if hint
    		// is not larger than BUCKETSIZE. In case hint is larger than
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Server-TLSv13-ClientAuthRequestedAndECDSAGiven

    00000210  e7 3c 18 30 24 77 7c 33  5c 89 91 60 65 14 06 9e  |.<.0$w|3\..`e...|
    00000220  e2 6d f0 07 84 4b b4 14  e8 17 03 03 00 a3 a7 e1  |.m...K..........|
    00000230  f7 26 48 56 da 6d ef a5  f4 5f 19 52 37 9e e7 6d  |.&HV.m..._.R7..m|
    00000240  28 07 70 ee 1e de 85 2b  7a 2d bf eb 48 06 f5 d4  |(.p....+z-..H...|
    00000250  ea 4d 83 86 59 d4 14 4f  46 bc 17 89 f1 f5 37 0e  |.M..Y..OF.....7.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Client-TLSv12-RenegotiateTwice

    000000e0  0f 9e 05 1d 4f 85 11 05  97 42 fa 24 37 1c 4e ec  |....O....B.$7.N.|
    000000f0  55 dc e1 4e f6 e2 dd c6  63 b0 dd 60 11 93 23 8a  |U..N....c..`..#.|
    00000100  eb 68 76 21 ec 19 cf 59  c8 78 80 f0 fa 39 6a 09  |.hv!...Y.x...9j.|
    00000110  f8 7f 9d c0 e7 51 3d 75  17 e3 cf a5 bf 1c 10     |.....Q=u.......|
    >>> Flow 8 (server to client)
    00000000  16 03 03 00 85 14 4e 8e  de d0 5b 59 2d f6 a3 b0  |......N...[Y-...|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 25.9K bytes
    - Viewed (0)
Back to top