Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 804 for mean_t (0.17 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/AbstractProjectBasedReportTask.java

                );
            }
            return new ProjectBasedReportModel<>(map);
        }
    
        protected abstract T calculateReportModelFor(Project project);
    
        /**
         * Provides a means of printing a customizable header section above the per-project details body
         * of the report.
         * <p>
         * By default, there is no header information printed.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_interval.go

    	// considered. The value is the index in the actual source
    	// of events. If the source of the events is the watchCache,
    	// then this should be used modulo capacity.
    	endIndex int
    
    	// indexer is meant to inject behaviour for how an event must
    	// be retrieved from the underlying source given an index.
    	indexer indexerFunc
    
    	// indexValidator is used to check if a given index is still
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/diagnostic.go

    	Pos     token.Pos
    	End     token.Pos // optional
    	Message string
    }
    
    // A SuggestedFix is a code change associated with a Diagnostic that a
    // user can choose to apply to their code. Usually the SuggestedFix is
    // meant to fix the issue flagged by the diagnostic.
    //
    // The TextEdits must not overlap, nor contain edits for other packages.
    type SuggestedFix struct {
    	// A description for this suggested fix to be shown to a user deciding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.h

    struct TensorOrResourceShape {
      TensorShape shape;
      bool is_resource = false;
    };
    
    // Refine MLIR types based on new shape information.
    ABSL_DEPRECATED("Not meant to be used directly and should be a util.")
    Status RefineShapes(llvm::ArrayRef<TensorOrResourceShape> arg_shapes,
                        mlir::ModuleOp module);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/structural.go

    	// but switches back to normal pruning behaviour if nested
    	// properties or additionalProperties are specified in the schema.
    	// False means that the pruning behaviour is inherited from the parent.
    	// False does not mean to activate pruning.
    	XPreserveUnknownFields bool
    
    	// x-kubernetes-embedded-resource defines that the value is an
    	// embedded Kubernetes runtime.Object, with TypeMeta and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/policy/v1/types.go

    	//
    	// IfHealthyBudget policy means that running pods (status.phase="Running"),
    	// but not yet healthy can be evicted only if the guarded application is not
    	// disrupted (status.currentHealthy is at least equal to status.desiredHealthy).
    	// Healthy pods will be subject to the PDB for eviction.
    	//
    	// AlwaysAllow policy means that all running pods (status.phase="Running"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. pkg/scheduler/metrics/metrics.go

    		&metrics.GaugeOpts{
    			Subsystem:      SchedulerSubsystem,
    			Name:           "pending_pods",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 08:22:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. src/os/file_unix.go

    type newFileKind int
    
    const (
    	// kindNewFile means that the descriptor was passed to us via NewFile.
    	kindNewFile newFileKind = iota
    	// kindOpenFile means that the descriptor was opened using
    	// Open, Create, or OpenFile.
    	kindOpenFile
    	// kindPipe means that the descriptor was opened using Pipe.
    	kindPipe
    	// kindSock means that the descriptor is a network file descriptor
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/intstr/intstr.go

    func ValueOrDefault(intOrPercent *IntOrString, defaultValue IntOrString) *IntOrString {
    	if intOrPercent == nil {
    		return &defaultValue
    	}
    	return intOrPercent
    }
    
    // GetScaledValueFromIntOrPercent is meant to replace GetValueFromIntOrPercent.
    // This method returns a scaled value from an IntOrString type. If the IntOrString
    // is a percentage string value it's treated as a percentage and scaled appropriately
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. src/math/big/floatmarsh.go

    		//   (in practice, this should never happen since rounding
    		//   takes care of it, but be safe and do it always)
    		if len(x.mant) < n {
    			n = len(x.mant)
    		}
    		// len(x.mant) >= n
    		sz += 4 + n*_S // exp + mant
    	}
    	buf := make([]byte, sz)
    
    	buf[0] = floatGobVersion
    	b := byte(x.mode&7)<<5 | byte((x.acc+1)&3)<<3 | byte(x.form&3)<<1
    	if x.neg {
    		b |= 1
    	}
    	buf[1] = b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top