- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 473 for cp (0.02 sec)
-
src/cmd/go/testdata/vcstest/git/querytest.txt
cp stdout status git commit -a -m 'before v0.0.1' echo 'at v0.0.1' cp stdout status git commit -a -m 'at v0.0.1' git tag 'v0.0.1' echo 'before v0.0.2' cp stdout status git commit -a -m 'before v0.0.2' echo 'at v0.0.2' cp stdout status git commit -a -m 'at v0.0.2' git tag 'v0.0.2' echo 'before v0.0.3' cp stdout status git commit -a -m 'before v0.0.3' echo 'at v0.0.3' cp stdout status
Registered: 2024-06-12 16:32 - Last Modified: 2022-10-25 15:36 - 6K bytes - Viewed (0) -
pkg/kubelet/checkpointmanager/testing/example_checkpoint_formats/v1/types.go
// MarshalCheckpoint tries to marshal the CheckpointData into JSON data. func (cp *CheckpointData) MarshalCheckpoint() ([]byte, error) { cp.Checksum = checksum.New(*cp.Data) return json.Marshal(*cp) } // UnmarshalCheckpoint tries to unmarshal the passed JSON data into CheckpointData. func (cp *CheckpointData) UnmarshalCheckpoint(blob []byte) error { return json.Unmarshal(blob, cp) }
Registered: 2024-06-15 01:39 - Last Modified: 2019-12-19 03:53 - 1.9K bytes - Viewed (0) -
android/guava/src/com/google/common/net/PercentEscaper.java
cp >>>= 4; dest[7] = UPPER_HEX_DIGITS[0x8 | (cp & 0x3)]; cp >>>= 2; dest[5] = UPPER_HEX_DIGITS[cp & 0xF]; cp >>>= 4; dest[4] = UPPER_HEX_DIGITS[0x8 | (cp & 0x3)]; cp >>>= 2; dest[2] = UPPER_HEX_DIGITS[cp]; return dest; } else if (cp <= 0x10ffff) { char[] dest = new char[12]; // Four byte UTF-8 characters [cp >= 0xffff && cp <= 0x10ffff]
Registered: 2024-06-12 16:38 - Last Modified: 2022-10-10 19:45 - 8.7K bytes - Viewed (0) -
guava/src/com/google/common/net/PercentEscaper.java
cp >>>= 4; dest[7] = UPPER_HEX_DIGITS[0x8 | (cp & 0x3)]; cp >>>= 2; dest[5] = UPPER_HEX_DIGITS[cp & 0xF]; cp >>>= 4; dest[4] = UPPER_HEX_DIGITS[0x8 | (cp & 0x3)]; cp >>>= 2; dest[2] = UPPER_HEX_DIGITS[cp]; return dest; } else if (cp <= 0x10ffff) { char[] dest = new char[12]; // Four byte UTF-8 characters [cp >= 0xffff && cp <= 0x10ffff]
Registered: 2024-06-12 16:38 - Last Modified: 2022-10-10 19:45 - 8.7K bytes - Viewed (0) -
pkg/kubelet/cm/cpumanager/state/checkpoint.go
cp.Checksum = 0 cp.Checksum = checksum.New(cp) return json.Marshal(*cp) } // UnmarshalCheckpoint tries to unmarshal passed bytes to checkpoint in v1 format func (cp *CPUManagerCheckpointV1) UnmarshalCheckpoint(blob []byte) error { return json.Unmarshal(blob, cp) } // UnmarshalCheckpoint tries to unmarshal passed bytes to checkpoint in v2 format
Registered: 2024-06-15 01:39 - Last Modified: 2023-03-27 01:24 - 4.3K bytes - Viewed (0) -
pilot/pkg/networking/core/envoyfilter/cluster_patch.go
out = c if efw == nil { return } for _, cp := range efw.Patches[networking.EnvoyFilter_CLUSTER] { applied := false if cp.Operation != networking.EnvoyFilter_Patch_MERGE { IncrementEnvoyFilterMetric(cp.Key(), Cluster, applied) continue } if commonConditionMatch(pctx, cp) && clusterMatch(c, cp, hosts) { tsMerged, err := mergeTransportSocketCluster(c, cp) if err != nil {
Registered: 2024-06-14 15:00 - Last Modified: 2024-03-28 17:09 - 6.8K bytes - Viewed (0) -
src/cmd/go/testdata/script/build_gopath_order.txt
mkdir $WORK/p1/src/foo $WORK/p2/src/baz mkdir $WORK/p2/pkg/${GOOS}_${GOARCH} $WORK/p1/src/bar cp foo.go $WORK/p1/src/foo/foo.go cp baz.go $WORK/p2/src/baz/baz.go cp foo.a $WORK/p2/pkg/${GOOS}_${GOARCH}/foo.a cp bar.go $WORK/p1/src/bar/bar.go go install -x bar # add in baz.a to the mix mkdir $WORK/p1/pkg/${GOOS}_${GOARCH} cp baz.a $WORK/p1/pkg/${GOOS}_${GOARCH}/baz.a env GOPATH=$WORK/p1${:}$WORK/p2 go install -x bar
Registered: 2024-06-12 16:32 - Last Modified: 2020-09-17 13:25 - 855 bytes - Viewed (0) -
src/cmd/go/testdata/script/work_errors_pos.txt
# can be easily parsed by tools. cp go.work.repeated.txt go.work ! go list stderr '^go.work:4: path .* appears multiple times in workspace$' cp go.work.badgodebug.txt go.work ! go list stderr '^go.work:3: unknown godebug "foo"$' cp go.work.unparsable.txt go.work ! go list stderr '^go.work:5: unknown directive: notadirective' cp go.work.firstlineerr.txt go.work ! go list
Registered: 2024-06-12 16:32 - Last Modified: 2024-06-06 18:36 - 926 bytes - Viewed (0) -
src/cmd/go/testdata/vcstest/git/vgotest1.txt
cp stdout go.mod git add go.mod git commit -m 'go.mod' git tag v0.0.1 git tag v1.0.1 at 2018-02-19T18:11:28-05:00 mkdir submod/pkg echo 'package pkg // submod/pkg/p.go' cp stdout submod/pkg/p.go git add submod git commit -m 'submod/pkg/p.go' git tag v1.0.2 at 2018-02-19T18:12:07-05:00 echo 'module "github.com/vgotest1/submod" // submod/go.mod' cp stdout submod/go.mod git add submod/go.mod
Registered: 2024-06-12 16:32 - Last Modified: 2022-10-25 15:36 - 7.9K bytes - Viewed (0) -
pkg/config/validation/envoyfilter/envoyfilter.go
if cp.Match != nil && cp.Match.ObjectTypes != nil { if cp.Match.GetRouteConfiguration() == nil { errs = validation.AppendValidation(errs, fmt.Errorf("Envoy filter: applyTo for http route class objects cannot have non route configuration match")) // nolint: stylecheck } } case networking.EnvoyFilter_CLUSTER: if cp.Match != nil && cp.Match.ObjectTypes != nil {
Registered: 2024-06-14 15:00 - Last Modified: 2024-03-30 00:31 - 12.2K bytes - Viewed (0)