Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 108 for minit (0.04 sec)

  1. pilot/pkg/model/push_context_test.go

    	for _, cfg := range envoyFilters {
    		_, _ = store.Create(cfg)
    	}
    	env.ConfigStore = store
    	m := mesh.DefaultMeshConfig()
    	env.Watcher = mesh.NewFixedWatcher(m)
    	env.Init()
    
    	// Init a new push context
    	pc := NewPushContext()
    	pc.initEnvoyFilters(env, nil, nil)
    	gotns := make([]string, 0)
    	for _, filter := range pc.envoyFiltersByNamespace["testns"] {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  2. src/runtime/malloc.go

    // physPageSize.
    //
    // This must be set by the OS init code (typically in osinit) before
    // mallocinit.
    var physPageSize uintptr
    
    // physHugePageSize is the size in bytes of the OS's default physical huge
    // page size whose allocation is opaque to the application. It is assumed
    // and verified to be a power of two.
    //
    // If set, this must be set by the OS init code (typically in osinit) before
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. src/runtime/mgcscavenge.go

    	//
    	// If this is nil, it is populated with the real thing in init.
    	gomaxprocs func() int32
    }
    
    // init initializes a scavenger state and wires to the current G.
    //
    // Must be called from a regular goroutine that can allocate.
    func (s *scavengerState) init() {
    	if s.g != nil {
    		throw("scavenger state is already wired")
    	}
    	lockInit(&s.lock, lockRankScavenge)
    	s.g = getg()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. src/go/printer/nodes.go

    func (p *printer) controlClause(isForStmt bool, init ast.Stmt, expr ast.Expr, post ast.Stmt) {
    	p.print(blank)
    	needsBlank := false
    	if init == nil && post == nil {
    		// no semicolons required
    		if expr != nil {
    			p.expr(stripParens(expr))
    			needsBlank = true
    		}
    	} else {
    		// all semicolons required
    		// (they are not separators, print them explicitly)
    		if init != nil {
    			p.stmt(init, false)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  5. src/debug/elf/file_test.go

    			{"hello.c", 4, 0, 65521, 0, 0, "", ""},
    			{"printf", 18, 0, 0, 0, 44, "", ""},
    			{"_DYNAMIC", 17, 0, 65521, 134518284, 0, "", ""},
    			{"__dso_handle", 17, 2, 11, 134518272, 0, "", ""},
    			{"_init", 18, 0, 6, 134513512, 0, "", ""},
    			{"environ", 17, 0, 18, 134518512, 4, "", ""},
    			{"__deregister_frame_info", 32, 0, 0, 0, 0, "", ""},
    			{"__progname", 17, 0, 11, 134518268, 4, "", ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  6. cmd/erasure-healing_test.go

    	"crypto/rand"
    	"crypto/sha256"
    	"errors"
    	"io"
    	"os"
    	"path"
    	"reflect"
    	"testing"
    	"time"
    
    	"github.com/dustin/go-humanize"
    	uuid2 "github.com/google/uuid"
    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/minio/internal/config/storageclass"
    )
    
    // Tests isObjectDangling function
    func TestIsObjectDangling(t *testing.T) {
    	fi := newFileInfo("test-object", 2, 2)
    	fi.Erasure.Index = 1
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    				});
    				s.plugins = t;
    
    				// push the new object to the instances array (at the same time set the default classes to the container) and init
    				instances[instance_id] = new $.jstree._instance(instance_id, $(this).addClass("jstree jstree-" + instance_id), s);
    				// init all activated plugins for this instance
    				$.each(instances[instance_id]._get_settings().plugins, function (i, val) { instances[instance_id].data[val] = {}; });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * <<#rel4.8:configure_internal_tasks,Configure existing `wrapper` and `init` tasks>> rather than defining your own
     * Consider migrating to the built-in <<dependency_locking#dependency-locking,dependency locking mechanism>> if you are currently using a plugin or custom solution for this
    
    
    === Potential breaking changes
    
     * Build will now fail if a specified init script is not found.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  9. src/cmd/cgo/out.go

    		defer fgcch.Close()
    		_, err = io.Copy(fexp, fgcch)
    		if err != nil {
    			fatalf("%s", err)
    		}
    		if err = fexp.Close(); err != nil {
    			fatalf("%s", err)
    		}
    	}
    
    	init := gccgoInit.String()
    	if init != "" {
    		// The init function does nothing but simple
    		// assignments, so it won't use much stack space, so
    		// it's OK to not split the stack. Splitting the stack
    		// can run into a bug in clang (as of 2018-11-09):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. src/cmd/internal/testdir/testdir_test.go

    	"fixedbugs/issue7525b.go", // types2 reports init cycle error on different line - ok otherwise
    	"fixedbugs/issue7525c.go", // types2 reports init cycle error on different line - ok otherwise
    	"fixedbugs/issue7525d.go", // types2 reports init cycle error on different line - ok otherwise
    	"fixedbugs/issue7525e.go", // types2 reports init cycle error on different line - ok otherwise
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top