Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 340 for Id (0.02 sec)

  1. cmd/prepare-storage.go

    		if err == nil && format != nil {
    			// Assign globalDeploymentID() on first run for the
    			// minio server managing the first disk
    			globalDeploymentIDPtr.Store(&format.ID)
    
    			// Set the deployment ID here to avoid races.
    			xhttp.SetDeploymentID(format.ID)
    			xhttp.SetMinIOVersion(Version)
    		}
    	}()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun May 19 08:06:49 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. src/syscall/exec_linux.go

    )
    
    // SysProcIDMap holds Container ID to Host ID mappings used for User Namespaces in Linux.
    // See user_namespaces(7).
    //
    // Note that User Namespaces are not available on a number of popular Linux
    // versions (due to security issues), or are available but subject to AppArmor
    // restrictions like in Ubuntu 24.04.
    type SysProcIDMap struct {
    	ContainerID int // Container ID.
    	HostID      int // Host ID.
    	Size        int // Size.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. src/net/dnsclient_unix.go

    	// gets set to true.
    	errServerTemporarilyMisbehaving = &temporaryError{"server misbehaving"}
    )
    
    func newRequest(q dnsmessage.Question, ad bool) (id uint16, udpReq, tcpReq []byte, err error) {
    	id = uint16(randInt())
    	b := dnsmessage.NewBuilder(make([]byte, 2, 514), dnsmessage.Header{ID: id, RecursionDesired: true, AuthenticData: ad})
    	if err := b.StartQuestions(); err != nil {
    		return 0, nil, nil, err
    	}
    	if err := b.Question(q); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  4. pilot/pkg/xds/discovery.go

    	ListRemoteClusters func() []cluster.DebugInfo
    
    	// ClusterAliases are alias names for cluster. When a proxy connects with a cluster ID
    	// and if it has a different alias we should use that a cluster ID for proxy.
    	ClusterAliases map[cluster.ID]cluster.ID
    
    	// pushVersion stores the numeric push version. This should be accessed via NextVersion()
    	pushVersion atomic.Uint64
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. pilot/pkg/xds/ads.go

    	if con.ID() == "" {
    		return
    	}
    	s.removeCon(con.ID())
    	if s.StatusReporter != nil {
    		s.StatusReporter.RegisterDisconnect(con.ID(), AllTrackingEventTypes)
    	}
    	s.WorkloadEntryController.OnDisconnect(con)
    }
    
    func connectionID(node string) string {
    	id := atomic.AddInt64(&connectionNumber, 1)
    	return node + "-" + strconv.FormatInt(id, 10)
    }
    
    // Only used for test
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_sandbox_test.go

    		assert.Equal(t, os.FileMode(0755), perm)
    		return nil
    	}
    	id, _, err := m.createPodSandbox(ctx, pod, 1)
    	assert.NoError(t, err)
    	assert.Contains(t, fakeRuntime.Called, "RunPodSandbox")
    	sandboxes, err := fakeRuntime.ListPodSandbox(ctx, &runtimeapi.PodSandboxFilter{Id: id})
    	assert.NoError(t, err)
    	assert.Equal(t, len(sandboxes), 1)
    	assert.Equal(t, sandboxes[0].Id, fmt.Sprintf("%s_%s_%s_1", pod.Name, pod.Namespace, pod.UID))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. src/go/types/builtins.go

    			return nil
    		}
    		resTyp := check.applyTypeFunc(f, x, id)
    		if resTyp == nil {
    			code := InvalidImag
    			if id == _Real {
    				code = InvalidReal
    			}
    			check.errorf(x, code, invalidArg+"argument has type %s, expected complex type", x.typ)
    			return
    		}
    
    		// if the argument is a constant, the result is a constant
    		if x.mode == constant_ {
    			if id == _Real {
    				x.val = constant.Real(x.val)
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/value.go

    	}
    	s := fmt.Sprintf("v%d = %s", v.ID, v.Op)
    	s += " <" + v.Type.String() + ">"
    	s += v.auxString()
    	for _, a := range v.Args {
    		s += fmt.Sprintf(" %v", a)
    	}
    	if v.Block == nil {
    		return s
    	}
    	r := v.Block.Func.RegAlloc
    	if int(v.ID) < len(r) && r[v.ID] != nil {
    		s += " : " + r[v.ID].String()
    	}
    	if reg := v.Block.Func.tempRegs[v.ID]; reg != nil {
    		s += " tmp=" + reg.String()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. src/cmd/trace/goroutines.go

    <th></th>
    {{range $.NonOverlappingStats}}
    <th class="link" onclick="reloadTable('sortby', '{{.}}')" {{headerStyle .}}> {{.}}</th>
    {{end}}
    </tr>
    {{range .Goroutines}}
    	<tr>
    		<td> <a href="/trace?goid={{.ID}}">{{.ID}}</a> </td>
    		<td> {{ .TotalTime.String }} </td>
    		<td>
    			<div class="stacked-bar-graph">
    			{{$Goroutine := .}}
    			{{range $.NonOverlappingStats}}
    				{{$Time := index $Goroutine.NonOverlappingStats .}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. src/net/http/cookiejar/jar.go

    		if err != nil {
    			continue
    		}
    		id := e.id()
    		if remove {
    			if submap != nil {
    				if _, ok := submap[id]; ok {
    					delete(submap, id)
    					modified = true
    				}
    			}
    			continue
    		}
    		if submap == nil {
    			submap = make(map[string]entry)
    		}
    
    		if old, ok := submap[id]; ok {
    			e.Creation = old.Creation
    			e.seqNum = old.seqNum
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top