Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,669 for inplace (0.22 sec)

  1. .idea/dictionaries/Alexey_Sedunov.xml

    <component name="ProjectDictionaryState">
      <dictionary name="Alexey.Sedunov">
        <words>
          <w>inplace</w>
          <w>renamer</w>
        </words>
      </dictionary>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 02 12:28:14 UTC 2016
    - 174 bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/compile/internal/ssagen/ssa.go

    	return addr
    }
    
    // append converts an OAPPEND node to SSA.
    // If inplace is false, it converts the OAPPEND expression n to an ssa.Value,
    // adds it to s, and returns the Value.
    // If inplace is true, it writes the result of the OAPPEND expression n
    // back to the slice being appended to, and returns nil.
    // inplace MUST be set to false if the slice can be SSA'd.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. 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)
  5. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    			oldObj:                          &v1.Pod{},
    			enableInPlacePodVerticalScaling: true,
    			expectedHint:                    framework.QueueSkip,
    		},
    		"skip-queue-on-disable-inplace-pod-vertical-scaling": {
    			pod:                             st.MakePod().Name("pod1").Req(map[v1.ResourceName]string{v1.ResourceCPU: "1"}).Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  6. 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)
  7. releasenotes/notes/replace-virtualhost.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issues:
    - https://github.com/istio/istio/issues/36415
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 01 02:02:53 UTC 2022
    - 202 bytes
    - Viewed (0)
  8. cmd/admin-handlers.go

    	objectAPI, _ := validateAdminReq(ctx, w, r, policy.ServerUpdateAdminAction)
    	if objectAPI == nil {
    		return
    	}
    
    	if globalInplaceUpdateDisabled || currentReleaseTime.IsZero() {
    		// if MINIO_UPDATE=off - inplace update is disabled, mostly in containers.
    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrMethodNotAllowed), r.URL)
    		return
    	}
    
    	vars := mux.Vars(r)
    	updateURL := vars["updateURL"]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/go/testdata/mod/example.com_cmd_v1.0.0-replace.txt

    example.com/cmd contains main packages.
    
    -- .info --
    {"Version":"v1.0.0-replace"}
    -- .mod --
    module example.com/cmd
    
    go 1.16
    
    replace rsc.io/quote => rsc.io/quote v1.5.2
    -- go.mod --
    module example.com/cmd
    
    go 1.16
    
    replace rsc.io/quote => rsc.io/quote v1.5.2
    -- a/a.go --
    package main
    
    func main() {}
    -- b/b.go --
    package main
    
    func main() {}
    -- err/err.go --
    package err
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 15 12:45:59 UTC 2020
    - 397 bytes
    - Viewed (0)
Back to top