Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,543 for constructs (0.23 sec)

  1. guava/src/com/google/common/base/FinalizableWeakReference.java

     * @since 2.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public abstract class FinalizableWeakReference<T> extends WeakReference<T>
        implements FinalizableReference {
      /**
       * Constructs a new finalizable weak reference.
       *
       * @param referent to weakly reference
       * @param queue that should finalize the referent
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 15:09:35 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildInitComments.java

    @NonNullApi
    public enum BuildInitComments {
        /**
         * Comments are included for generated source files and build files.
         * <p>
         * Comments include explanations of various build script constructs,
         * helpful links and disclaimers about files being generated by an 'init' task.
         */
        ON,
    
        /**
         * Comments are not included for the source files and build files.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 27 12:41:40 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/core/v1/clientipconfig.go

    // with apply.
    type ClientIPConfigApplyConfiguration struct {
    	TimeoutSeconds *int32 `json:"timeoutSeconds,omitempty"`
    }
    
    // ClientIPConfigApplyConfiguration constructs an declarative configuration of the ClientIPConfig type for use with
    // apply.
    func ClientIPConfig() *ClientIPConfigApplyConfiguration {
    	return &ClientIPConfigApplyConfiguration{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/core/v1/podschedulinggate.go

    // with apply.
    type PodSchedulingGateApplyConfiguration struct {
    	Name *string `json:"name,omitempty"`
    }
    
    // PodSchedulingGateApplyConfiguration constructs an declarative configuration of the PodSchedulingGate type for use with
    // apply.
    func PodSchedulingGate() *PodSchedulingGateApplyConfiguration {
    	return &PodSchedulingGateApplyConfiguration{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 21:32:35 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/client-go/applyconfigurations/core/v1/nodeconfigsource.go

    // with apply.
    type NodeConfigSourceApplyConfiguration struct {
    	ConfigMap *ConfigMapNodeConfigSourceApplyConfiguration `json:"configMap,omitempty"`
    }
    
    // NodeConfigSourceApplyConfiguration constructs an declarative configuration of the NodeConfigSource type for use with
    // apply.
    func NodeConfigSource() *NodeConfigSourceApplyConfiguration {
    	return &NodeConfigSourceApplyConfiguration{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/core/v1/noderuntimehandlerfeatures.go

    // with apply.
    type NodeRuntimeHandlerFeaturesApplyConfiguration struct {
    	RecursiveReadOnlyMounts *bool `json:"recursiveReadOnlyMounts,omitempty"`
    }
    
    // NodeRuntimeHandlerFeaturesApplyConfiguration constructs an declarative configuration of the NodeRuntimeHandlerFeatures type for use with
    // apply.
    func NodeRuntimeHandlerFeatures() *NodeRuntimeHandlerFeaturesApplyConfiguration {
    	return &NodeRuntimeHandlerFeaturesApplyConfiguration{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:06:39 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. maven-plugin-api/src/main/java/org/apache/maven/plugin/MojoExecutionException.java

            super(message, cause);
        }
    
        /**
         * Construct a new <code>MojoExecutionException</code> exception providing a <code>message</code>.
         *
         * @param message
         */
        public MojoExecutionException(String message) {
            super(message);
        }
    
        /**
         * Constructs a new {@code MojoExecutionException} exception wrapping an underlying {@code Throwable}.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/graph/StandardMutableGraph.java

     */
    @ElementTypesAreNonnullByDefault
    final class StandardMutableGraph<N> extends ForwardingGraph<N> implements MutableGraph<N> {
      private final MutableValueGraph<N, Presence> backingValueGraph;
    
      /** Constructs a {@link MutableGraph} with the properties specified in {@code builder}. */
      StandardMutableGraph(AbstractGraphBuilder<? super N> builder) {
        this.backingValueGraph = new StandardMutableValueGraph<>(builder);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/applyconfigurations/batch/v1/successpolicy.go

    // with apply.
    type SuccessPolicyApplyConfiguration struct {
    	Rules []SuccessPolicyRuleApplyConfiguration `json:"rules,omitempty"`
    }
    
    // SuccessPolicyApplyConfiguration constructs an declarative configuration of the SuccessPolicy type for use with
    // apply.
    func SuccessPolicy() *SuccessPolicyApplyConfiguration {
    	return &SuccessPolicyApplyConfiguration{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/core/v1/execaction.go

    // with apply.
    type ExecActionApplyConfiguration struct {
    	Command []string `json:"command,omitempty"`
    }
    
    // ExecActionApplyConfiguration constructs an declarative configuration of the ExecAction type for use with
    // apply.
    func ExecAction() *ExecActionApplyConfiguration {
    	return &ExecActionApplyConfiguration{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 1.5K bytes
    - Viewed (0)
Back to top