Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 106 for Id (0.2 sec)

  1. src/cmd/compile/internal/ssa/debug.go

    		panic("unexpected pointer size")
    	}
    	if ID(int16(b)) != b || ID(int16(v)) != v {
    		return 0, false
    	}
    	return uint64(b)<<16 | uint64(uint16(v)), true
    }
    
    // Unpack a value and block ID encoded by encodeValue.
    func decodeValue(ctxt *obj.Link, word uint64) (ID, ID) {
    	if ctxt.Arch.PtrSize == 8 {
    		b, v := ID(word>>32), ID(word)
    		//ctxt.Logf("%#x -> b %#x (%d) v %#x (%d)\n", word, b, b, v, v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  2. cmd/batch-handlers.go

    	return err
    }
    
    // StartFromSource starts the batch replication job from remote source, resumes if there was a pending job via "job.ID"
    func (r *BatchJobReplicateV1) StartFromSource(ctx context.Context, api ObjectLayer, job BatchJobRequest) error {
    	ri := &batchJobInfo{
    		JobID:     job.ID,
    		JobType:   string(job.Type()),
    		StartTime: job.Started,
    	}
    	if err := ri.load(ctx, api, job); err != nil {
    		return err
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    			},
    		},
    		ContainerStatuses: []*kubecontainer.Status{
    			{
    				ID:   kubecontainer.ContainerID{ID: "id1"},
    				Name: "foo1", State: kubecontainer.ContainerStateRunning,
    				Hash: kubecontainer.HashContainer(&pod.Spec.Containers[0]),
    			},
    			{
    				ID:   kubecontainer.ContainerID{ID: "id2"},
    				Name: "foo2", State: kubecontainer.ContainerStateRunning,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/regalloc.go

    			s.spillLive[b.ID] = append(s.spillLive[b.ID], spill.ID)
    		}
    
    		// Clear any final uses.
    		// All that is left should be the pseudo-uses added for values which
    		// are live at the end of b.
    		for _, e := range s.live[b.ID] {
    			u := s.values[e.ID].uses
    			if u == nil {
    				f.Fatalf("live at end, no uses v%d", e.ID)
    			}
    			if u.next != nil {
    				f.Fatalf("live at end, too many uses v%d", e.ID)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  5. internal/bucket/lifecycle/lifecycle_test.go

    			expectedParsingErr:    nil,
    			expectedValidationErr: nil,
    		},
    		{ // lifecycle config with rules having duplicate ID
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    	expectEvents(t, fx,
    		Event{Type: "xds full", ID: "*.google.com"},
    		Event{Type: "xds full", ID: "*.istio.io"},
    		Event{Type: "xds full", ID: "tcpstatic.com"},
    		Event{Type: "service", ID: "*.google.com", Namespace: httpDNS.Namespace},
    		Event{Type: "eds cache", ID: "*.google.com", Namespace: httpDNS.Namespace},
    		Event{Type: "service", ID: "*.istio.io", Namespace: httpDNSRR.Namespace},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  7. tests/query_test.go

    		}
    	}
    
    	for idx, id := range ids {
    		if int(id) != int(users[idx].ID) {
    			t.Errorf("Unexpected result on pluck id, got %+v", ids)
    		}
    	}
    
    	for idx, id := range ids2 {
    		if int(id) != int(users[idx].ID+1) {
    			t.Errorf("Unexpected result on pluck id, got %+v", ids)
    		}
    	}
    
    	var times []time.Time
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  8. internal/s3select/select_test.go

    			query:      "select SUM(s.id) from s3object s Where 2 in s.numbers[*] or 'some' in s.synonyms[*]",
    			wantResult: `{"_1":3}`,
    		},
    		{
    			name:  "bignum-1",
    			query: `SELECT id from s3object s WHERE s.id <= 9223372036854775807`,
    			wantResult: `{"id":0}
    {"id":1}
    {"id":2}
    {"id":3}`,
    		},
    		{
    			name:  "bignum-2",
    			query: `SELECT id from s3object s WHERE s.id >= -9223372036854775808`,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 76.2K bytes
    - Viewed (0)
  9. src/crypto/tls/tls_test.go

    		} else {
    			lastID = c.ID
    		}
    
    		if !c.Insecure {
    			t.Errorf("%#04x: not Insecure CipherSuite returned by InsecureCipherSuites()", c.ID)
    		}
    	}
    
    	CipherSuiteByID := func(id uint16) *CipherSuite {
    		for _, c := range CipherSuites() {
    			if c.ID == id {
    				return c
    			}
    		}
    		for _, c := range InsecureCipherSuites() {
    			if c.ID == id {
    				return c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  10. pkg/kubelet/stats/cri_stats_provider_test.go

    		sandbox0.PodSandboxStatus.Id:  getTestContainerInfo(seedSandbox0, pName0, sandbox0.PodSandboxStatus.Metadata.Namespace, kubelettypes.PodInfraContainerName),
    		sandbox0Cgroup:                getTestContainerInfo(seedSandbox0, "", "", ""),
    		container0.ContainerStatus.Id: getTestContainerInfo(seedContainer0, pName0, sandbox0.PodSandboxStatus.Metadata.Namespace, cName0),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
Back to top