Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 160 for vminus1 (0.19 sec)

  1. 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)
  2. 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)
  3. src/text/template/parse/lex.go

    	var r rune
    	var numSpaces int
    	for {
    		r = l.peek()
    		if !isSpace(r) {
    			break
    		}
    		l.next()
    		numSpaces++
    	}
    	// Be careful about a trim-marked closing delimiter, which has a minus
    	// after a space. We know there is a space, so check for the '-' that might follow.
    	if hasRightTrimMarker(l.input[l.pos-1:]) && strings.HasPrefix(l.input[l.pos-1+trimMarkerLen:], l.rightDelim) {
    		l.backup() // Before the space.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 22:36:12 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  4. 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)
  5. pkg/ctrlz/assets/static/css/fontawesome-all-5.0.6.css

    fa-mercury:before{content:"\f223"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 33.9K bytes
    - Viewed (2)
  6. src/main/java/jcifs/smb/SmbTreeImpl.java

                    /*
                     * When DFS is in action all request paths are
                     * full UNC paths minus the first backslash like
                     * \server\share\path\to\file
                     * as opposed to normally
                     * \path\to\file
                     */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  7. 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)
  8. guava/src/com/google/common/util/concurrent/Striped.java

        }
    
        @Override
        Condition delegate() {
          return delegate;
        }
      }
    
      private abstract static class PowerOfTwoStriped<L> extends Striped<L> {
        /** Capacity (power of two) minus one, for fast mod evaluation */
        final int mask;
    
        PowerOfTwoStriped(int stripes) {
          Preconditions.checkArgument(stripes > 0, "Stripes must be positive");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 10 20:55:18 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/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
     * @throws SmbException
     # @return An array of filenames
     */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.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