Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 558 for Positive (0.19 sec)

  1. platforms/core-configuration/model-core/build.gradle.kts

    errorprone {
        disabledChecks.addAll(
            "UnusedVariable", // This cannot really be turned off, because of the false positive in errorprone (https://github.com/google/error-prone/issues/4409)
        )
    }
    
    dependencies {
        api(projects.stdlibJavaExtensions)
        api(projects.serialization)
        api(project(":core-api"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleSourcesSerializer.java

                }
            });
            encoder.writeSmallInt(0); // end of sources
        }
    
        private int assertValidId(int codecId) {
            assert codecId >= 0 : "Module source must have a strictly positive source id";
            return codecId;
        }
    
        @Override
        public ModuleSources read(Decoder decoder) throws IOException {
            MutableModuleSources sources = new MutableModuleSources();
            int codecId;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. src/math/sincos.go

    	)
    	// special cases
    	switch {
    	case x == 0:
    		return x, 1 // return ±0.0, 1.0
    	case IsNaN(x) || IsInf(x, 0):
    		return NaN(), NaN()
    	}
    
    	// make argument positive
    	sinSign, cosSign := false, false
    	if x < 0 {
    		x = -x
    		sinSign = true
    	}
    
    	var j uint64
    	var y, z float64
    	if x >= reduceThreshold {
    		j, z = trigReduce(x)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  4. pkg/kubelet/apis/config/validation/validation_test.go

    	}, {
    		name: "containerLogMonitorInterval must be a positive time duration",
    		configure: func(conf *kubeletconfig.KubeletConfiguration) *kubeletconfig.KubeletConfiguration {
    			conf.ContainerLogMonitorInterval = metav1.Duration{Duration: -1 * time.Second}
    			return conf
    		},
    		errMsg: "invalid configuration: containerLogMonitorInterval must be a positive time duration greater than or equal to 3s",
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/TimeoutStep.java

                Duration timeout = timeoutProperty.get();
                if (timeout.isNegative()) {
                    throw new InvalidUserDataException("Timeout of " + work.getDisplayName() + " must be positive, but was " + timeout.toString().substring(2));
                }
                return executeWithTimeout(work, context, timeout);
            } else {
                return executeWithoutTimeout(work, context);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. src/runtime/runtime_mmap_test.go

    // license that can be found in the LICENSE file.
    
    //go:build unix
    
    package runtime_test
    
    import (
    	"runtime"
    	"testing"
    	"unsafe"
    )
    
    // Test that the error value returned by mmap is positive, as that is
    // what the code in mem_bsd.go, mem_darwin.go, and mem_linux.go expects.
    // See the uses of ENOMEM in sysMap in those files.
    func TestMmapErrorSign(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  7. tests/integration/telemetry/api/accesslogs_test.go

    				Method:  "GET",
    				Headers: headers.New().WithHost(fmt.Sprintf("%s.com", GetTarget().ServiceName())).Build(),
    			}
    		} else {
    			http = echo.HTTP{
    				Path: "/" + testID,
    			}
    		}
    		// For positive test, we use the same ID and repeatedly send requests and check the count
    		// Retry a bit to get the logs. There is some delay before they are output(MeshConfig will not take effect immediately),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. src/math/atanh.go

    // software is freely granted, provided that this notice
    // is preserved.
    // ====================================================
    //
    //
    // __ieee754_atanh(x)
    // Method :
    //	1. Reduce x to positive by atanh(-x) = -atanh(x)
    //	2. For x>=0.5
    //	            1              2x                          x
    //	atanh(x) = --- * log(1 + -------) = 0.5 * log1p(2 * --------)
    //	            2             1 - x                      1 - x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2K bytes
    - Viewed (0)
  9. internal/bucket/lifecycle/delmarker-expiration.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package lifecycle
    
    import (
    	"encoding/xml"
    	"time"
    )
    
    var errInvalidDaysDelMarkerExpiration = Errorf("Days must be a positive integer with DelMarkerExpiration")
    
    // DelMarkerExpiration used to xml encode/decode ILM action by the same name
    type DelMarkerExpiration struct {
    	XMLName xml.Name `xml:"DelMarkerExpiration"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 01:11:10 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/CollectPreconditions.java

        }
        return value;
      }
    
      static void checkPositive(int value, String name) {
        if (value <= 0) {
          throw new IllegalArgumentException(name + " must be positive but was: " + value);
        }
      }
    
      /**
       * Precondition tester for {@code Iterator.remove()} that throws an exception with a consistent
       * error message.
       */
      static void checkRemove(boolean canRemove) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 30 10:33:07 UTC 2021
    - 2.1K bytes
    - Viewed (0)
Back to top