Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 66 for instantly (0.15 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtensionProvider.kt

         *
         * Implementations should consider caching the results, so the subsequent invocations should be performed instantly.
         *
         * Implementation cannot use the Kotlin resolve inside, as this function is called during session initialization, so Analysis API access is forbidden.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. ci/official/utilities/setup_docker.sh

    if [[ "$TFCI_DOCKER_PULL_ENABLE" == 1 ]]; then
      # Simple retry logic for docker-pull errors. Sleeps if a pull fails.
      # Pulling an already-pulled container image will finish instantly, so
      # repeating the command costs nothing.
      docker pull "$TFCI_DOCKER_IMAGE" || sleep 15
      docker pull "$TFCI_DOCKER_IMAGE" || sleep 30
      docker pull "$TFCI_DOCKER_IMAGE" || sleep 60
      docker pull "$TFCI_DOCKER_IMAGE"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 18:22:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/projectresult/ResolvedLocalComponentsResultGraphVisitor.java

     *
     * TODO: The logic in this visitor should be integrated directly into the DefaultLocalConfigurationMetadataBuilder
     * so that we instantly mark configurations as observed as their metadata is constructed. That would be an improvement
     * over this visitor, since here we only mark a configuration observed if its metadata is present in the final graph.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeProvider.kt

        /**
         * This function is provided for a few use-cases where it's hard to go without it.
         *
         * **Please avoid using it**; it will probably be removed in the future.
         *
         * The function is instantly deprecated, so it's not shown in the completion.
         *
         * @receiver A target callable symbol.
         * @return A dispatch receiver type for this symbol if it has any.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    			taintToAdd := *NotReadyTaintTemplate
    			if !controllerutil.SwapNodeControllerTaint(ctx, nc.kubeClient, []*v1.Taint{&taintToAdd}, []*v1.Taint{UnreachableTaintTemplate}, node) {
    				logger.Error(nil, "Failed to instantly swap UnreachableTaint to NotReadyTaint. Will try again in the next cycle")
    			}
    		} else if nc.markNodeForTainting(node, v1.ConditionFalse) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/values.yaml

          #
          # If the probe is disabled, it is recommended to have delay=1s,period=2s,failureThreshold=30.
          # This ensures the startup is reasonable fast (polling every 2s). 1s delay is used since the startup is not often ready instantly.
          startupProbe:
            enabled: true
            failureThreshold: 600 # 10 minutes
          # Resources for the sidecar.
          resources:
            requests:
              cpu: 100m
              memory: 128Mi
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/values.yaml

          #
          # If the probe is disabled, it is recommended to have delay=1s,period=2s,failureThreshold=30.
          # This ensures the startup is reasonable fast (polling every 2s). 1s delay is used since the startup is not often ready instantly.
          startupProbe:
            enabled: true
            failureThreshold: 600 # 10 minutes
    
          # Resources for the sidecar.
          resources:
            requests:
              cpu: 100m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. pkg/controller/tainteviction/taint_eviction_test.go

    			expectedDeleteTimes: durationSlice{
    				{[]string{"pod1"}, 0},
    				{[]string{"pod2"}, time.Second},
    			},
    		},
    		{
    			description: "Evict all pods not matching all taints instantly",
    			pods: []corev1.Pod{
    				*testutil.NewPod("pod1", "node1"),
    				*addToleration(testutil.NewPod("pod2", "node1"), 1, 1),
    				*addToleration(testutil.NewPod("pod3", "node1"), 1, -1),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  9. src/runtime/traceruntime.go

    // written as happening atomically.
    type traceLocker struct {
    	mp  *m
    	gen uintptr
    }
    
    // debugTraceReentrancy checks if the trace is reentrant.
    //
    // This is optional because throwing in a function makes it instantly
    // not inlineable, and we want traceAcquire to be inlineable for
    // low overhead when the trace is disabled.
    const debugTraceReentrancy = false
    
    // traceAcquire prepares this M for writing one or more trace events.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/provision_test.go

    					reactor.AddVolume(volume)
    				}
    			}),
    		},
    	}
    
    	runMultisyncTests(t, ctx, tests, storageClasses, storageClasses[0].Name)
    }
    
    // When provisioning is disabled, provisioning a claim should instantly return nil
    func TestDisablingDynamicProvisioner(t *testing.T) {
    	_, ctx := ktesting.NewTestContext(t)
    	ctrl, err := newTestController(ctx, nil, nil, false)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 35.3K bytes
    - Viewed (0)
Back to top