Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,900 for holds (0.66 sec)

  1. staging/src/k8s.io/api/authorization/v1/generated.proto

      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // Spec holds information about the request being evaluated.  spec.namespace must be equal to the namespace
      // you made the request against.  If empty, it is defaulted.
      optional SubjectAccessReviewSpec spec = 2;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/dependents/DependentBinariesResolutionResult.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.platform.base.internal.dependents;
    
    /**
     * Holds the result of a dependent binaries resolution.
     */
    public interface DependentBinariesResolutionResult {
    
        DependentBinariesResolvedResult getRoot();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 840 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/routes/doc.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package routes holds a collection of optional genericapiserver http handlers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 03 20:43:13 UTC 2019
    - 714 bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/authentication/v1/generated.proto

      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // Spec holds information about the request being evaluated
      optional TokenRequestSpec spec = 2;
    
      // Status is filled in by the server and indicates whether the token can be authenticated.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectCollectionExtensions.kt

        ExistingDomainObjectDelegateProviderWithTypeAndAction.of(this, type, action)
    
    
    /**
     * Holds the delegate provider for the `existing` property delegate with
     * the purpose of providing specialized implementations for the `provideDelegate` operator
     * based on the static type of the provider.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/flowcontrol/v1beta1/doc.go

    */
    
    // +k8s:deepcopy-gen=package
    // +k8s:protobuf-gen=package
    // +k8s:openapi-gen=true
    // +k8s:prerelease-lifecycle-gen=true
    
    // +groupName=flowcontrol.apiserver.k8s.io
    
    // Package v1beta1 holds api types of version v1alpha1 for group "flowcontrol.apiserver.k8s.io".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 13 23:20:39 UTC 2020
    - 893 bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/flowcontrol/v1beta3/doc.go

    */
    
    // +k8s:deepcopy-gen=package
    // +k8s:protobuf-gen=package
    // +k8s:openapi-gen=true
    // +k8s:prerelease-lifecycle-gen=true
    
    // +groupName=flowcontrol.apiserver.k8s.io
    
    // Package v1beta3 holds api types of version v1beta3 for group "flowcontrol.apiserver.k8s.io".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 21 22:54:19 UTC 2022
    - 892 bytes
    - Viewed (0)
  8. src/internal/profilerecord/profilerecord.go

    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package profilerecord holds internal types used to represent profiling
    // records with deep stack traces.
    //
    // TODO: Consider moving this to internal/runtime, see golang.org/issue/65355.
    package profilerecord
    
    type StackRecord struct {
    	Stack []uintptr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:45 UTC 2024
    - 815 bytes
    - Viewed (0)
  9. src/runtime/sigqueue_note.go

    // license that can be found in the LICENSE file.
    
    // The current implementation of notes on Darwin is not async-signal-safe,
    // so on Darwin the sigqueue code uses different functions to wake up the
    // signal_recv thread. This file holds the non-Darwin implementations of
    // those functions. These functions will never be called.
    
    //go:build !darwin && !plan9
    
    package runtime
    
    func sigNoteSetup(*note) {
    	throw("sigNoteSetup")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 648 bytes
    - Viewed (0)
  10. src/encoding/json/tables.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package json
    
    import "unicode/utf8"
    
    // safeSet holds the value true if the ASCII character with the given array
    // position can be represented inside a JSON string without any further
    // escaping.
    //
    // All values are true except for the ASCII control characters (0-31), the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 08 18:02:34 UTC 2016
    - 4.2K bytes
    - Viewed (0)
Back to top