Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 106 for Id (0.05 sec)

  1. src/runtime/pprof/pprof_test.go

    		wantSamples: []*profile.Sample{
    			{Value: []int64{30, 30 * period}, Location: []*profile.Location{{ID: 1}, {ID: 1}, {ID: 2}}},
    			{Value: []int64{40, 40 * period}, Location: []*profile.Location{{ID: 1}, {ID: 2}}},
    		},
    	}, {
    		name: "recursion_chain_inline",
    		input: []uint64{
    			3, 0, 500, // hz = 500. Must match the period.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  2. cmd/erasure-server-pool.go

    		}
    
    		if deploymentID == "" {
    			// all pools should have same deployment ID
    			deploymentID = formats[i].ID
    		}
    
    		// Validate if users brought different DeploymentID pools.
    		if deploymentID != formats[i].ID {
    			return nil, fmt.Errorf("all pools must have same deployment ID - expected %s, got %s for pool(%s)", deploymentID, formats[i].ID, humanize.Ordinal(i+1))
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		if id >= 0x80000000/36-36 {
    			st.fail("sequence ID overflow")
    		}
    		c := st.str[0]
    		if c == '_' {
    			st.advance(1)
    			return id + 1
    		}
    		if isDigit(c) {
    			id = id*36 + int(c-'0')
    		} else if isUpper(c) {
    			id = id*36 + int(c-'A') + 10
    		} else {
    			st.fail("invalid character in sequence ID")
    		}
    		st.advance(1)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/api_test.go

    			}
    			if def.Exported() != test.obj.Exported() {
    				t.Fatalf("Exported() = %v, want %v", def.Exported(), test.obj.Exported())
    			}
    			if def.Id() != test.obj.Id() {
    				t.Fatalf("Id() = %v, want %v", def.Id(), test.obj.Id())
    			}
    			// String and Type are expected to differ.
    		})
    	}
    }
    
    func originObject(obj Object) Object {
    	switch obj := obj.(type) {
    	case *Var:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  5. pkg/kubelet/pod_workers_test.go

    				return nil
    			},
    			syncTerminatingRuntimePod: func(ctx context.Context, runningPod *kubecontainer.Pod) error {
    				func() {
    					lock.Lock()
    					defer lock.Unlock()
    					processed[runningPod.ID] = append(processed[runningPod.ID], syncPodRecord{
    						name:       runningPod.Name,
    						updateType: kubetypes.SyncPodKill,
    						runningPod: runningPod,
    					})
    				}()
    				return nil
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewrite.go

    	loopnest.calculateDepths()
    	if loopnest.depth(target.Block.ID) > loopnest.depth(x.Block.ID) {
    		return false
    	}
    	return canMergeLoad(target, load)
    }
    
    // canMergeLoad reports whether the load can be merged into target without
    // invalidating the schedule.
    func canMergeLoad(target, load *Value) bool {
    	if target.Block.ID != load.Block.ID {
    		// If the load is in a different block do not merge it.
    		return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  7. src/go/types/api_test.go

    			}
    			if def.Exported() != test.obj.Exported() {
    				t.Fatalf("Exported() = %v, want %v", def.Exported(), test.obj.Exported())
    			}
    			if def.Id() != test.obj.Id() {
    				t.Fatalf("Id() = %v, want %v", def.Id(), test.obj.Id())
    			}
    			// String and Type are expected to differ.
    		})
    	}
    }
    
    func originObject(obj Object) Object {
    	switch obj := obj.(type) {
    	case *Var:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    	writeTestFile(t, fmt.Sprintf("%s/recursive/pod/pod_1/busybox.json", tmpDir), strings.Replace(aPod, "{id}", "1", -1))
    	writeTestFile(t, fmt.Sprintf("%s/recursive/rc/busybox.json", tmpDir), strings.Replace(aRC, "{id}", "0", -1))
    	writeTestFile(t, fmt.Sprintf("%s/recursive/rc/rc_1/busybox.json", tmpDir), strings.Replace(aRC, "{id}", "1", -1))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  9. cmd/bucket-replication-utils_gen.go

    				err = za0002.DecodeMsg(dc)
    				if err != nil {
    					err = msgp.WrapError(err, "TargetsMap", za0001)
    					return
    				}
    				z.TargetsMap[za0001] = za0002
    			}
    		case "id":
    			z.ID, err = dc.ReadInt()
    			if err != nil {
    				err = msgp.WrapError(err, "ID")
    				return
    			}
    		case "lu":
    			z.LastUpdate, err = dc.ReadTime()
    			if err != nil {
    				err = msgp.WrapError(err, "LastUpdate")
    				return
    			}
    		default:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 61.1K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    type Header struct {
    	ID                 uint16
    	Response           bool
    	OpCode             OpCode
    	Authoritative      bool
    	Truncated          bool
    	RecursionDesired   bool
    	RecursionAvailable bool
    	AuthenticData      bool
    	CheckingDisabled   bool
    	RCode              RCode
    }
    
    func (m *Header) pack() (id uint16, bits uint16) {
    	id = m.ID
    	bits = uint16(m.OpCode)<<11 | uint16(m.RCode)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
Back to top