Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 241 for probing (0.14 sec)

  1. src/cmd/go/testdata/script/mod_tidy_compat_implicit.txt

    stderr '\n\nTo upgrade to the versions selected by go 1\.16:\n\tgo mod tidy -go=1\.16 && go mod tidy -go=1\.17\nIf reproducibility with go 1.16 is not needed:\n\tgo mod tidy -compat=1.17\nFor other options, see:\n\thttps://golang\.org/doc/modules/pruning\n'
    
    cmp go.mod go.mod.orig
    
    # Make sure that -diff behaves the same as tidy.
    [exec:patch] cp go.mod.orig go.mod
    [exec:patch] ! exists go.sum
    [exec:patch] ! go mod tidy -diff
    [exec:patch] ! stdout .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/load.go

    // 	- it is imported by another package in "all", or
    // 	- the main module specifies a go version ≤ 1.15, and the package is imported
    // 	  by a *test of* another package in "all".
    //
    // When graph pruning is in effect, we want to spot-check the graph-pruning
    // invariants — which depend on which packages are known to be in "all" — even
    // when we are only loading individual packages, so we set the pkgInAll flag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/defaulting/validation.go

    	"k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel"
    	schemaobjectmeta "k8s.io/apiextensions-apiserver/pkg/apiserver/schema/objectmeta"
    	"k8s.io/apiextensions-apiserver/pkg/apiserver/schema/pruning"
    	apiservervalidation "k8s.io/apiextensions-apiserver/pkg/apiserver/validation"
    	apiextensionsfeatures "k8s.io/apiextensions-apiserver/pkg/features"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 22:34:13 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/volumebinding/volume_binding.go

    		state.allBound = true
    	}
    	return nil
    }
    
    // PreBind will make the API update with the assumed bindings and wait until
    // the PV controller has completely finished the binding operation.
    //
    // If binding errors, times out or gets undone, then an error will be returned to
    // retry scheduling.
    func (pl *VolumeBinding) PreBind(ctx context.Context, cs *framework.CycleState, pod *v1.Pod, nodeName string) *framework.Status {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.28.md

    - Fixed component status calling etcd health endpoint over http which exposed kubernetes to the risk of complete watch starvation and is inconsistent with other etcd probing done by `kube-apiserver`. ([#118460](https://github.com/kubernetes/kubernetes/pull/118460), [@serathius](https://github.com/serathius))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  6. tensorflow/cc/gradients/nn_grad_test.cc

        EXPECT_LT(max_error, 1e-3);
      }
    
      // Sets tensor with random values, ensuring that every pair of elements are at
      // least a reasonable amount apart.
      // This is an issue for max pooling operations, in which perturbations by the
      // numeric gradient computation in the gradient checker can change the max
      // value if a pool has values that are too close together.
      template <typename T>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 22 20:45:22 UTC 2022
    - 15K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/interface.go

    }
    
    // PreBindPlugin is an interface that must be implemented by "PreBind" plugins.
    // These plugins are called before a pod being scheduled.
    type PreBindPlugin interface {
    	Plugin
    	// PreBind is called before binding a pod. All prebind plugins must return
    	// success or the pod will be rejected and won't be sent for binding.
    	PreBind(ctx context.Context, state *CycleState, p *v1.Pod, nodeName string) *Status
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/stablehlo_quantizer_odml_oss.ipynb

          "source": [
            "input_shape = (1, 224, 224, 3)\n",
            "\n",
            "jax_callable = jax2tf.convert(\n",
            "    ResNet50(\n",
            "      input_shape=input_shape[1:],\n",
            "      pooling='avg',\n",
            "  ).call,\n",
            "    with_gradient=False,\n",
            "    native_serialization=True,\n",
            "    native_serialization_platforms=('cpu',))\n",
            "\n",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 12 03:40:43 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/base/base.go

    		calcLive := 100 * goal / (100 + myGogc)
    
    		if 2*calcLive < requestedHeapGoal { // calcLive can exceed requestedHeapGoal!
    			myGogc = 100*requestedHeapGoal/calcLive - 100
    
    			if myGogc > 125 {
    				// Not done growing the heap.
    				oldGogc := debug.SetGCPercent(int(myGogc))
    
    				if logHeapTweaks {
    					// Check that the new goal looks right
    					inUse := sample[ALLOCS].Value.Uint64() - sample[FREES].Value.Uint64()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  10. pkg/scheduler/apis/config/validation/validation.go

    			"preScore":   profile.Plugins.PreScore,
    			"score":      profile.Plugins.Score,
    			"reserve":    profile.Plugins.Reserve,
    			"permit":     profile.Plugins.Permit,
    			"preBind":    profile.Plugins.PreBind,
    			"bind":       profile.Plugins.Bind,
    			"postBind":   profile.Plugins.PostBind,
    		}
    
    		pluginsPath := path.Child("plugins")
    		for s, p := range stagesToPluginSet {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top