Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 141 for iterations (0.29 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                    return null
                }
            }
            return binaryExpression
        }
    
        /**
         * For prefix and postfix `++` and `--`, the idea is the same because FIR represents it as several operations. For example, for `i++`,
         * if the input PSI is `i`, we instead resolve `i++` and extract the read part of this access for `i`.
         */
        private fun KtElement.getContainingUnaryIncOrDecExpression(): KtUnaryExpression? {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

    import org.gradle.internal.event.ListenerManager
    import org.gradle.internal.locking.DefaultDependencyLockingState
    import org.gradle.internal.model.CalculatedValueContainerFactory
    import org.gradle.internal.operations.TestBuildOperationRunner
    import org.gradle.internal.reflect.DirectInstantiator
    import org.gradle.internal.reflect.Instantiator
    import org.gradle.internal.work.WorkerThreadRegistry
    import org.gradle.testfixtures.ProjectBuilder
    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/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

          get_op_name: bool = False,
      ) -> int:
        """Returns the number of given ops in a graph def.
    
        Args:
          graphdef: A GraphDef object.
          op_names: Names of the operations to find within the graph.
          attr_name: Name of the attribute of the ops to match.
          attr_val: Value of the attr_name to check.
          get_op_name: If set True, checks node.name rather than node.op.
    
        Returns:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers.go

    	// deleting a terminating static pod from the apiserver before the pod is shut
    	// down.
    	IsPodForMirrorPodTerminatingByFullName(podFullname string) bool
    }
    
    // podSyncer describes the core lifecyle operations of the pod state machine. A pod is first
    // synced until it naturally reaches termination (true is returned) or an external agent decides
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    //     an STL-style container.
    // ValuesIn(Iterator begin, Iterator end)
    //   - returns a generator producing sequences with elements from
    //     a range [begin, end) defined by a pair of STL-style iterators. These
    //     iterators can also be plain C pointers.
    //
    // Please note that ValuesIn copies the values from the containers
    // passed in and keeps them to generate tests in RUN_ALL_TESTS().
    //
    // Examples:
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/horizontal.go

    	resList := inputList
    	var existingCond *autoscalingv2.HorizontalPodAutoscalerCondition
    	for i, condition := range resList {
    		if condition.Type == conditionType {
    			// can't take a pointer to an iteration variable
    			existingCond = &resList[i]
    			break
    		}
    	}
    
    	if existingCond == nil {
    		resList = append(resList, autoscalingv2.HorizontalPodAutoscalerCondition{
    			Type: conditionType,
    		})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. src/net/http/transport.go

    	// (Some goroutines on the wait list may have timed out or
    	// gotten a connection another way. If they're all gone,
    	// we don't want to kick off any spurious dial operations.)
    	if q := t.connsPerHostWait[key]; q.len() > 0 {
    		done := false
    		for q.len() > 0 {
    			w := q.popFront()
    			if w.waiting() {
    				t.startDialConnForLocked(w)
    				done = true
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    WARNING: Please consider reporting this to the maintainers of com.google.inject.internal.cglib.core.ReflectUtils$2
    WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
    WARNING: All illegal access operations will be denied in a future release
    ```
    
    With Java 16 or higher, exceptions are thrown that fail the build:
    ```
    // Thrown by TestNG
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  9. pkg/controller/volume/persistentvolume/pv_controller.go

    	// however overall speed of multi-worker controller would be lower than if
    	// it runs single thread only.
    	claimQueue  *workqueue.Typed[string]
    	volumeQueue *workqueue.Typed[string]
    
    	// Map of scheduled/running operations.
    	runningOperations goroutinemap.GoRoutineMap
    
    	// For testing only: hook to call before an asynchronous operation starts.
    	// Not used when set to nil.
    	preOperationHook func(operationName string)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/devicemanager/manager_test.go

    			}()
    			go func() {
    				defer wg.Done()
    				for !updated.Load() {
    					// When a data race occurs, golang will throw an error, and recover() cannot catch this error,
    					// Such as: `throw("Concurrent map iteration and map writing")`.
    					// When this test ends quietly, no data race error occurs.
    					// Otherwise, the test process exits automatically and prints all goroutine call stacks.
    					test.testfunc(mimpl)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
Back to top