Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for Configurable (0.29 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/properties_providers.adoc

    [cols="1,1"]
    |===
    |Property Type |Note
    
    |`Property<T>`
    |Where `T` is typically `Double`, `Integer`, `Long`, `String`, or `Bool`
    
    |`RegularFileProperty`
    |Configurable regular file location, whose value is mutable
    
    |`DirectoryProperty`
    |Configurable directory location, whose value is mutable
    
    |`ListProperty<T>`
    |List of elements of type `T`
    
    |`SetProperty<T>`
    |Set of elements of type `T`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    The following demonstrates a task with a configurable `greeting` property and a read-only `message` property:
    
    ====
    include::sample[dir="snippets/providers/propertyAndProvider/kotlin",files="build.gradle.kts[]"]
    include::sample[dir="snippets/providers/propertyAndProvider/groovy",files="build.gradle[]"]
    ====
    <1> A task that displays a greeting
    <2> A configurable greeting
    <3> Read-only property calculated from the greeting
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/config.go

    		if len(js) == 0 {
    			continue
    		}
    		// Get the configuration name for this field.
    		name := js[0]
    		if name == "-" {
    			name = notSaved[field.Name]
    			if name == "" {
    				// Not a configurable field.
    				continue
    			}
    		}
    		f := configField{
    			name:     name,
    			urlparam: urlparam[name],
    			saved:    (name == js[0]),
    			field:    field,
    			choices:  choices[name],
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/config.go

    // TODO putting this here for now to deal with circular imports, needs to be moved
    type Cluster interface {
    	cluster.Cluster
    
    	CanDeploy(Config) (Config, bool)
    }
    
    // Configurable is and object that has Config.
    type Configurable interface {
    	Config() Config
    
    	// ServiceName is the name of this service within the namespace.
    	ServiceName() string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/types.go

    	// By default this list is empty.
    	UnmountFlags []string
    
    	// Timeouts holds various timeouts that apply to kubeadm commands.
    	Timeouts *Timeouts
    }
    
    // UpgradeApplyConfiguration contains a list of configurable options which are specific to the "kubeadm upgrade apply" command.
    type UpgradeApplyConfiguration struct {
    	// KubernetesVersion is the target version of the control plane.
    	KubernetesVersion string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/jvm/internal/DefaultJvmFeature.java

        // Dependency configurations
        private final Configuration implementation;
        private final Configuration runtimeOnly;
        private final Configuration compileOnly;
    
        // Configurable dependency configurations
        private Configuration compileOnlyApi;
        private Configuration api;
    
        // Resolvable configurations
        private final Configuration runtimeClasspath;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 21K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// UpgradeManifests is the timeout for upgradring static Pod manifests
    	// Default: 5m
    	UpgradeManifests *metav1.Duration `json:"upgradeManifests,omitempty"`
    }
    
    // UpgradeApplyConfiguration contains a list of configurable options which are specific to the  "kubeadm upgrade apply" command.
    type UpgradeApplyConfiguration struct {
    	// KubernetesVersion is the target version of the control plane.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/dra/manager.go

    	if err != nil {
    		return nil, fmt.Errorf("failed to create claimInfo cache: %+v", err)
    	}
    
    	// TODO: for now the reconcile period is not configurable.
    	// We should consider making it configurable in the future.
    	reconcilePeriod := defaultReconcilePeriod
    
    	manager := &ManagerImpl{
    		cache:           claimInfoCache,
    		kubeClient:      kubeClient,
    		reconcilePeriod: reconcilePeriod,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. pilot/pkg/model/extensions.go

    		Specifier: &core.AsyncDataSource_Remote{
    			Remote: &core.RemoteDataSource{
    				HttpUri: &core.HttpUri{
    					Uri:     u.String(),
    					Timeout: durationpb.New(30 * time.Second), // TODO: make this configurable?
    					HttpUpstreamType: &core.HttpUri_Cluster{
    						// the agent will fetch this anyway, so no need for a cluster
    						Cluster: "_",
    					},
    				},
    				Sha256: wasmPlugin.Sha256,
    			},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    The best way to understand how to use the API is to go through the process of converting an existing custom task to use the Worker API:
    
    1. You'll start by creating a custom task class that generates MD5 hashes for a configurable set of files.
    2. Then, you'll convert this custom task to use the Worker API.
    3. Then, we'll explore running the task with different levels of isolation.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
Back to top