Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for Performing (0.29 sec)

  1. src/runtime/mgc.go

    	}
    	return true
    }
    
    // gcStart starts the GC. It transitions from _GCoff to _GCmark (if
    // debug.gcstoptheworld == 0) or performs all of GC (if
    // debug.gcstoptheworld != 0).
    //
    // This may return without performing this transition in some cases,
    // such as when called on a system stack or with locks held.
    func gcStart(trigger gcTrigger) {
    	// Since this is called from malloc and malloc is called in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  2. pkg/kubelet/pod_workers.go

    type OnCompleteFunc func(err error)
    
    // PodStatusFunc is a function that is invoked to override the pod status when a pod is killed.
    type PodStatusFunc func(podStatus *v1.PodStatus)
    
    // KillPodOptions are options when performing a pod update whose update type is kill.
    type KillPodOptions struct {
    	// CompletedCh is closed when the kill request completes (syncTerminatingPod has completed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbSessionImpl.java

                    else if ( getContext().getConfig().isForceExtendedSecurity() ) {
                        throw new SmbException("Server does not supported extended security");
                    }
    
                    log.debug("Performing legacy session setup");
                    if ( ! ( this.credentials instanceof NtlmPasswordAuthenticator ) ) {
                        throw new SmbAuthException("Incompatible credentials");
                    }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    These implicit arguments have been removed and are no longer added by default.
    If your code or any of your dependencies are performing deep reflection into JDK internals during test execution, you may see the following behavior changes:
    
    Before Java 16, new build warnings are shown.
    These new warnings are printed to stderr and will not fail the build:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    			ctx := &ratchetingTestContext{
    				T:                   t,
    				DynamicClient:       dynamicClient,
    				APIExtensionsClient: apiExtensionClient,
    			}
    
    			for i, op := range c.Operations {
    				t.Logf("Performing Operation: %v", op.Description())
    				if err := op.Do(ctx); err != nil {
    					t.Fatalf("failed %T operation %v: %v\n%v", op, i, err, op)
    				}
    			}
    
    			// Reset resources
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    			// state is produced for test.existingPods (without test.addedPod).
    			ipa, cycleState, state, snapshot := getState(test.existingPods)
    			// clone the state so that we can compare it later when performing Remove.
    			originalState := state.Clone()
    
    			// Add test.addedPod to state1 and verify it is equal to allPodsState.
    			nodeInfo := mustGetNodeInfo(t, snapshot, test.addedPod.Spec.NodeName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/Preconditions.java

        if (!expression) {
          throw new IllegalStateException(lenientFormat(errorMessageTemplate, p1, p2, p3, p4));
        }
      }
    
      /*
       * Preconditions.checkNotNull is *intended* for performing eager null checks on parameters that a
       * nullness checker can already "prove" are non-null. That means that the first parameter to
       * checkNotNull *should* be annotated to require it to be non-null.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/binder_test.go

    //     syncVolume/syncClaim on all volumes/claims (simulating "periodic sync").
    //  4. If some changes were done by step 3., go to 2. (simulation of
    //     "volume/claim updated" events, eventually performing step 3. again)
    //  5. When 3. does not do any changes, finish the tests and compare final set
    //     of volumes/claims with expected claims/volumes and report differences.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 65.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    ### `-tf-device-constant-sinking`
    
    _Sinks constants implicitly captured in a tf_device.cluster region._
    
    This pass sinks implicitly captured constants (`tf.Const` ops) used by and into
    a `tf_device.cluster` region. Performing this prior to outlining will reduce the
    number of arguments of the outlined function.
    
    For example, the following:
    
    ```mlir
    func @cluster() -> tensor<i32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/Preconditions.java

        if (!expression) {
          throw new IllegalStateException(lenientFormat(errorMessageTemplate, p1, p2, p3, p4));
        }
      }
    
      /*
       * Preconditions.checkNotNull is *intended* for performing eager null checks on parameters that a
       * nullness checker can already "prove" are non-null. That means that the first parameter to
       * checkNotNull *should* be annotated to require it to be non-null.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top