Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for K2 (0.02 sec)

  1. internal/config/config.go

    	}
    
    	if len(subSystemValue) == 2 {
    		tgt = subSystemValue[1]
    	}
    
    	return subSys, inputs, tgt, e
    }
    
    // kvFields - converts an input string of form "k1=v1 k2=v2" into
    // fields of ["k1=v1", "k2=v2"], the tokenization of each `k=v`
    // happens with the right number of input keys, if keys
    // input is empty returned value is empty slice as well.
    func kvFields(input string, keys []string) []string {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  2. pkg/kube/inject/webhook.go

    	}
    }
    
    // parseInjectEnvs parse new envs from inject url path. format: /inject/k1/v1/k2/v2
    // slash characters in values must be replaced by --slash-- (e.g. /inject/k1/abc--slash--def/k2/v2).
    func parseInjectEnvs(path string) map[string]string {
    	path = strings.TrimSuffix(path, "/")
    	res := func(path string) []string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  3. src/crypto/sha256/sha256block_amd64.s

    // Round specific constants
    DATA K256<>+0x00(SB)/4, $0x428a2f98 // k1
    DATA K256<>+0x04(SB)/4, $0x71374491 // k2
    DATA K256<>+0x08(SB)/4, $0xb5c0fbcf // k3
    DATA K256<>+0x0c(SB)/4, $0xe9b5dba5 // k4
    DATA K256<>+0x10(SB)/4, $0x428a2f98 // k1
    DATA K256<>+0x14(SB)/4, $0x71374491 // k2
    DATA K256<>+0x18(SB)/4, $0xb5c0fbcf // k3
    DATA K256<>+0x1c(SB)/4, $0xe9b5dba5 // k4
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  4. hack/update-codegen.sh

        (
            shopt -s extdebug
            declare -F \
                | cut -f3 -d' ' \
                | grep "^codegen::" \
                | while read -r fn; do declare -F "$fn"; done \
                | sort -n -k2 \
                | cut -f1 -d' ' \
                | sed 's/^codegen:://'
        )
    }
    
    # shellcheck disable=SC2207 # safe, no functions have spaces
    all_codegens=($(list_codegens))
    
    function print_codegens() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/dwarf_test.go

    		if originDIE == nil {
    			ex.DumpEntry(i, false, 0)
    			t.Fatalf("unresolved abstract origin ref in DIE at offset 0x%x\n", die.Offset)
    		}
    
    		// Suppose that DIE X has parameter/variable children {K1,
    		// K2, ... KN}. If X has an abstract origin of A, then for
    		// each KJ, the abstract origin of KJ should be a child of A.
    		// Note that this same rule doesn't hold for non-variable DIEs.
    		pidx := ex.IdxFromOffset(die.Offset)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
Back to top