Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 61 for crack (0.06 sec)

  1. cmd/erasure-object.go

    					// and proceed forward, instead of throwing errors.
    					err = nil
    				}
    			}
    			if err != nil {
    				return toObjectErr(err, bucket, object)
    			}
    		}
    		// Track total bytes read from disk and written to the client.
    		totalBytesRead += partLength
    		// partOffset will be valid only for the first part, hence reset it to 0 for
    		// the remaining parts.
    		partOffset = 0
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // of the loop body func.
      // Find the FuncOp for the surrounding while loop body.
      auto loop_body_func =
          (*forward_pass_ops.begin())->getParentOfType<func::FuncOp>();
    
      // merged_set will keep track of which ops are to be avoided when gather ops
      // for inclusion into the four extracted functions.
      llvm::SetVector<Operation*> merged_set;
    
      // Find the TPUReplicationMetadata and TPUCompilationResult ops and delete
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite.go

    func clobberIfDead(v *Value) bool {
    	if v.Uses == 1 {
    		v.reset(OpInvalid)
    	}
    	// Note: leave v.Block intact.  The Block field is used after clobberIfDead.
    	return true
    }
    
    // noteRule is an easy way to track if a rule is matched when writing
    // new ones.  Make the rule of interest also conditional on
    //
    //	noteRule("note to self: rule of interest matched")
    //
    // and that message will print when the rule matches.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller.go

    		if pod.Status.Phase == v1.PodSucceeded && !jobCtx.uncounted.failed.Has(string(pod.UID)) {
    			if isIndexed {
    				// The completion index is enough to avoid recounting succeeded pods.
    				// No need to track UIDs.
    				ix := getCompletionIndex(pod.Annotations)
    				if ix != unknownCompletionIndex && ix < int(*jobCtx.job.Spec.Completions) && !jobCtx.prevSucceededIndexes.has(ix) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Doing so makes such variable or property a build configuration input, so changing the value invalidates the configuration cache.
    The configuration cache report includes a list of these build configuration inputs to help track them.
    
    In general, you should avoid reading the value of system properties and environment variables at configuration time, to avoid cache misses when value changes.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// the plugin itself successfully does an Update.
    	//
    	// Empty if the Pod has no claims.
    	claims []*resourcev1alpha2.ResourceClaim
    
    	// podSchedulingState keeps track of the PodSchedulingContext
    	// (if one exists) and the changes made to it.
    	podSchedulingState podSchedulingState
    
    	// resourceModel contains the information about available and allocated resources when using
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  7. src/testing/testing.go

    		format += "%s"
    		args = append(args[:len(args):len(args)], c.output)
    		c.output = c.output[:0]
    	}
    
    	if c.chatty != nil && (p.w == c.chatty.w || c.chatty.json) {
    		// We're flushing to the actual output, so track that this output is
    		// associated with a specific test (and, specifically, that the next output
    		// is *not* associated with that test).
    		//
    		// Moreover, if c.output is non-empty it is important that this write be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// APIVersion defines the version of this resource that this field set
    	// applies to. The format is "group/version" just like the top-level
    	// APIVersion field. It is necessary to track the version of a field
    	// set because it cannot be automatically converted.
    	APIVersion string `json:"apiVersion,omitempty" protobuf:"bytes,3,opt,name=apiVersion"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  9. go.sum

    github.com/cosnicolaou/pbzip2 v1.0.3/go.mod h1:uCNfm0iE2wIKGRlLyq31M4toziFprNhEnvueGmh5u3M=
    github.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwcJI5acqYI6dE=
    github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
    github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 85.8K bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/pv_controller.go

    // CSINameTranslator can get the CSI Driver name based on the in-tree plugin name
    type CSINameTranslator interface {
    	GetCSINameFromInTreeName(pluginName string) (string, error)
    }
    
    // CSIMigratedPluginManager keeps track of CSI migration status of a plugin
    type CSIMigratedPluginManager interface {
    	IsMigrationEnabledForPlugin(pluginName string) bool
    }
    
    // PersistentVolumeController is a controller that synchronizes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
Back to top