Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,306 for RUNTIME (0.32 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    	return s.client.RequestProgress(s.watchContext(ctx))
    }
    
    type objState struct {
    	obj   runtime.Object
    	meta  *storage.ResponseMeta
    	rev   int64
    	data  []byte
    	stale bool
    }
    
    // New returns an etcd3 implementation of storage.Interface.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  2. cmd/admin-server-info.go

    			TotalAlloc: memstats.TotalAlloc,
    			Mallocs:    memstats.Mallocs,
    			Frees:      memstats.Frees,
    			HeapAlloc:  memstats.HeapAlloc,
    		},
    		GoMaxProcs:     runtime.GOMAXPROCS(0),
    		NumCPU:         runtime.NumCPU(),
    		RuntimeVersion: runtime.Version(),
    		GCStats: &madmin.GCStats{
    			LastGC:     gcStats.LastGC,
    			NumGC:      gcStats.NumGC,
    			PauseTotal: gcStats.PauseTotal,
    			Pause:      gcStats.Pause,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. cmd/server-rlimit.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"runtime"
    	"runtime/debug"
    
    	"github.com/dustin/go-humanize"
    	"github.com/minio/madmin-go/v3/kernel"
    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/pkg/v3/sys"
    )
    
    func oldLinux() bool {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/cfg/cfg.go

    		//
    		// We know ctxt.GOOS/GOARCH == runtime.GOOS/GOARCH;
    		// no matter how that happened, go/build.Default will make the
    		// same decision (either the environment variables are set explicitly
    		// to match the runtime constants, or else they are unset, in which
    		// case go/build falls back to the runtime constants), so
    		// go/build.Default.GOOS/GOARCH == runtime.GOOS/GOARCH.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  5. src/os/executable_procfs.go

    //go:build linux || netbsd
    
    package os
    
    import (
    	"errors"
    	"internal/stringslite"
    	"runtime"
    )
    
    func executable() (string, error) {
    	var procfn string
    	switch runtime.GOOS {
    	default:
    		return "", errors.New("Executable not implemented for " + runtime.GOOS)
    	case "linux", "android":
    		procfn = "/proc/self/exe"
    	case "netbsd":
    		procfn = "/proc/curproc/exe"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:26:04 UTC 2024
    - 715 bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    			switch ldr.SymName(s) {
    			case "runtime.text", "runtime.bss", "runtime.data", "runtime.types", "runtime.rodata",
    				"runtime.noptrdata", "runtime.noptrbss":
    				head = s
    				continue
    			case "runtime.etext", "runtime.ebss", "runtime.edata", "runtime.etypes", "runtime.erodata",
    				"runtime.enoptrdata", "runtime.enoptrbss":
    				tail = s
    				continue
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ToBeFixedForIsolatedProjectsExtension.groovy

    package org.gradle.integtests.fixtures
    
    import org.gradle.integtests.fixtures.executer.GradleContextualExecuter
    import org.spockframework.runtime.extension.IAnnotationDrivenExtension
    import org.spockframework.runtime.model.FeatureInfo
    import org.spockframework.runtime.model.SpecElementInfo
    import org.spockframework.runtime.model.SpecInfo
    
    class ToBeFixedForIsolatedProjectsExtension implements IAnnotationDrivenExtension<ToBeFixedForIsolatedProjects> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 14:00:51 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/schema/schema.fbs

      STABLEHLO_BROADCAST_IN_DIM = 170, // WARNING: No runtime support
      STABLEHLO_CONVOLUTION = 171, // WARNING: No runtime support
      STABLEHLO_SLICE = 172, // WARNING: No runtime support
      STABLEHLO_CUSTOM_CALL = 173, // WARNING: No runtime support
      STABLEHLO_REDUCE = 174, // WARNING: No runtime support
      STABLEHLO_ABS = 175, // WARNING: No runtime support
      STABLEHLO_AND = 176, // WARNING: No runtime support
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/nettest/nettest.go

    		}
    		return net.ListenPacket(network, path)
    	}
    	return nil, fmt.Errorf("%s is not supported on %s/%s", network, runtime.GOOS, runtime.GOARCH)
    }
    
    // LocalPath returns a local path that can be used for Unix-domain
    // protocol testing.
    func LocalPath() (string, error) {
    	dir := ""
    	if runtime.GOOS == "darwin" {
    		dir = "/tmp"
    	}
    	f, err := os.CreateTemp(dir, "go-nettest")
    	if err != nil {
    		return "", err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/watch/watch.go

    	return f.result
    }
    
    // Add sends an add event.
    func (f *FakeWatcher) Add(obj runtime.Object) {
    	f.result <- Event{Added, obj}
    }
    
    // Modify sends a modify event.
    func (f *FakeWatcher) Modify(obj runtime.Object) {
    	f.result <- Event{Modified, obj}
    }
    
    // Delete sends a delete event.
    func (f *FakeWatcher) Delete(lastValue runtime.Object) {
    	f.result <- Event{Deleted, lastValue}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:06:22 UTC 2024
    - 8.1K bytes
    - Viewed (1)
Back to top