Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for broadcasts (0.44 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

    import static java.util.Collections.emptyList;
    
    /**
     * Converts progress events sent from the tooling provider to the tooling client to the corresponding event types available on the public Tooling API, and broadcasts the converted events to the
     * matching progress listeners. This adapter handles all the different incoming progress event types (except the original logging-derived progress listener).
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            config.resolve()
    
            then:
            parent.observedState == ConfigurationInternal.InternalState.GRAPH_RESOLVED
        }
    
        def "resolving configuration puts it into the right state and broadcasts events"() {
            def listenerBroadcaster = Mock(AnonymousListenerBroadcast)
            def listener = Mock(DependencyResolutionListener)
            def config
    
            when:
            config = conf("conf")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass.cc

              {"MISC",
               // clang-format off
         {"ApproxTopK", "BroadcastTo", "ExpandDims", "Fill", "NoOp",
          "Range", "Rank", "Reshape", "Shape", "ShapeN", "Size", "Squeeze",
          "Transpose", "ZerosLike", "OnesLike", "BiasAdd" /*PW + Broadcast*/,
          "BroadcastArgs", "BroadcastGradientArgs", "OneHot", "Concat", "ConcatV2",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      friend class internal::NoExecDeathTest;
      friend class internal::TestEventListenersAccessor;
      friend class internal::UnitTestImpl;
    
      // Returns repeater that broadcasts the TestEventListener events to all
      // subscribers.
      TestEventListener* repeater();
    
      // Sets the default_result_printer attribute to the provided listener.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

      // It is safe to perform this transform here because-
      // the shapes of `pre_broadcast` and `dim` must be broadcast
      // compatible for the `broadcast_to` op to be valid.
      // And considering, `shape(post_broadcast)` == `shape(%input1)`,
      // `post_broadcast` is broadcast compatible with `input1`.
      def FuseBroadcastInto#SelectOp : Pat<
        (SelectOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/prepare-tf.mlir

    }
    
    func.func @broadcast_to_i16_low_dim(%input: tensor<3xi16>, %shape: tensor<2xi32>) -> tensor<3x3xi16> {
      %0 = "tf.BroadcastTo"(%input, %shape) : (tensor<3xi16>, tensor<2xi32>) -> tensor<3x3xi16>
      func.return %0: tensor<3x3xi16>
    
    // CHECK-LABEL: broadcast_to_i16_low_dim
    // CHECK:    %0 = "tf.BroadcastTo"(%arg0, %arg1) : (tensor<3xi16>, tensor<2xi32>) -> tensor<3x3xi16>
    // CHECK:    return %0 : tensor<3x3xi16>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/queue/scheduling_queue.go

    	metrics.SchedulerQueueIncomingPods.WithLabelValues("active", PodAdd).Inc()
    	p.addNominatedPodUnlocked(logger, pInfo.PodInfo, nil)
    	p.cond.Broadcast()
    
    	return nil
    }
    
    // Activate moves the given pods to activeQ iff they're in unschedulablePods or backoffQ.
    func (p *PriorityQueue) Activate(logger klog.Logger, pods map[string]*v1.Pod) {
    	p.lock.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/decompose_resource_ops.mlir

      "tf_device.cluster"() ({
        // CHECK-NOT: ResourceScatterUpdate
        // CHECK-NOT: BroadcastTo
        // CHECK: TensorScatterAdd
        "tf.ResourceScatterAdd"(%resource, %indices, %updates) {device = ""} : (tensor<*x!tf_type.resource>, tensor<?xi32>, tensor<i32>) -> ()
        tf_device.return
      }) : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  9. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	defer utilruntime.HandleCrash()
    
    	// Start events processing pipeline.
    	nc.broadcaster.StartStructuredLogging(3)
    	logger := klog.FromContext(ctx)
    	logger.Info("Sending events to api server")
    	nc.broadcaster.StartRecordingToSink(
    		&v1core.EventSinkImpl{
    			Interface: v1core.New(nc.kubeClient.CoreV1().RESTClient()).Events(""),
    		})
    	defer nc.broadcaster.Shutdown()
    
    	// Close node update queue to cleanup go routine.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/horizontal.go

    	cpuInitializationPeriod,
    	delayOfInitialReadinessStatus time.Duration,
    ) *HorizontalController {
    	broadcaster := record.NewBroadcaster(record.WithContext(ctx))
    	broadcaster.StartStructuredLogging(3)
    	broadcaster.StartRecordingToSink(&v1core.EventSinkImpl{Interface: evtNamespacer.Events("")})
    	recorder := broadcaster.NewRecorder(scheme.Scheme, v1.EventSource{Component: "horizontal-pod-autoscaler"})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top