Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 227 for INTERNAL (0.13 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	RemainingItemCount *int64 `json:"remainingItemCount,omitempty" protobuf:"bytes,4,opt,name=remainingItemCount"`
    }
    
    // Field path constants that are specific to the internal API
    // representation.
    const (
    	ObjectNameField = "metadata.name"
    )
    
    // These are internal finalizer values for Kubernetes-like APIs, must be qualified name unless defined here
    const (
    	FinalizerOrphanDependents = "orphan"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. cmd/xl-storage-format-v2.go

    	"time"
    
    	"github.com/cespare/xxhash/v2"
    	"github.com/google/uuid"
    	jsoniter "github.com/json-iterator/go"
    	"github.com/minio/minio/internal/bucket/lifecycle"
    	"github.com/minio/minio/internal/bucket/replication"
    	"github.com/minio/minio/internal/config/storageclass"
    	xhttp "github.com/minio/minio/internal/http"
    	"github.com/tinylib/msgp/msgp"
    )
    
    var (
    	// XL header specifies the format
    	xlHeader = [4]byte{'X', 'L', '2', ' '}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ==== Configuration cache implementation packages now under `org.gradle.internal`
    
    References to Gradle types that are not part of the public API should be avoided, as their direct use is unsupported,
    and Gradle internal implementation classes may suffer breaking changes (or be renamed or removed) from one version to another without warning.
    
    It is important for users to distinguish between the API and internal parts of the Gradle codebase.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ppc64/ssa.go

    // license that can be found in the LICENSE file.
    
    package ppc64
    
    import (
    	"cmd/compile/internal/base"
    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/logopt"
    	"cmd/compile/internal/objw"
    	"cmd/compile/internal/ssa"
    	"cmd/compile/internal/ssagen"
    	"cmd/compile/internal/types"
    	"cmd/internal/obj"
    	"cmd/internal/obj/ppc64"
    	"internal/buildcfg"
    	"math"
    	"strings"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

    import org.gradle.api.Task
    import org.gradle.api.file.FileCollection
    import org.gradle.api.internal.TaskInternal
    import org.gradle.api.internal.project.ProjectInternal
    import org.gradle.api.internal.project.taskfactory.TestTaskIdentities
    import org.gradle.api.internal.tasks.NodeExecutionContext
    import org.gradle.api.internal.tasks.TaskStateInternal
    import org.gradle.api.tasks.Destroys
    import org.gradle.api.tasks.InputDirectory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
Back to top