Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 52 for repeated (0.21 sec)

  1. src/cmd/go/internal/load/pkg.go

    		key := pkg.ImportPath
    		if pkg.Internal.PGOProfile != "" {
    			key += " pgo:" + pkg.Internal.PGOProfile
    		}
    		if seen[key] && !reported[key] {
    			reported[key] = true
    			base.Errorf("internal error: duplicate loads of %s", pkg.ImportPath)
    		}
    		seen[key] = true
    	}
    	base.ExitIfErrors()
    }
    
    // mainPackagesOnly filters out non-main packages matched only by arguments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/asm6.go

    	{0x0F, 0x1F, 0x80, 0x00, 0x00, 0x00, 0x00},
    	{0x0F, 0x1F, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00},
    	{0x66, 0x0F, 0x1F, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00},
    }
    
    // Native Client rejects the repeated 0x66 prefix.
    // {0x66, 0x66, 0x0F, 0x1F, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00},
    func fillnop(p []byte, n int) {
    	var m int
    
    	for n > 0 {
    		m = n
    		if m > len(nop) {
    			m = len(nop)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/asm7.go

    }
    
    // bitconEncode returns the encoding of a bitcon used in logical instructions
    // x is known to be a bitcon
    // a bitcon is a sequence of n ones at low bits (i.e. 1<<n-1), right rotated
    // by R bits, and repeated with period of 64, 32, 16, 8, 4, or 2.
    // it is encoded in logical instructions with 3 bitfields
    // N (1 bit) : R (6 bits) : S (6 bits), where
    // N=1           -- period=64
    // N=0, S=0xxxxx -- period=32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_test.go

    	for _, podToReject := range a.podsToReject {
    		if podToReject.UID == attrs.Pod.UID {
    			return lifecycle.PodAdmitResult{Admit: false, Reason: "Rejected", Message: "Pod is rejected"}
    		}
    	}
    	return lifecycle.PodAdmitResult{Admit: true}
    }
    
    // Test verifies that the kubelet invokes an admission handler during HandlePodAdditions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods_test.go

    				`,
    			},
    		},
    		{
    			name:    "pod is not added to worker by sync method because it has been rejected",
    			wantErr: false,
    			pods: []*v1.Pod{
    				simplePod(),
    			},
    			rejectedPods: []rejectedPod{
    				{uid: "1", reason: "Test", message: "rejected"},
    			},
    			wantWorker: func(t *testing.T, w *podWorkers, records map[types.UID][]syncPodRecord) {
    				uid := types.UID("1")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    	if pod.Status.Phase == v1.PodSucceeded || pod.Status.Phase == v1.PodFailed {
    		return true
    	}
    	// a pod that has been marked terminal within the Kubelet is considered
    	// inactive (may have been rejected by Kubelet admission)
    	if status, ok := kl.statusManager.GetPodStatus(pod.UID); ok {
    		if status.Phase == v1.PodSucceeded || status.Phase == v1.PodFailed {
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/cache/LocalCache.java

       * eligibility for garbage collection. This should be called every time expireEntries or
       * evictEntry is called (once the lock is released).
       */
      void processPendingNotifications() {
        RemovalNotification<K, V> notification;
        while ((notification = removalNotificationQueue.poll()) != null) {
          try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        ```
    
        wll be replaced by `_replication_info="cluster"` and  `_xla_compile_device_type="TPU"`.
    
        ```mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/LocalCache.java

       * eligibility for garbage collection. This should be called every time expireEntries or
       * evictEntry is called (once the lock is released).
       */
      void processPendingNotifications() {
        RemovalNotification<K, V> notification;
        while ((notification = removalNotificationQueue.poll()) != null) {
          try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/horizontal_test.go

    	if len(tc.reportedLevels) != len(tc.reportedCPURequests) || len(tc.reportedLevels) == 0 {
    		return
    	}
    	reported := 0
    	for _, r := range tc.reportedLevels {
    		reported += int(r)
    	}
    	requested := 0
    	for _, req := range tc.reportedCPURequests {
    		requested += int(req.MilliValue())
    	}
    	tc.CPUCurrent = int32(100 * reported / requested)
    }
    
    func init() {
    	// set this high so we don't accidentally run into it when testing
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
Back to top