Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 3,722 for refined (0.18 sec)

  1. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    [NOTE]
    ====
    Presently, a `Platform` consists of a defined operating system and architecture.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaPluginExtension.java

         *
         * @param value The value for the source compatibility as defined by {@link JavaVersion#toVersion(Object)}
         * @since 7.1
         */
        void setSourceCompatibility(Object value);
    
        /**
         * Sets the target compatibility used for compiling Java sources.
         *
         * @param value The value for the target compatibility as defined by {@link JavaVersion#toVersion(Object)}
         * @since 7.1
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 10.4K bytes
    - Viewed (1)
  3. testing/internal-testing/src/test/groovy/org/gradle/test/fixtures/concurrent/ConcurrentSpecTest.groovy

        }
    
        def "cannot query instant that has not been defined in test thread"() {
            when:
            instant.unknown
    
            then:
            IllegalStateException e = thrown()
            e.message == "Instant 'unknown' has not been defined by any test thread."
        }
    
        def "cannot query operation that has not been defined in test thread"() {
            when:
            operation.unknown
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/RuleInput.java

    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Attached to the getter for a property on a {@link RuleSource} to denote that the property defines an implicit input for all rules defined by the rule source.
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.METHOD)
    @Incubating
    public @interface RuleInput {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/output/v1alpha3/doc.go

    // +k8s:deepcopy-gen=package
    // +k8s:conversion-gen=k8s.io/kubernetes/cmd/kubeadm/app/apis/output
    
    // Package v1alpha3 defines the v1alpha3 version of the kubeadm data structures
    // related to structured output
    // The purpose of the kubeadm structured output is to have a well
    // defined versioned output format that other software that uses
    // kubeadm for cluster deployments can use and rely on.
    //
    // Changes since v1alpha2:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 07:05:29 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. pkg/config/analysis/msg/messages.gen.go

    	// VirtualServiceHostNotFoundInGateway defines a diag.MessageType for message "VirtualServiceHostNotFoundInGateway".
    	// Description: Host defined in VirtualService not found in Gateway.
    	VirtualServiceHostNotFoundInGateway = diag.NewMessageType(diag.Warning, "IST0132", "one or more host %v defined in VirtualService %s not found in Gateway %s.")
    
    	// SchemaWarning defines a diag.MessageType for message "SchemaWarning".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/workflow/runner.go

    )
    
    // phaseSeparator defines the separator to be used when concatenating nested
    // phase names
    const phaseSeparator = "/"
    
    // RunnerOptions defines the options supported during the execution of a
    // kubeadm composable workflows
    type RunnerOptions struct {
    	// FilterPhases defines the list of phases to be executed (if empty, all).
    	FilterPhases []string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 21 05:35:15 UTC 2022
    - 16K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/language/swift/SwiftComponent.java

     */
    public interface SwiftComponent extends ComponentWithBinaries, ComponentWithDependencies, ComponentWithTargetMachines {
        /**
         * Defines the Swift module for this component. The default value is calculated from the project name.
         */
        Property<String> getModule();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. operator/pkg/component/component.go

    	}
    }
    
    // runComponent performs startup tasks for the component defined by the given CommonComponentFields.
    func runComponent(c *CommonComponentFields) error {
    	r := createHelmRenderer(c)
    	if err := r.Run(); err != nil {
    		return err
    	}
    	c.renderer = r
    	c.started = true
    	return nil
    }
    
    // renderManifest renders the manifest for the component defined by c and returns the resulting string.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/networking/v1/generated.proto

      // endPort indicates that the range of ports from port to endPort if set, inclusive,
      // should be allowed by the policy. This field cannot be defined if the port field
      // is not defined or if the port field is defined as a named (string) port.
      // The endPort must be equal or greater than port.
      // +optional
      optional int32 endPort = 3;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
Back to top