Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for ssdopts (0.23 sec)

  1. pkg/controller/statefulset/stateful_set.go

    			return nil, fmt.Errorf("original StatefulSet %v/%v is gone: got uid %v, wanted %v", set.Namespace, set.Name, fresh.UID, set.UID)
    		}
    		return fresh, nil
    	})
    }
    
    // adoptOrphanRevisions adopts any orphaned ControllerRevisions matched by set's Selector.
    func (ssc *StatefulSetController) adoptOrphanRevisions(ctx context.Context, set *apps.StatefulSet) error {
    	revisions, err := ssc.control.ListRevisions(set)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    	export PATH=/usr/gnu/bin:$PATH
    fi
    
    uname=$(uname)
    
    includes_AIX='
    #include <net/if.h>
    #include <net/netopt.h>
    #include <netinet/ip_mroute.h>
    #include <sys/protosw.h>
    #include <sys/stropts.h>
    #include <sys/mman.h>
    #include <sys/poll.h>
    #include <sys/select.h>
    #include <sys/termio.h>
    #include <termios.h>
    #include <fcntl.h>
    
    #define AF_LOCAL AF_UNIX
    '
    
    includes_Darwin='
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/language/language.go

    						// See https://unicode.org/cldr/trac/ticket/2698 and also
    						// https://unicode.org/cldr/trac/ticket/1790 for some of the
    						// practical implications. TODO: this check could be removed
    						// if CLDR adopts this change.
    						if c&CLDR == 0 || t.LangID != _nb {
    							changed = true
    							t.LangID = l
    						}
    					}
    				case language.Deprecated:
    					if c&DeprecatedBase != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_control.go

    	// error is nil, the returns slice of ControllerRevisions is valid.
    	ListRevisions(set *apps.StatefulSet) ([]*apps.ControllerRevision, error)
    	// AdoptOrphanRevisions adopts any orphaned ControllerRevisions that match set's Selector. If all adoptions are
    	// successful the returned error is nil.
    	AdoptOrphanRevisions(set *apps.StatefulSet, revisions []*apps.ControllerRevision) error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  5. pkg/controller/deployment/util/deployment_util.go

    	FailedRSCreateReason = "ReplicaSetCreateError"
    	// NewReplicaSetReason is added in a deployment when it creates a new replica set.
    	NewReplicaSetReason = "NewReplicaSetCreated"
    	// FoundNewRSReason is added in a deployment when it adopts an existing replica set.
    	FoundNewRSReason = "FoundNewReplicaSet"
    	// NewRSAvailableReason is added in a deployment when its newest replica set is made available
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    			}
    		}
    	}
    
    	var matches []*search.Match
    	if modload.Init(); cfg.ModulesEnabled {
    		modOpts := modload.PackageOpts{
    			ResolveMissingImports: true,
    			LoadTests:             opts.ModResolveTests,
    			SilencePackageErrors:  true,
    		}
    		matches, _ = modload.LoadPackages(ctx, modOpts, patterns...)
    	} else {
    		noModRoots := []string{}
    		matches = search.ImportPaths(patterns, noModRoots)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. cmd/site-replication.go

    }
    
    // syncToAllPeers is used for syncing local data to all remote peers, it is
    // called once during initial "AddPeerClusters" request.
    func (c *SiteReplicationSys) syncToAllPeers(ctx context.Context, addOpts madmin.SRAddOptions) error {
    	objAPI := newObjectLayerFn()
    	if objAPI == nil {
    		return errSRObjectLayerNotReady
    	}
    
    	buckets, err := objAPI.ListBuckets(ctx, BucketOptions{})
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
Back to top