Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpModelIntegrationTest.groovy

            assert facet.contains('<be>cool</be>')
        }
    
        @Issue("GRADLE-2661")
        @Test
        @ToBeFixedForConfigurationCache
        void "file dependencies respect plus minus configurations"() {
            //when
            runEclipseTask """
    apply plugin: 'java'
    apply plugin: 'war'
    apply plugin: 'eclipse-wtp'
    
    configurations {
      configOne
      configTwo
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  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. 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)
  8. 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)
  9. 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)
  10. 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 (0)
Back to top