Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 71 for Summarize (0.19 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. pkg/kubelet/cm/cpumanager/cpu_assignment.go

    // contrast to the takeByTopologyNUMAPacked algorithm, which attempts to 'pack'
    // CPUs onto NUMA nodes and fill them up before moving on to the next one.
    //
    // At a high-level this algorithm can be summarized as:
    //
    // For each NUMA single node:
    //   - If all requested CPUs can be allocated from this NUMA node;
    //     --> Do the allocation by running takeByTopologyNUMAPacked() over the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 23:56:21 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. CHANGELOG/CHANGELOG-1.3.md

    * Support struct,array,slice types when sorting kubectl output ([#25022](https://github.com/kubernetes/kubernetes/pull/25022), [@zhouhaibing089](https://github.com/zhouhaibing089))
    * federated api servers: Adding a discovery summarizer server ([#20358](https://github.com/kubernetes/kubernetes/pull/20358), [@nikhiljindal](https://github.com/nikhiljindal))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    ----
    
    You can find all the possible archive task properties in the API documentation for link:{groovyDslPath}/org.gradle.api.tasks.bundling.AbstractArchiveTask.html[AbstractArchiveTask].
    Still, we have also summarized the main ones here:
    
    `archiveFileName` — `Property<String>`, default: `__archiveBaseName__-__archiveAppendix__-__archiveVersion__-__archiveClassifier__.__archiveExtension__`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  9. 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)
  10. CHANGELOG/CHANGELOG-1.4.md

    * Make discovery summarizer call servers in parallel ([#26705](https://github.com/kubernetes/kubernetes/pull/26705), [@nebril](https://github.com/nebril))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
Back to top