Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 134 for permanently (0.23 sec)

  1. pkg/kubelet/apis/config/types.go

    	// The format is <major>.<minor>, e.g.: '1.16'.
    	// The purpose of this format is make sure you have the opportunity to notice if the next release hides additional metrics,
    	// rather than being surprised when they are permanently removed in the release after that.
    	ShowHiddenMetricsForVersion string
    	// Logging specifies the options of logging.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  2. cmd/kubelet/app/options/options.go

    		deprecated := "This parameter should be set via the config file specified by the Kubelet's --config flag. See https://kubernetes.io/docs/tasks/administer-cluster/kubelet-config-file/ for more information."
    		// Some flags are permanently (?) meant to be available. In
    		// Kubernetes 1.23, the following options were added to
    		// LoggingConfiguration (long-term goal, more complete
    		// configuration file) but deprecating the flags seemed
    		// premature.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  3. cmd/kube-proxy/app/server.go

    			"The format is <major>.<minor>, e.g.: '1.16'. "+
    			"The purpose of this format is make sure you have the opportunity to notice if the next release hides additional metrics, "+
    			"rather than being surprised when they are permanently removed in the release after that. "+
    			"This parameter is ignored if a config file is specified by --config.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. CREDITS

    provisionally, unless and until the copyright holder explicitly and
    finally terminates your license, and (b) permanently, if the copyright
    holder fails to notify you of the violation by some reasonable means
    prior to 60 days after the cessation.
    
      Moreover, your license from a particular copyright holder is
    reinstated permanently if the copyright holder notifies you of the
    violation by some reasonable means, this is the first time you have
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top