Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 85 for rewrites (0.19 sec)

  1. src/cmd/link/internal/ld/xcoff.go

    	t.stringsLen += len(str) + 1 // each string will have 0 appended to it
    	return off
    }
    
    // write writes string table t into the output file.
    func (t *xcoffStringTable) write(out *OutBuf) {
    	out.Write32(uint32(t.size()))
    	for _, s := range t.strings {
    		out.WriteString(s)
    		out.Write8(0)
    	}
    }
    
    // write writes XCOFF section sect into the output file.
    func (sect *XcoffScnHdr64) write(ctxt *Link) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  2. integration-tests/gradle/gradle/wrapper/gradle-wrapper.jar

    isVerified(); } org/gradle/wrapper/Install.class package org.gradle.wrapper; public synchronized class Install { public static final String DEFAULT_DISTRIBUTION_PATH = wrapper/dists; public static final String SHA_256 = .sha256; public static final int RETRIES = 3; private final Logger logger; private final IDownload download; private final PathAssembler pathAssembler; private final ExclusiveFileAccessM exclusiveFileAccessM; public void Install(Logger, IDownload, PathAssembler); public java.io.File cre...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 62.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/init.go

    // requirements.
    //
    // In "mod" mode, commitRequirements writes changes to go.mod and go.sum.
    //
    // In "readonly" and "vendor" modes, commitRequirements returns an error if
    // go.mod or go.sum are out of date in a semantically significant way.
    //
    // In workspace mode, commitRequirements only writes changes to go.work.sum.
    func commitRequirements(ctx context.Context, opts WriteOpts) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    	// Don't run just 'go' because the build infrastructure
    	// runs cmd/dist inside go/bin often, and on Windows
    	// it will be found in the current directory and refuse to exec.
    	// All exec calls rewrite "go" into gorootBinGo.
    	gorootBinGo = pathf("%s/bin/go", goroot)
    
    	b = os.Getenv("GOOS")
    	if b == "" {
    		b = gohostos
    	}
    	goos = b
    	if find(goos, okgoos) < 0 {
    		fatalf("unknown $GOOS %s", goos)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        }
        assertThat(server.takeRequest().sequenceNumber).isEqualTo(0) // New connection.
    
        // Second call attempts the pooled connection, and it fails. Then it retries a new route which
        // succeeds.
        val response2 = client.newCall(request).execute()
        assertThat(response2.body.string()).isEqualTo("abc")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  6. pkg/controller/disruption/disruption_test.go

    // remaining 2 pods and update DisruptionsAllowed to 0. (The real eviction
    // handler would allow this because it still sees DisruptionsAllowed=2.)
    // (C) If the DisruptionController writes DisruptionsAllowed=1 despite the
    // resource conflict error, then there is a bug.
    func TestUpdatePDBStatusRetries(t *testing.T) {
    	_, ctx := ktesting.NewTestContext(t)
    	dc, _ := newFakeDisruptionController(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  7. cmd/xl-storage.go

    	if err != nil {
    		return err
    	}
    	defer metaDataPoolPut(wbuf)
    
    	return s.writeAll(ctx, volume, pathJoin(path, xlStorageFormatFile), wbuf, !opts.NoPersistence, volumeDir)
    }
    
    // WriteMetadata - writes FileInfo metadata for path at `xl.meta`
    func (s *xlStorage) WriteMetadata(ctx context.Context, origvolume, volume, path string, fi FileInfo) (err error) {
    	if fi.Fresh {
    		if origvolume != "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  8. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    }
    
    func expectProxyTargets(t testing.TB, sd *Controller, expected []model.ServiceTarget, ip string) {
    	t.Helper()
    	// The system is eventually consistent, so add some retries
    	retry.UntilSuccessOrFail(t, func() error {
    		instances := sd.GetProxyServiceTargets(&model.Proxy{IPAddresses: []string{ip}, Metadata: &model.NodeMetadata{}})
    		sortServiceTargets(instances)
    		sortServiceTargets(expected)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  9. cmd/iam-store.go

    	runlock()
    	getUsersSysType() UsersSysType
    	loadPolicyDoc(ctx context.Context, policy string, m map[string]PolicyDoc) error
    	loadPolicyDocWithRetry(ctx context.Context, policy string, m map[string]PolicyDoc, retries int) error
    	loadPolicyDocs(ctx context.Context, m map[string]PolicyDoc) error
    	loadUser(ctx context.Context, user string, userType IAMUserType, m map[string]UserIdentity) error
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/pv_controller.go

    // claims at the same time. The controller must recover from any conflicts
    // that may arise from these conditions.
    
    // Number of retries when we create a PV object for a provisioned volume.
    const createProvisionedPVRetryCount = 5
    
    // Interval between retries when we create a PV object for a provisioned volume.
    const createProvisionedPVInterval = 10 * time.Second
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
Back to top