Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 114 for importing (0.24 sec)

  1. src/runtime/mgcscavenge.go

    // When synchronously scavenging for the memory limit or for debug.FreeOSMemory, these
    // "dense" packing heuristics are ignored (in other words, scavenging is "forced") because
    // in these scenarios returning memory to the OS is more important than keeping CPU
    // overheads low.
    
    package runtime
    
    import (
    	"internal/goos"
    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/parser.go

    	case _Lparen:
    		pos := p.pos()
    		p.next()
    		p.xnest++
    		x := p.expr()
    		p.xnest--
    		p.want(_Rparen)
    
    		// Optimization: Record presence of ()'s only where needed
    		// for error reporting. Don't bother in other cases; it is
    		// just a waste of memory and time.
    		//
    		// Parentheses are not permitted around T in a composite
    		// literal T{}. If the next token is a {, assume x is a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            // here, we need to check that applying the new resolution filter
            // we would actually exclude exactly the same dependencies as in
            // the previous visit. It is important that this is NOT a heuristic
            // (it used to be) because if the filters are _equivalent_, we would
            // revisit all dependencies and possibly change the classpath order!
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  4. cluster/gce/windows/k8s-node-setup.psm1

            -OutFile C:\configure.ps1
        Import-Module -Force C:\k8s-node-setup.psm1  # -Force to override existing
        # Execute functions manually or run configure.ps1.
    #>
    
    # IMPORTANT PLEASE NOTE:
    # Any time the file structure in the `windows` directory changes, `windows/BUILD`
    # and `k8s.io/release/lib/releaselib.sh` must be manually updated with the changes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modget/get.go

    		for _, q := range queries {
    			for _, cs := range q.candidates {
    				sw.Error(cs.err)
    			}
    		}
    		// Only switch if we need a newer toolchain.
    		// Otherwise leave the cs.err for reporting later.
    		if sw.NeedSwitch() {
    			sw.Switch(ctx)
    			// If NeedSwitch is true and Switch returns, Switch has failed to locate a newer toolchain.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  6. pkg/controller/job/job_controller.go

    			needsFlush = true
    
    			// Prepare the final Failed condition to update the job status with after the finalizers are removed.
    			// It is also used in the enactJobFinished function for reporting.
    			jobCtx.finishedCondition = newFailedConditionForFailureTarget(jobCtx.finishedCondition, jm.clock.Now())
    		}
    	}
    	if isSuccessCriteriaMetCondition(jobCtx.finishedCondition) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
    	// singularName is the singular name of the resource.  This allows clients to handle plural and singular opaquely.
    	// The singularName is more correct for reporting status on a single item and both singular and plural are allowed
    	// from the kubectl CLI interface.
    	SingularName string `json:"singularName" protobuf:"bytes,6,opt,name=singularName"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  8. src/cmd/go/internal/modload/init.go

    	ForceUseModules bool
    
    	allowMissingModuleImports bool
    
    	// ExplicitWriteGoMod prevents LoadPackages, ListModules, and other functions
    	// from updating go.mod and go.sum or reporting errors when updates are
    	// needed. A package should set this if it would cause go.mod to be written
    	// multiple times (for example, 'go get' calls LoadPackages multiple times) or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  9. pkg/kubelet/pod_workers.go

    	// TODO: We should probably move this into syncPod and add an execution count
    	// to the syncPod arguments, and this should be recorded on the first sync.
    	// Leaving it here complicates a particularly important loop.
    	metrics.ContainersPerPodCount.Observe(float64(len(update.Options.Pod.Spec.Containers)))
    
    	return ctx, update, true, true, true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    //
    // The Google C++ Testing Framework (Google Test)
    //
    // This header file defines the public API for Google Test.  It should be
    // included by any test program that uses Google Test.
    //
    // IMPORTANT NOTE: Due to limitation of the C++ language, we have to
    // leave some internal implementation details in this header file.
    // They are clearly marked by comments like this:
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
Back to top