Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,339 for inplace (0.17 sec)

  1. src/vendor/golang.org/x/crypto/sha3/keccakf.go

    	0x8000000080008008,
    }
    
    // keccakF1600 applies the Keccak permutation to a 1600b-wide
    // state represented as a slice of 25 uint64s.
    func keccakF1600(a *[25]uint64) {
    	// Implementation translated from Keccak-inplace.c
    	// in the keccak reference code.
    	var t, bc0, bc1, bc2, bc3, bc4, d0, d1, d2, d3, d4 uint64
    
    	for i := 0; i < 24; i += 4 {
    		// Combines the 5 steps in each round into 2 steps.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. operator/cmd/mesh/manifest-generate_test.go

    				{empty, objEnabled, ""}, // Legacy one requires namespace label
    			}, baseAssertions...),
    		},
    		{
    			// Use new default webhook, while we still have a legacy revision one around.
    			name:     "inplace upgrade",
    			webhooks: mergeWebhooks(defaultWebhook, legacyRevWebhook),
    			checks: append([]assertion{
    				{empty, revLabel, ""},         // Legacy one requires namespace label
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  3. src/strings/replace.go

    			r.toReplace = append(r.toReplace, string([]byte{o}))
    		}
    		r.replacements[o] = []byte(n)
    
    	}
    	return &r
    }
    
    // Replace returns a copy of s with all replacements performed.
    func (r *Replacer) Replace(s string) string {
    	r.once.Do(r.buildOnce)
    	return r.r.Replace(s)
    }
    
    // WriteString writes s to w with all replacements performed.
    func (r *Replacer) WriteString(w io.Writer, s string) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:10:31 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  4. src/compress/flate/inflate.go

    cui fliter <******@****.***> 1697167733 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  5. hack/update-vendor.sh

         # print lines between 'replace (' ... ')' lines
         /^replace [(]/      { inreplace=1; next                   }
         inreplace && /^[)]/ { inreplace=0; next                   }
         inreplace           { print > \"${go_mod_replace}\"; next }
    
         # print ungrouped replace directives with the replace directive trimmed
         /^replace [^(]/ { sub(/^replace /,\"\"); print > \"${go_mod_replace}\"; next }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/ntlmssp/Type3Message.java

                curFlags |= 0x2; // MAC present
                AvPairs.replace(serverAvPairs, new AvFlags(curFlags));
            }
    
            AvPairs.replace(serverAvPairs, new AvTimestamp(ts));
    
            if ( targetName != null ) {
                AvPairs.replace(serverAvPairs, new AvTargetName(targetName));
            }
    
            // possibly add channel bindings
            AvPairs.replace(serverAvPairs, new AvPair(0xa, new byte[16]));
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 30.6K bytes
    - Viewed (0)
  7. operator/pkg/util/merge_iop.go

    	IngressPorts                     []map[string]any                    `json:"ingressPorts" patchStrategy:"replace"`
    	AdditionalContainers             []map[string]any                    `json:"additionalContainers" patchStrategy:"replace"`
    	ConfigVolumes                    []map[string]any                    `json:"configVolumes" patchStrategy:"replace"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 18:21:41 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. samples/addons/prometheus.yaml

          - action: replace
            source_labels:
            - __meta_kubernetes_namespace
            target_label: namespace
          - action: replace
            source_labels:
            - __meta_kubernetes_service_name
            target_label: service
          - action: replace
            source_labels:
            - __meta_kubernetes_pod_node_name
            target_label: node
        - honor_labels: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  9. src/slices/slices.go

    	clear(s[i:]) // zero/nil out the obsolete elements, for GC
    	return s[:i]
    }
    
    // Replace replaces the elements s[i:j] by the given v, and returns the
    // modified slice.
    // Replace panics if j > len(s) or s[i:j] is not a valid slice of s.
    // When len(v) < (j-i), Replace zeroes the elements between the new length and the original length.
    func Replace[S ~[]E, E any](s S, i, j int, v ...E) S {
    	_ = s[i:j] // bounds check
    
    	if i == j {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 29 14:01:59 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/MultipartReaderTest.kt

          """
          |--simple boundary
          |
          |abcd
          |--simple boundary
          |
          |efgh
          |--simple boundary--
          """.trimMargin()
            .replace("\n", "\r\n")
            .replace(Regex("(?m)abcd\r\n"), "abcd\n")
    
        val parts =
          MultipartReader(
            boundary = "simple boundary",
            source = Buffer().writeUtf8(multipart),
          )
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top