Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 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 (0)
  2. 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)
  3. 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)
  4. 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)
  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/main/java/jcifs/http/NtlmHttpURLConnection.java

            int readTimeout = getReadTimeout();
            int connectTimeout = getConnectTimeout();
    
            HostnameVerifier hv = null;
            SSLSocketFactory ssf = null;
            if ( this.connection instanceof HttpsURLConnection ) {
                hv = ( (HttpsURLConnection) this.connection ).getHostnameVerifier();
                ssf = ( (HttpsURLConnection) this.connection ).getSSLSocketFactory();
            }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 25.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/vnd.xmpie.dpkg",
    				"application/vnd.xmpie.plan",
    				"application/vnd.xmpie.ppkg",
    				"application/vnd.xmpie.xlim",
    				"application/vnd.yamaha.hv-dic",
    				"application/vnd.yamaha.hv-script",
    				"application/vnd.yamaha.hv-voice",
    				"application/vnd.yamaha.openscoreformat",
    				"application/vnd.yamaha.openscoreformat.osfpvg+xml",
    				"application/vnd.yamaha.smaf-audio",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  10. src/compress/flate/testdata/huffman-rand-max.in

    �3�7�\fi�d��J�,&��op*G�o��,ْ���i���]FO��=t��Η���49�|?]�Z�xɀz�t%���&U!��ͣtFr��⛼��-���(�]ݒ�rYf�#���U��!.;o��+��َO�v"0%�磵\P��׶o����k�s����-6n����E{;!����>r��Q�`��Ou1��ž;b�m&���t_x�+���e��ŖY�2�}��LH,_A����e0`�i��Y�������bF󜉧hi%֛�E�1_�.ƕ.7�����O�nQg�}u���Ϸ�_E�o�]^
    L46:����U&�l��d,��i@(�q��������
    �w�̄����8�4�Ұɶ��"U���v�b׆l���c
    `$|w�T��\\%]LH��5�}W
    �0�v�'-��؍+5���J��E.�Hȶ.�6�>�>�Ƣ^�[��ݡ�i����0Ǹ��O���~�Wf�[ja�c����5`���g�>\x�<����U�+M}�ܢB��c��)4������ty��...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 64K bytes
    - Viewed (0)
Back to top