Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for permanently (0.21 sec)

  1. docs/changelogs/changelog_3x.md

        ```
    
     *  Fix: Handle dispatcher executor shutdowns gracefully. When there aren't any threads to carry a
        call its callback now gets a `RejectedExecutionException`.
     *  Fix: Don't permanently cache responses with `Cache-Control: immutable`. We misunderstood the
        original `immutable` proposal!
     *  Fix: Change `Authenticator`'s `Route` parameter to be nullable. This was marked as non-null but
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  2. src/fmt/fmt_test.go

    	{"%#v", PanicGo{io.ErrUnexpectedEOF}, "%!v(PANIC=GoString method: unexpected EOF)"},
    	{"%#v", PanicGo{3}, "%!v(PANIC=GoString method: 3)"},
    	// Issue 18282. catchPanic should not clear fmtFlags permanently.
    	{"%#v", []any{PanicGo{3}, PanicGo{3}}, "[]interface {}{%!v(PANIC=GoString method: 3), %!v(PANIC=GoString method: 3)}"},
    	// Format
    	{"%s", (*PanicF)(nil), "<nil>"}, // nil pointer special case
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  3. src/crypto/tls/tls_test.go

    	}
    
    	// Clear deadline and make sure it still times out
    	if err = srv.SetDeadline(time.Time{}); err != nil {
    		t.Fatalf("SetDeadline(time.Time{}) err: %v", err)
    	}
    	if _, err = srv.Write([]byte("This connection is permanently broken")); err == nil {
    		t.Fatal("Write which previously failed should still time out")
    	}
    
    	// Verify the error
    	if ne := err.(net.Error); ne.Temporary() != false {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  4. src/runtime/mprof.go

    	stw := stopTheWorld(stwGoroutineProfile)
    	// Using gcount while the world is stopped should give us a consistent view
    	// of the number of live goroutines, minus the number of goroutines that are
    	// alive and permanently marked as "system". But to make this count agree
    	// with what we'd get from isSystemGoroutine, we need special handling for
    	// goroutines that can vary between user and system to ensure that the count
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. cmd/erasure-object.go

    						}
    					}
    					return goi, ObjectNotFound{
    						Bucket: bucket,
    						Object: object,
    					}
    				}
    			}
    		} // Delete marker and any latest that qualifies shall be expired permanently.
    
    		return ObjectInfo{}, toObjectErr(er.deletePrefix(ctx, bucket, object), bucket, object)
    	}
    
    	storageDisks := er.getDisks()
    	versionFound := true
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  6. cluster/gce/windows/k8s-node-setup.psm1

        "CONTAINER_RUNTIME_ENDPOINT" = $container_runtime_endpoint
    
        'LICENSE_DIR' = 'C:\Program Files\Google\Compute Engine\THIRD_PARTY_NOTICES'
      }
    
      # Set the environment variables in two ways: permanently on the machine (only
      # takes effect after a reboot), and in the current shell.
      $env_vars.GetEnumerator() | ForEach-Object{
        $message = "Setting environment variable: " + $_.key + " = " + $_.value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/test.go

    		}
    
    		// Reject the '-fuzz' flag if the package is outside the main module.
    		// Otherwise, if fuzzing identifies a failure it could corrupt checksums in
    		// the module cache (or permanently alter the behavior of std tests for all
    		// users) by writing the failing input to the package's testdata directory.
    		// (See https://golang.org/issue/48495 and test_fuzz_modcache.txt.)
    		mainMods := modload.MainModules
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. pkg/kubelet/pod_workers.go

    //
    // Other components in the Kubelet can request a termination of the pod
    // via the UpdatePod method or the killPodNow wrapper - this will ensure
    // the components of the pod are stopped until the kubelet is restarted
    // or permanently (if the phase of the pod is set to a terminal phase
    // in the pod status change).
    type podWorkers struct {
    	// Protects all per worker fields.
    	podLock sync.Mutex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  9. src/crypto/tls/conn.go

    	return c.conn
    }
    
    // A halfConn represents one direction of the record layer
    // connection, either sending or receiving.
    type halfConn struct {
    	sync.Mutex
    
    	err     error  // first permanent error
    	version uint16 // protocol version
    	cipher  any    // cipher algorithm
    	mac     hash.Hash
    	seq     [8]byte // 64-bit sequence number
    
    	scratchBuf [13]byte // to avoid allocs; interface method args escape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. cmd/iam.go

    // policy is the role's policy.
    //
    // - inherited from parent - this is the case for AssumeRole API, where the
    // parent user is an actual real user with their own (permanent) credentials and
    // policy association.
    //
    // - inherited from "virtual" parent - this is the case for AssumeRoleWithLDAP
    // where the parent user is the DN of the actual LDAP user. The parent user
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top