Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 207 for setperf (1 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/tasks/IgnoreEmptyDirectories.java

     * and directories that contain only empty directories will have no effect on the
     * resulting snapshot.
     *
     * <p>This annotation should be attached to the getter method in Java or the property in Groovy.
     * Annotations on setters or just the field in Java are ignored.</p>
     *
     * This annotation can be applied to the following input property types:
     *
     * <ul><li>{@link org.gradle.api.tasks.InputFiles}</li>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 19 12:43:32 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/tasks/Classpath.java

    import java.lang.annotation.Target;
    
    /**
     * <p>Marks a property as specifying a JVM classpath for a task.</p>
     *
     * <p>This annotation should be attached to the getter method in Java or the property in Groovy.
     * Annotations on setters or just the field in Java are ignored.</p>
     *
     * <p>
     *     For jar files, the normalized path is empty.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 28 21:23:55 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  3. internal/config/dns/etcd_dns.go

    }
    
    // NewCoreDNS - initialize a new coreDNS set/unset values.
    func NewCoreDNS(cfg clientv3.Config, setters ...EtcdOption) (Store, error) {
    	etcdClient, err := clientv3.New(cfg)
    	if err != nil {
    		return nil, err
    	}
    
    	args := &CoreDNS{
    		etcdClient: etcdClient,
    	}
    
    	for _, setter := range setters {
    		setter(args)
    	}
    
    	if len(args.domainNames) == 0 || args.domainIPs.IsEmpty() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  4. internal/config/dns/operator_dns.go

    // NewOperatorDNS - initialize a new K8S Operator DNS set/unset values.
    func NewOperatorDNS(endpoint string, setters ...OperatorOption) (Store, error) {
    	if endpoint == "" {
    		return nil, errors.New("invalid argument")
    	}
    
    	args := &OperatorDNS{
    		Endpoint: endpoint,
    	}
    	for _, setter := range setters {
    		setter(args)
    	}
    	args.httpClient = &http.Client{
    		Transport: &http.Transport{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 06 16:56:10 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/exentity/DataConfig.java

                        smbAuth.setServer(hostname);
                        if (StringUtil.isNotBlank(port)) {
                            try {
                                smbAuth.setPort(Integer.parseInt(port));
                            } catch (final NumberFormatException e) {
                                logger.warn("Failed to parse {}", port, e);
                            }
                        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 09:48:04 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. src/math/big/decimal_test.go

    			var d decimal
    			d.init(natOne, shift)
    			sink = d.String()
    		}
    	}
    }
    
    func BenchmarkFloatString(b *testing.B) {
    	x := new(Float)
    	for _, prec := range []uint{1e2, 1e3, 1e4, 1e5} {
    		x.SetPrec(prec).SetRat(NewRat(1, 3))
    		b.Run(fmt.Sprintf("%v", prec), func(b *testing.B) {
    			b.ReportAllocs()
    			for i := 0; i < b.N; i++ {
    				sink = x.String()
    			}
    		})
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 05:54:35 UTC 2016
    - 3.3K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/tasks/Nested.java

    /**
     * <p>Marks a property as specifying a nested bean, whose properties should be checked for annotations.</p>
     *
     * <p>This annotation should be attached to the getter method in Java or the property in Groovy.
     * Annotations on setters or just the field in Java are ignored.</p>
     *
     * <p>Gradle will attempt to instantiate a nested bean on abstract getter methods annotated with this annotation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 27 22:03:08 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_node_status.go

    	var nodeAddressesFunc func() ([]v1.NodeAddress, error)
    	if kl.cloud != nil {
    		nodeAddressesFunc = kl.cloudResourceSyncManager.NodeAddresses
    	}
    	var setters []func(ctx context.Context, n *v1.Node) error
    	setters = append(setters,
    		nodestatus.NodeAddress(kl.nodeIPs, kl.nodeIPValidator, kl.hostname, kl.hostnameOverridden, kl.externalCloudProvider, kl.cloud, nodeAddressesFunc),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/converter/BuildLayoutConverter.java

            @Override
            @SuppressWarnings("deprecation") // StartParameter.setSettingsFile()
            public void applyTo(StartParameterInternal startParameter) {
                // Note that order is important here, as the setters have some side effects
                if (buildLayout.getProjectDir() != null) {
                    startParameter.setProjectDir(buildLayout.getProjectDir());
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/bsentity/BsKeyMatch.java

            this.query = value;
        }
    
        public String getTerm() {
            checkSpecifiedProperty("term");
            return convertEmptyToNull(term);
        }
    
        public void setTerm(String value) {
            registerModifiedProperty("term");
            this.term = value;
        }
    
        public String getUpdatedBy() {
            checkSpecifiedProperty("updatedBy");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top