Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for Summarize (1.26 sec)

  1. pkg/scheduler/framework/types.go

    		names.Insert(pod.Namespace)
    	} else {
    		names.Insert(podAffinityTerm.Namespaces...)
    	}
    	return names
    }
    
    // ImageStateSummary provides summarized information about the state of an image.
    type ImageStateSummary struct {
    	// Size of the image
    	Size int64
    	// Used to track how many nodes have this image, it is computed from the Nodes field below
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/buildid.go

    //
    // The build ID serves two primary purposes.
    //
    // 1. The action ID half allows installed packages and binaries to serve as
    // one-element cache entries. If we intend to build math.a with a given
    // set of inputs summarized in the action ID, and the installed math.a already
    // has that action ID, we can reuse the installed math.a instead of rebuilding it.
    //
    // 2. The content ID half allows the easy preparation of action IDs for steps
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            "Gradle.useLogger(DependencyResolutionListener)"   | "gradle.useLogger(new DependencyResolutionAdapter())"
        }
    
        def "summarizes unsupported properties"() {
            given:
            buildFile << """
                class SomeBean {
                    Gradle gradle
                    def nested = new NestedBean()
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // Package report summarizes a performance profile into a
    // human-readable report.
    package report
    
    import (
    	"fmt"
    	"io"
    	"path/filepath"
    	"regexp"
    	"sort"
    	"strconv"
    	"strings"
    	"text/tabwriter"
    	"time"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  5. src/math/big/float.go

    	}
    	if x.prec == 0 {
    		return "zero precision finite number"
    	}
    	return ""
    }
    
    // round rounds z according to z.mode to z.prec bits and sets z.acc accordingly.
    // sbit must be 0 or 1 and summarizes any "sticky bit" information one might
    // have before calling round. z's mantissa must be normalized (with the msb set)
    // or empty.
    //
    // CAUTION: The rounding modes ToNegativeInf, ToPositiveInf are affected by the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  6. src/database/sql/sql.go

    // If this error is not nil, this error will also be returned from [Row.Scan].
    func (r *Row) Err() error {
    	return r.err
    }
    
    // A Result summarizes an executed SQL command.
    type Result interface {
    	// LastInsertId returns the integer generated by the database
    	// in response to a command. Typically this will be from an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  7. src/cmd/go/alldocs.go

    // variable; otherwise it is public.
    //
    // If no rules in the GOVCS variable match a particular module or import path,
    // the 'go get' command applies its default rule, which can now be summarized
    // in GOVCS notation as 'public:git|hg,private:all'.
    //
    // To allow unfettered use of any version control system for any package, use:
    //
    //	GOVCS=*:all
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top