Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 137 for Positive (0.17 sec)

  1. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/LineInFileLocation.java

         */
        int getLine();
    
        /**
         * The starting column on the selected line.
         * <p>
         * The column is <b>one-indexed</b>, i.e. the first column in the file is line number 1.
         * A non-positive value indicates that the column information is not available.
         *
         * @return the column
         */
        int getColumn();
    
        /**
         * The length of the selected content starting from specified column.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/LineInFileLocation.java

         */
        int getLine();
    
        /**
         * The starting column on the selected line.
         * <p>
         * The column is <b>one-indexed</b>, i.e. the first column in the file is column number 1.
         * A non-positive value indicates that the column information is not available.
         *
         * @return the column
         * @since 8.6
         */
        int getColumn();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:33:01 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/options/validatingadmissionpolicycontroller.go

    	if o == nil {
    		return nil
    	}
    	var errs []error
    	if o.ConcurrentPolicySyncs <= 0 {
    		// omits controller or flag names because the CLI already includes these in the message.
    		errs = append(errs, fmt.Errorf("must be positive, got %d", o.ConcurrentPolicySyncs))
    	}
    	return errs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 20:41:50 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.css

      font-size: 12pt;
    }
    /* Background of a single flame-graph frame */
    .boxbg {
      border-width: 0px;
      position: absolute;
      overflow: hidden;
      box-sizing: border-box;
      background: #d8d8d8;
    }
    .positive { position: absolute; background: #caa; }
    .negative { position: absolute; background: #aca; }
    /* Not-inlined frames are visually separated from their caller. */
    .not-inlined {
      border-top: 1px solid black;
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. src/math/const.go

    	Log10E = 1 / Ln10
    )
    
    // Floating-point limit values.
    // Max is the largest finite value representable by the type.
    // SmallestNonzero is the smallest positive, non-zero value representable by the type.
    const (
    	MaxFloat32             = 0x1p127 * (1 + (1 - 0x1p-23)) // 3.40282346638528859811704183484516925440e+38
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 21 14:07:39 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top