Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for permanently (0.24 sec)

  1. cmd/bucket-replication.go

    // Similar to bucket replication for PUT operation, soft delete (a.k.a setting delete marker) and
    // permanent deletes (by specifying a version ID in the delete operation) have three states "Pending", "Complete"
    // and "Failed" to mark the status of the replication of "DELETE" operation. All failed operations can
    // then be retried by healing. In the case of permanent deletes, until the replication is completed on the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

            inTunnel = true,
          ),
        )
        server.enqueue(MockResponse(body = "response"))
    
        // Configure a single IP address for the host and a single configuration, so we only need one
        // failure to fail permanently.
        client =
          client.newBuilder()
            .sslSocketFactory(
              handshakeCertificates.sslSocketFactory(),
              handshakeCertificates.trustManager,
            )
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    		traceRelease(trace)
    	}
    	runqput(mp.p.ptr(), gp, next)
    	wakep()
    	releasem(mp)
    }
    
    // freezeStopWait is a large value that freezetheworld sets
    // sched.stopwait to in order to request that all Gs permanently stop.
    const freezeStopWait = 0x7fffffff
    
    // freezing is set to non-zero if the runtime is trying to freeze the
    // world.
    var freezing atomic.Bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. cmd/object-handlers.go

    			if proxy.Err != nil {
    				writeErrorResponse(ctx, w, toAPIError(ctx, proxy.Err), r.URL)
    				return
    			}
    			if gr != nil {
    				if !gr.ObjInfo.VersionPurgeStatus.Empty() {
    					// Shows the replication status of a permanent delete of a version
    					w.Header()[xhttp.MinIODeleteReplicationStatus] = []string{string(gr.ObjInfo.VersionPurgeStatus)}
    				}
    				if !gr.ObjInfo.ReplicationStatus.Empty() && gr.ObjInfo.DeleteMarker {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  5. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    Heat, or perhaps not without Fermentation. And these last are the Bodies which Chymists call fix'd, and being rarified by Fermentation, become true permanent Air; those Particles receding from one another with the greatest Force, and being most difficultly brought together, which upon Contact cohere most strongly. And because the Particles of permanent Air are grosser, and arise from denser Substances than those of Vapours, thence it is that true Air is more ponderous than Vapour, and that a moist...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    			} else {
    				p.Target = filepath.Join(cfg.GOROOTpkg, "tool", full)
    			}
    		}
    	} else if p.Internal.Local {
    		// Local import turned into absolute path.
    		// No permanent install target.
    		p.Target = ""
    	} else if p.Standard && cfg.BuildContext.Compiler == "gccgo" {
    		// gccgo has a preinstalled standard library that cmd/go cannot rebuild.
    		p.Target = ""
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top