Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 63 for sesame (0.16 sec)

  1. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	// - both saved and current statuses have Ready Conditions and they have the same LastProbeTime - nothing happened on that Node, it may be
    	//   unresponsive, so we leave it as it is,
    	// - both saved and current statuses have Ready Conditions, they have different LastProbeTimes, but the same Ready Condition State -
    	//   everything's in order, no transition occurred, we update only probeTimestamp,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    				this.clean_node(tmp);
    				this.__callback({ "obj" : d, "parent" : tmp });
    				if(callback) { callback.call(this, d); }
    				return d;
    			},
    			// Basic operations: rename (deal with text)
    			get_text	: function (obj) {
    				obj = this._get_node(obj);
    				if(!obj.length) { return false; }
    				var s = this._get_settings().core.html_titles;
    				obj = obj.children("a:eq(0)");
    				if(s) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// replicas is the desired number of replicas of the given Template.
    	// These are replicas in the sense that they are instantiations of the
    	// same Template, but individual replicas also have a consistent identity.
    	// If unspecified, defaults to 1.
    	// TODO: Consider a rename of this field.
    	// +optional
    	Replicas *int32 `json:"replicas,omitempty" protobuf:"varint,1,opt,name=replicas"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1/types.go

    	// replicas is the desired number of replicas of the given Template.
    	// These are replicas in the sense that they are instantiations of the
    	// same Template, but individual replicas also have a consistent identity.
    	// If unspecified, defaults to 1.
    	// TODO: Consider a rename of this field.
    	// +optional
    	Replicas *int32 `json:"replicas,omitempty" protobuf:"varint,1,opt,name=replicas"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  5. src/syscall/syscall_windows.go

    	}
    	return RemoveDirectory(pathp)
    }
    
    func Unlink(path string) (err error) {
    	pathp, err := UTF16PtrFromString(path)
    	if err != nil {
    		return err
    	}
    	return DeleteFile(pathp)
    }
    
    func Rename(oldpath, newpath string) (err error) {
    	from, err := UTF16PtrFromString(oldpath)
    	if err != nil {
    		return err
    	}
    	to, err := UTF16PtrFromString(newpath)
    	if err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  6. src/runtime/mprof.go

    package runtime
    
    import (
    	"internal/abi"
    	"internal/profilerecord"
    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    // NOTE(rsc): Everything here could use cas if contention became an issue.
    var (
    	// profInsertLock protects changes to the start of all *bucket linked lists
    	profInsertLock mutex
    	// profBlockLock protects the contents of every blockRecord struct
    	profBlockLock mutex
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. operator/pkg/apis/istio/v1alpha1/values_types.proto

    // JSON or YAML marshalling and unmarshalling, it produces or consumes the
    // inner type.  This allows you to have, for example, a JSON field that can
    // accept a name or number.
    // TODO: Rename to Int32OrString
    //
    // +protobuf=true
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    // +k8s:openapi-gen=true
    message IntOrString {
      int64 type = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  8. cmd/object-api-listobjects_test.go

    				foundPrefixes = append(foundPrefixes, result.Prefixes...)
    				if !result.IsTruncated {
    					break
    				}
    				marker = result.NextMarker
    				if len(result.Objects) > 0 {
    					// Discard marker, so it cannot resume listing.
    					marker = result.Objects[len(result.Objects)-1].Name
    				}
    			}
    
    			if len(testCase.result.Objects) != len(foundObjects) {
    				t.Logf("want: %v", objInfoNames(testCase.result.Objects))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  9. src/runtime/mgcscavenge.go

    // immediately eligible for being backed by huge pages. Note that for the most part these
    // density heuristics are best-effort heuristics. It's totally possible (but unlikely)
    // that a chunk that just became dense is scavenged in the case of a race between memory
    // allocation and scavenging.
    //
    // When synchronously scavenging for the memory limit or for debug.FreeOSMemory, these
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  10. pkg/proxy/endpointschangetracker_test.go

    		}},
    		expectedNewlyActiveUDPServices: map[ServicePortName]bool{},
    		expectedLocalEndpoints:         map[types.NamespacedName]int{},
    		expectedChangedEndpoints:       sets.New(makeNSN("ns1", "ep1")),
    	}, {
    		name: "rename a port",
    		previousEndpointSlices: []*discovery.EndpointSlice{
    			makeTestEndpointSlice("ns1", "ep1", 1, namedPort),
    		},
    		currentEndpointSlices: []*discovery.EndpointSlice{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 79.9K bytes
    - Viewed (0)
Back to top