Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 75 for vminus1 (0.18 sec)

  1. android/guava/src/com/google/common/primitives/Longs.java

          return (c < 128) ? asciiDigits[c] : -1;
        }
      }
    
      /**
       * Parses the specified string as a signed decimal long value. The ASCII character {@code '-'} (
       * <code>'&#92;u002D'</code>) is recognized as the minus sign.
       *
       * <p>Unlike {@link Long#parseLong(String)}, this method returns {@code null} instead of throwing
       * an exception if parsing fails. Additionally, this method only accepts ASCII digits, and returns
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/primitives/Longs.java

          return (c < 128) ? asciiDigits[c] : -1;
        }
      }
    
      /**
       * Parses the specified string as a signed decimal long value. The ASCII character {@code '-'} (
       * <code>'&#92;u002D'</code>) is recognized as the minus sign.
       *
       * <p>Unlike {@link Long#parseLong(String)}, this method returns {@code null} instead of throwing
       * an exception if parsing fails. Additionally, this method only accepts ASCII digits, and returns
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFile.java

        }
    
    
        /**
         * List the contents of this SMB resource. The list returned will be
         * identical to the list returned by the parameterless <code>list()</code>
         * method minus filenames filtered by the specified filter.
         *
         * @param filter
         *            a filename filter to exclude filenames from the results
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  4. src/html/template/js.go

    		start := n - 1
    		// Count the number of adjacent dashes or pluses.
    		for start > 0 && s[start-1] == c {
    			start--
    		}
    		if (n-start)&1 == 1 {
    			// Reached for trailing minus signs since "---" is the
    			// same as "-- -".
    			return jsCtxRegexp
    		}
    		return jsCtxDivOp
    	case '.':
    		// Handle "42."
    		if n != 1 && '0' <= s[n-2] && s[n-2] <= '9' {
    			return jsCtxDivOp
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. security/pkg/pki/util/keycertbundle_test.go

    	}{
    		{
    			name:         "TTL left should be equal to cert TTL",
    			cert:         rootCertBytes,
    			timeNow:      t0,
    			expectedTime: certTTL,
    		},
    		{
    			name:         "TTL left should be ca cert ttl minus 5 seconds",
    			cert:         rootCertBytes,
    			timeNow:      t0.Add(5 * time.Second),
    			expectedTime: 55 * time.Second,
    		},
    		{
    			name:         "TTL left should be negative because already got expired",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 21 06:07:50 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. src/crypto/rsa/pkcs1v15.go

    	SessionKeyLen int
    }
    
    // EncryptPKCS1v15 encrypts the given message with RSA and the padding
    // scheme from PKCS #1 v1.5.  The message must be no longer than the
    // length of the public modulus minus 11 bytes.
    //
    // The random parameter is used as a source of entropy to ensure that
    // encrypting the same message twice doesn't result in the same
    // ciphertext. Most applications should use [crypto/rand.Reader]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:21 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. pilot/pkg/config/file/store.go

    		pathKeyForMap := fmt.Sprintf("%s.%s", curPath, keyNode.Value)
    
    		switch {
    		case valueNode.Kind == yamlv3.ScalarNode:
    			// Can build map because the value node has no content anymore
    			// minus one because startLineNum starts at line 1, and yamlv3.Node.line also starts at line 1
    			fieldPathMap[fmt.Sprintf("{%s}", pathKeyForMap)] = valueNode.Line + startLineNum - 1
    
    		case valueNode.Kind == yamlv3.MappingNode:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. src/runtime/mstats.go

    	// Idle spans have no objects in them. These spans could be
    	// (and may already have been) returned to the OS, or they can
    	// be reused for heap allocations, or they can be reused as
    	// stack memory.
    	//
    	// HeapIdle minus HeapReleased estimates the amount of memory
    	// that could be returned to the OS, but is being retained by
    	// the runtime so it can grow the heap without requesting more
    	// memory from the OS. If this difference is significantly
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/math/BigIntegerMath.java

          return bigInteger.signum();
        }
    
        @Override
        BigInteger toX(double d, RoundingMode mode) {
          return DoubleMath.roundToBigInteger(d, mode);
        }
    
        @Override
        BigInteger minus(BigInteger a, BigInteger b) {
          return a.subtract(b);
        }
      }
    
      /**
       * Returns the result of dividing {@code p} by {@code q}, rounding using the specified {@code
       * RoundingMode}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/unicode/norm/normalize.go

    	}
    	if p < 0 {
    		return Properties{}, -1
    	}
    	return fd.info(inputBytes(buf), p), p
    }
    
    // decomposeToLastBoundary finds an open segment at the end of the buffer
    // and scans it into rb. Returns the buffer minus the last segment.
    func decomposeToLastBoundary(rb *reorderBuffer) {
    	fd := &rb.f
    	info, i := lastRuneStart(fd, rb.out)
    	if int(info.size) != len(rb.out)-i {
    		// illegal trailing continuation bytes
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top