Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 207 for setperf (0.18 sec)

  1. maven-compat/src/main/java/org/apache/maven/artifact/manager/DefaultWagonManager.java

                                proxyInfo.setHost(proxy.getHost());
                                proxyInfo.setType(proxy.getProtocol());
                                proxyInfo.setPort(proxy.getPort());
                                proxyInfo.setNonProxyHosts(proxy.getNonProxyHosts());
                                proxyInfo.setUserName(proxy.getUsername());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/PropertyAccessorType.java

    import java.lang.reflect.Type;
    import java.util.Collection;
    
    /**
     * Distinguishes "get" getters, "is" getters and setters from non-property methods.
     *
     * Generally follows the JavaBean conventions, with 2 exceptions: is methods can return `Boolean` (in addition to `boolean`) and setter methods can return non-void values.
     *
     * This is essentially a superset of the conventions supported by Java, Groovy and Kotlin.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsentity/BsFileAuthentication.java

            registerModifiedProperty("password");
            this.password = value;
        }
    
        public Integer getPort() {
            checkSpecifiedProperty("port");
            return port;
        }
    
        public void setPort(Integer value) {
            registerModifiedProperty("port");
            this.port = value;
        }
    
        public String getProtocolScheme() {
            checkSpecifiedProperty("protocolScheme");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. pkg/volume/util/atomic_writer_test.go

    		t.Fatalf("unexpected number of calls to setPerms: %v", setPermsCalled)
    	}
    
    	// Test that errors from setPerms() are propagated.
    	payload2 := map[string]FileProjection{
    		"foo/bar.txt": {Mode: 0644, Data: []byte("foo2")},
    		"bar/zab.txt": {Mode: 0644, Data: []byte("bar2")},
    	}
    
    	err = writer.Write(payload2, func(_ string) error {
    		return fmt.Errorf("error in setPerms")
    	})
    	if err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ir/const.go

    const (
    	// Maximum size in bits for big.Ints before signaling
    	// overflow and also mantissa precision for big.Floats.
    	ConstPrec = 512
    )
    
    func BigFloat(v constant.Value) *big.Float {
    	f := new(big.Float)
    	f.SetPrec(ConstPrec)
    	switch u := constant.Val(v).(type) {
    	case int64:
    		f.SetInt64(u)
    	case *big.Int:
    		f.SetInt(u)
    	case *big.Float:
    		f.Set(u)
    	case *big.Rat:
    		f.SetRat(u)
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 18:53:26 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/custom_aggregator_op.cc

                                        Tensor* histogram_tensor) {
        const auto input_flat = input_tensor.flat<float>();
        auto histogram_flat = histogram_tensor->flat<int64_t>();
        histogram_flat.setZero();
    
        const float bin_width = CalculateBinWidth(min_value, max_value, num_bins);
        const float lower_bound = CalculateLowerBound(min_value, bin_width);
        for (int i = 0; i < input_flat.size(); ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/bsentity/BsWebAuthentication.java

            registerModifiedProperty("password");
            this.password = value;
        }
    
        public Integer getPort() {
            checkSpecifiedProperty("port");
            return port;
        }
    
        public void setPort(Integer value) {
            registerModifiedProperty("port");
            this.port = value;
        }
    
        public String getProtocolScheme() {
            checkSpecifiedProperty("protocolScheme");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java

        //    {
        //        ProxyInfo proxyInfo = new ProxyInfo();
        //        proxyInfo.setHost( host );
        //        proxyInfo.setType( protocol );
        //        proxyInfo.setPort( port );
        //        proxyInfo.setNonProxyHosts( nonProxyHosts );
        //        proxyInfo.setUserName( username );
        //        proxyInfo.setPassword( password );
        //
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 31.6K bytes
    - Viewed (0)
  9. pkg/volume/projected/projected.go

    	writer, err := volumeutil.NewAtomicWriter(dir, writerContext)
    	if err != nil {
    		klog.Errorf("Error creating atomic writer: %v", err)
    		return err
    	}
    
    	setPerms := func(_ string) error {
    		// This may be the first time writing and new files get created outside the timestamp subdirectory:
    		// change the permissions on the whole volume and not only in the timestamp directory.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DefaultTestLauncher.java

            } else {
                existing.addAll(tests);
                tasksAndTests.put(task, existing);
            }
        }
    
        @Override
        public TestLauncher debugTestsOn(int port) {
            this.debugOptions.setPort(port);
            return this;
        }
    
        @Override
        public TestLauncher forTasks(String... tasks) {
            this.isRunDefaultTasks = tasks.length == 0;
            for (String task : tasks) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top