Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 79 for Replayed (0.13 sec)

  1. tensorflow/cc/gradients/math_grad.cc

      return scope.status();
    }
    
    REGISTER_GRADIENT_OP("SelectV2", SelectV2Grad);
    
    // Helper function for unsorted segment ops.
    // Returns 'ids' with negative elements replaced by 0.
    Output GetZeroClippedIndices(const Scope& scope, const Output& ids) {
      return Maximum(scope, ids, ZerosLike(scope, ids));
    }
    
    // Helper function for unsorted segment ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  2. pkg/controller/daemon/daemon_controller.go

    		}
    		if oldestNewPod != nil && oldestOldPod != nil {
    			switch {
    			case !podutil.IsPodReady(oldestOldPod):
    				logger.V(5).Info("Pod from daemonset is no longer ready and will be replaced with newer pod", "oldPod", klog.KObj(oldestOldPod), "daemonset", klog.KObj(ds), "newPod", klog.KObj(oldestNewPod))
    				podsToDelete = append(podsToDelete, oldestOldPod.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Preconditions.java

     * public static double sqrt(double value) {
     *   if (value < 0) {
     *     throw new IllegalArgumentException("input is negative: " + value);
     *   }
     *   // calculate square root
     * }
     * }</pre>
     *
     * <p>to be replaced with the more compact
     *
     * <pre>{@code
     * public static double sqrt(double value) {
     *   checkArgument(value >= 0, "input is negative: %s", value);
     *   // calculate square root
     * }
     * }</pre>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. cmd/kubelet/app/server.go

    //
    //	1 Integration tests
    //	2 Kubelet binary
    //	3 Standalone 'kubernetes' binary
    //
    // Eventually, #2 will be replaced with instances of #3
    func RunKubelet(ctx context.Context, kubeServer *options.KubeletServer, kubeDeps *kubelet.Dependencies, runOnce bool) error {
    	hostname, err := nodeutil.GetHostname(kubeServer.HostnameOverride)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  5. pkg/controller/podautoscaler/horizontal.go

    		Reason:  reason,
    		Message: fmt.Sprintf("the HPA was unable to compute the replica count: %v", err),
    	}
    }
    
    // storeScaleEvent stores (adds or replaces outdated) scale event.
    // outdated events to be replaced were marked as outdated in the `markScaleEventsOutdated` function
    func (a *HorizontalController) storeScaleEvent(behavior *autoscalingv2.HorizontalPodAutoscalerBehavior, key string, prevReplicas, newReplicas int32) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

    // is created because it is a required input to _XlaRecvAtHost and
    // _XlaSendFromHost but the _XlaCompileMlir has not yet been created for device
    // cluster that contains the outside compiled ops. This placeholder should be
    // replaced by the TPU cluster _XlaCompileMlir in a subsequent pass.
    mlir::TF::_XlaCompileMlirPlaceholderProgramKeyOp
    CreateCompilationKeyPlaceholder(Location loc, OpBuilder& builder) {
      auto result_type =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		}
    	}
    }
    
    func (c *Cacher) dispatchEvent(event *watchCacheEvent) {
    	c.startDispatching(event)
    	defer c.finishDispatching()
    	// Watchers stopped after startDispatching will be delayed to finishDispatching,
    
    	// Since add() can block, we explicitly add when cacher is unlocked.
    	// Dispatching event in nonblocking way first, which make faster watchers
    	// not be blocked by slower ones.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. src/time/format.go

    //	"Z07:00"     Z or ±hh:mm
    //	"Z07"        Z or ±hh
    //	"Z070000"    Z or ±hhmmss
    //	"Z07:00:00"  Z or ±hh:mm:ss
    //
    // Within the format string, the underscores in "_2" and "__2" represent spaces
    // that may be replaced by digits if the following number has multiple digits,
    // for compatibility with fixed-width Unix time formats. A leading zero represents
    // a zero-padded value.
    //
    // The formats __2 and 002 are space-padded and zero-padded
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/Preconditions.java

     * public static double sqrt(double value) {
     *   if (value < 0) {
     *     throw new IllegalArgumentException("input is negative: " + value);
     *   }
     *   // calculate square root
     * }
     * }</pre>
     *
     * <p>to be replaced with the more compact
     *
     * <pre>{@code
     * public static double sqrt(double value) {
     *   checkArgument(value >= 0, "input is negative: %s", value);
     *   // calculate square root
     * }
     * }</pre>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserTest.groovy

            def depCompile = dependencies[0]
            depCompile.selector == moduleId('group-two', 'artifact-two', '1.1')
            depCompile.scope == MavenScope.Runtime //scope is defined in the dependency declaration and is not replaced
        }
    
        def "if two dependencyManagement entries for the same dependency are combined, the closest wins a conflict"() {
            given:
            def parent = tmpDir.file("parent.xml") << """
    <project>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 75.4K bytes
    - Viewed (0)
Back to top