Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for needMin (0.15 sec)

  1. tensorflow/compiler/mlir/lite/tests/prepare-quantize.mlir

    // CHECK: %[[q:.*]] = "tfl.quantize"(%[[dw]])
    // CHECK: %[[dq:.*]] = "tfl.dequantize"(%[[q]])
    // CHECK: return %[[dq]], %[[dq]]
    }
    
    // Series of values needing requantization -- first the args then the results
    // of concatenation operations. concat(concat(arg2, arg0), concat(arg1, arg0)),
    // concat(concat(arg2, arg0), arg3)). arg0 should be requantized twice --
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	// where the index is the index of the specific container in pod.Spec.EphemeralContainers.
    	EphemeralContainersToStart []int
    	// ContainersToUpdate keeps a list of containers needing resource update.
    	// Container resource update is applicable only for CPU and memory.
    	ContainersToUpdate map[v1.ResourceName][]containerToUpdateInfo
    	// UpdatePodResources is true if container(s) need resource update with restart
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    			Annotations: map[string]string{
    				constants.AmbientWaypointInboundBinding: "PROXY/15088",
    			},
    		},
    	})
    	s.addWaypoint(t, "1.2.3.4", "proxy-sandwich", constants.AllTraffic, true)
    	// TODO needing this check seems suspicious. We should really wait for up to 2 pod events.
    	assert.EventuallyEqual(t, func() int { return len(s.waypoints.List()) }, 1)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    	IgnoreChangesAndAdditions bool
    	// IgnoreDeletions indicates if we keep the deletions in the patch.
    	IgnoreDeletions bool
    	// We introduce a new value retainKeys for patchStrategy.
    	// It indicates that all fields needing to be preserved must be
    	// present in the `retainKeys` list.
    	// And the fields that are present will be merged with live object.
    	// All the missing fields will be cleared when patching.
    	BuildRetainKeysDirective bool
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    		t.Helper()
    		retry.UntilSuccessOrFail(t, func() error {
    			controller.pods.RLock()
    			defer controller.pods.RUnlock()
    			if len(controller.pods.needResync) != expected {
    				return fmt.Errorf("expected %d pods needing resync, got %d", expected, len(controller.pods.needResync))
    			}
    			return nil
    		}, retry.Timeout(time.Second))
    	}
    
    	// standard ordering
    	addService("svc")
    	addPod("pod1", "172.0.1.1")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  6. cmd/xl-storage.go

    			return res, osErrToFileErr(err)
    		}
    		diskHealthCheckOK(ctx, err)
    	}
    
    	// If we have oldDataDir then we must preserve current xl.meta
    	// as backup, in-case needing renames().
    	if res.OldDataDir != "" {
    		if contextCanceled(ctx) {
    			return res, ctx.Err()
    		}
    
    		// preserve current xl.meta inside the oldDataDir.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  7. pkg/kubelet/pod_workers.go

    	for uid, status := range p.podSyncStatuses {
    		// We retain the worker history of any pod that is still desired according to
    		// its UID. However, there are two scenarios during a sync that result in us
    		// needing to purge the history:
    		//
    		// 1. The pod is no longer desired (the local version is orphaned)
    		// 2. The pod received a kill update and then a subsequent create, which means
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/riscv/obj.go

    				rt = objabi.R_RISCV_PCREL_STYPE
    				addr = &p.To
    			} else {
    				break
    			}
    			if p.As == AAUIPC {
    				if p.Link == nil {
    					ctxt.Diag("AUIPC needing PC-relative reloc missing following instruction")
    					break
    				}
    				addr = &p.RestArgs[0].Addr
    			}
    			if addr.Sym == nil {
    				ctxt.Diag("PC-relative relocation missing symbol")
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
Back to top