Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 131 for INITIALIZING (0.15 sec)

  1. src/runtime/cgocall.go

    	KeepAlive(fn)
    	KeepAlive(arg)
    	KeepAlive(mp)
    
    	return errno
    }
    
    // Set or reset the system stack bounds for a callback on sp.
    //
    // Must be nosplit because it is called by needm prior to fully initializing
    // the M.
    //
    //go:nosplit
    func callbackUpdateSystemStack(mp *m, sp uintptr, signal bool) {
    	g0 := mp.g0
    
    	inBound := sp > g0.stack.lo && sp <= g0.stack.hi
    	if mp.ncgo > 0 && !inBound {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. pkg/controlplane/apiserver/options/options.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package options contains flags and options for initializing an apiserver
    package options
    
    import (
    	"fmt"
    	"net"
    	"os"
    	"strings"
    	"time"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	peerreconcilers "k8s.io/apiserver/pkg/reconcilers"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_plugin.go

    			return true
    		},
    		csitranslationplugins.PortworxVolumePluginName: func() bool {
    			return utilfeature.DefaultFeatureGate.Enabled(features.CSIMigrationPortworx)
    		},
    	}
    
    	// Initializing the label management channels
    	nim = nodeinfomanager.NewNodeInfoManager(host.GetNodeName(), host, migratedPlugins)
    
    	// This function prevents Kubelet from posting Ready status until CSINode
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  4. cmd/background-newdisks-heal-ops.go

    		// same erasure set with same healing-id successfully finished
    		// healing.
    		if errors.Is(err, errFileNotFound) {
    			return nil
    		}
    		healingLogIf(ctx, fmt.Errorf("Unable to load healing tracker on '%s': %w, re-initializing..", disk, err))
    		tracker = initHealingTracker(disk, mustGetUUID())
    	}
    
    	healingLogEvent(ctx, "Healing drive '%s' - 'mc admin heal alias/ --verbose' to check the current status.", endpoint)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:32 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/main/resources/header.html

                    <li><a class="nav-dropdown" data-toggle="collapse" aria-expanded="false">Tutorial</a>
                        <ul id="running-tutorial">
                            <li><a href="../userguide/part1_gradle_init.html">1. Initializing the Project</a></li>
                            <li><a href="../userguide/part2_gradle_tasks.html">2. Running Tasks</a></li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  6. src/runtime/signal_unix.go

    	sigaddset(&set, int(sig))
    	sigprocmask(_SIG_UNBLOCK, &set, nil)
    }
    
    // minitSignals is called when initializing a new m to set the
    // thread's alternate signal stack and signal mask.
    func minitSignals() {
    	minitSignalStack()
    	minitSignalMask()
    }
    
    // minitSignalStack is called when initializing a new m to set the
    // alternate signal stack. If the alternate signal stack is not set
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  7. cmd/admin-handlers_test.go

    	// reset global variables to start afresh.
    	resetTestGlobals()
    
    	// Set globalIsErasure to indicate that the setup uses an erasure
    	// code backend.
    	globalIsErasure = true
    
    	// Initializing objectLayer for HealFormatHandler.
    	objLayer, erasureDirs, xlErr := initTestErasureObjLayer(ctx)
    	if xlErr != nil {
    		cancel()
    		return nil, xlErr
    	}
    
    	// Initialize minio server config.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. cmd/endpoint-ellipses.go

    	}
    	return totalSizes
    }
    
    // Parses all arguments and returns an endpointSet which is a collection
    // of endpoints following the ellipses pattern, this is what is used
    // by the object layer for initializing itself.
    func parseEndpointSet(setDriveCount uint64, args ...string) (ep endpointSet, err error) {
    	argPatterns := make([]ellipses.ArgPattern, len(args))
    	for i, arg := range args {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  9. cmd/signature-v4-utils_test.go

    		// creating an input HTTP request.
    		// Only the headers are relevant for this particular test.
    		inputReq, err := http.NewRequest(http.MethodGet, "http://example.com", nil)
    		if err != nil {
    			t.Fatalf("Error initializing input HTTP request: %v", err)
    		}
    		if testCase.inputQueryKey != "" {
    			q := inputReq.URL.Query()
    			q.Add(testCase.inputQueryKey, testCase.inputQueryValue)
    			if testCase.inputHeaderKey != "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 05 21:26:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  10. src/embed/embed.go

    //
    // FS implements fs.FS, so it can be used with any package that understands
    // file system interfaces, including net/http, text/template, and html/template.
    //
    // See the package documentation for more details about initializing an FS.
    type FS struct {
    	// The compiler knows the layout of this struct.
    	// See cmd/compile/internal/staticdata's WriteEmbed.
    	//
    	// The files list is sorted by name but not by simple string comparison.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:42:51 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top