Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 8,903 for usedBy (0.26 sec)

  1. cmd/kube-controller-manager/app/options/csrsigningcontroller.go

    	fs.StringVar(&o.ClusterSigningKeyFile, "cluster-signing-key-file", o.ClusterSigningKeyFile, "Filename containing a PEM-encoded RSA or ECDSA private key used to sign cluster-scoped certificates.  If specified, no more specific --cluster-signing-* flag may be specified.")...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 03 06:47:49 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/remotecommand/constants.go

    	// The SPDY subprotocol "channel.k8s.io" is used for remote command
    	// attachment/execution. This represents the initial unversioned subprotocol,
    	// which has the known bugs https://issues.k8s.io/13394 and
    	// https://issues.k8s.io/13395.
    	StreamProtocolV1Name = "channel.k8s.io"
    
    	// The SPDY subprotocol "v2.channel.k8s.io" is used for remote command
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 18:37:18 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/IvyArtifactRepository.java

     * <p>
     * When used to resolve metadata and artifact files, all available patterns will be searched.
     * <p>
     * When used to upload metadata and artifact files, only a single, primary pattern will be used:
     * <ol>
     * <li>If a URL is specified via {@link #setUrl(Object)} then that URL will be used for upload, combined with the applied {@link #layout(String)}.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 02 20:32:11 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/internal/telemetry/types.go

    	Week     string  // first day this report covers (YYYY-MM-DD)
    	LastWeek string  // Week field from latest previous report uploaded
    	X        float64 // A random probability used to determine which counters are uploaded
    	Programs []*ProgramReport
    	Config   string // version of UploadConfig used
    }
    
    type ProgramReport struct {
    	Program   string
    	Version   string
    	GoVersion string
    	GOOS      string
    	GOARCH    string
    	Counters  map[string]int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:10:54 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. pkg/test/framework/resource/resource.go

    package resource
    
    import "fmt"
    
    // Resource of a resource.
    type Resource interface {
    	// ID used for debugging the resource instance.
    	ID() ID
    }
    
    // ID for the resource instance. This is allocated by the framework and passed here.
    type ID interface {
    	fmt.Stringer
    }
    
    var _ ID = FakeID("")
    
    // FakeID used for testing.
    type FakeID string
    
    func (id FakeID) String() string {
    	return string(id)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 30 01:00:01 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  6. releasenotes/notes/48818.yaml

    # kind describes the type of change that this represents.
    # Valid Values are:
    # - bug-fix -- Used to specify that this change represents a bug fix.
    # - security-fix -- Used to specify that this change represents a vulnerability fix.
    # - feature -- Used to specify a new feature that has been added.
    # - test -- Used to describe additional testing added. This file is optional for
    #   tests, but included for completeness.
    kind: feature
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ModuleDependency.java

         * selecting the matching configuration. If {@code null}, a default configuration should be used.
         */
        @Nullable
        String getTargetConfiguration();
    
        /**
         * Sets the requested target configuration of this dependency. This is the name of the configuration in the target module that should be used when
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 16:14:52 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenArtifact.java

     */
    public interface MavenArtifact extends PublicationArtifact {
        /**
         * The extension used to publish the artifact file, never <code>null</code>.
         * For an artifact without an extension, this value will be an empty String.
         */
        String getExtension();
    
        /**
         * Sets the extension used to publish the artifact file.
         * @param extension The extension.
         */
        void setExtension(String extension);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. releasenotes/notes/43892.yaml

    # kind describes the type of change that this represents.
    # Valid Values are:
    # - bug-fix -- Used to specify that this change represents a bug fix.
    # - security-fix -- Used to specify that this change represents a vulnerability fix.
    # - feature -- Used to specify a new feature that has been added.
    # - test -- Used to describe additional testing added. This file is optional for
    #   tests, but included for completeness.
    kind: bug-fix
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 10:52:46 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/apis/resourcequota/register.go

    */
    
    package resourcequota
    
    import (
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    )
    
    var (
    	// SchemeBuilder is a pointer used to call AddToScheme
    	SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes)
    	// AddToScheme is used to register the types to API encoding/decoding machinery
    	AddToScheme = SchemeBuilder.AddToScheme
    )
    
    // LegacyGroupName is the group name use in this package
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 04 12:53:52 UTC 2020
    - 1.7K bytes
    - Viewed (0)
Back to top