Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 164 for INTERNAL (0.2 sec)

  1. src/runtime/malloc.go

    // attempts to keep arenas contiguous so that large spans (and hence
    // large objects) can cross arenas.
    
    package runtime
    
    import (
    	"internal/goarch"
    	"internal/goos"
    	"internal/runtime/atomic"
    	"runtime/internal/math"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    const (
    	maxTinySize   = _TinySize
    	tinySizeClass = _TinySizeClass
    	maxSmallSize  = _MaxSmallSize
    
    	pageShift = _PageShift
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue.go

    		}
    		logger.V(5).Info("Pod moved to an internal scheduling queue", "pod", klog.KObj(pod), "event", ScheduleAttemptFailure, "queue", backoffQ)
    		metrics.SchedulerQueueIncomingPods.WithLabelValues("backoff", ScheduleAttemptFailure).Inc()
    	} else {
    		p.unschedulablePods.addOrUpdate(pInfo)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  3. cmd/erasure-object.go

    	"github.com/minio/minio/internal/bucket/lifecycle"
    	"github.com/minio/minio/internal/bucket/object/lock"
    	"github.com/minio/minio/internal/bucket/replication"
    	"github.com/minio/minio/internal/config/storageclass"
    	"github.com/minio/minio/internal/crypto"
    	"github.com/minio/minio/internal/event"
    	"github.com/minio/minio/internal/grid"
    	"github.com/minio/minio/internal/hash"
    	xhttp "github.com/minio/minio/internal/http"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

    import org.apache.maven.artifact.repository.ArtifactRepository;
    import org.apache.maven.bridge.MavenRepositorySystem;
    import org.apache.maven.internal.impl.InternalSession;
    import org.apache.maven.internal.impl.resolver.DefaultModelCache;
    import org.apache.maven.internal.impl.resolver.DefaultModelRepositoryHolder;
    import org.apache.maven.model.building.ArtifactModelSource;
    import org.apache.maven.model.building.DefaultModelProblem;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  5. src/runtime/mprof.go

    // license that can be found in the LICENSE file.
    
    // Malloc profiling.
    // Patterned after tcmalloc's algorithms; shorter code.
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/profilerecord"
    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    // NOTE(rsc): Everything here could use cas if contention became an issue.
    var (
    	// profInsertLock protects changes to the start of all *bucket linked lists
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. src/runtime/traceback.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/bytealg"
    	"internal/goarch"
    	"internal/stringslite"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    // The code in this file implements stack trace walking for all architectures.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. okhttp/api/okhttp.api

    	public static final field TLS_RSA_WITH_SEED_CBC_SHA Lokhttp3/CipherSuite;
    	public final fun -deprecated_javaName ()Ljava/lang/String;
    	public synthetic fun <init> (Ljava/lang/String;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
    	public static final fun forJavaName (Ljava/lang/String;)Lokhttp3/CipherSuite;
    	public final fun javaName ()Ljava/lang/String;
    	public fun toString ()Ljava/lang/String;
    }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  8. cmd/peer-rest-server.go

    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/minio/internal/bucket/bandwidth"
    	b "github.com/minio/minio/internal/bucket/bandwidth"
    	"github.com/minio/minio/internal/event"
    	"github.com/minio/minio/internal/grid"
    	xioutil "github.com/minio/minio/internal/ioutil"
    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/minio/internal/pubsub"
    	"github.com/minio/mux"
    	"github.com/minio/pkg/v3/logger/message/log"
    )
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/conversion.go

    		},
    	}
    
    	if gatewayErr != nil {
    		gatewayConditions[string(k8s.GatewayConditionAccepted)].error = gatewayErr
    	}
    
    	if len(internal) > 0 {
    		msg := fmt.Sprintf("Resource programmed, assigned to service(s) %s", humanReadableJoin(internal))
    		gatewayConditions[string(k8s.GatewayReasonProgrammed)].message = msg
    	}
    
    	if len(gatewayServices) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/buildlist.go

    import (
    	"context"
    	"errors"
    	"fmt"
    	"maps"
    	"os"
    	"runtime"
    	"runtime/debug"
    	"slices"
    	"strings"
    	"sync"
    	"sync/atomic"
    
    	"cmd/go/internal/base"
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/gover"
    	"cmd/go/internal/mvs"
    	"cmd/go/internal/par"
    
    	"golang.org/x/mod/module"
    )
    
    // A Requirements represents a logically-immutable set of root module requirements.
    type Requirements struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top