Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 219 for NOR (0.02 sec)

  1. android/guava/src/com/google/common/collect/ContiguousSet.java

      /**
       * Returns a {@code ContiguousSet} containing the same values in the given domain {@linkplain
       * Range#contains contained} by the range.
       *
       * @throws IllegalArgumentException if neither range nor the domain has a lower bound, or if
       *     neither has an upper bound
       * @since 13.0
       */
      public static <C extends Comparable> ContiguousSet<C> create(
          Range<C> range, DiscreteDomain<C> domain) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/math/StatsTesting.java

       * passes through both {@code (x1, y1)} and {@code (x1 + xDelta, y1 + yDelta)}. Includes
       * assertions about all the public instance methods of {@link LinearTransformation} (on both
       * {@code transformation} and its inverse). Since the transformation is expected to be diagonal,
       * neither {@code xDelta} nor {@code yDelta} may be zero.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 09 22:49:56 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4.java

                    }
                }
            }
    
            /*
             * MNG-4312: We neither have reserved all of the above magic expressions nor is their set fixed/well-known (it
             * gets occasionally extended by newer Maven versions). This imposes the risk for existing plugins to
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 30 23:39:19 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-application/src/main/java/org/gradle/api/plugins/ApplicationPlugin.java

                            throw new GradleException("The specified installation directory \'"
                                + destinationDir
                                + "\' is neither empty nor does it contain an installation for \'"
                                + applicationName.get()
                                + "\'.\n"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. src/net/http/transfer.go

    	if isRequest {
    		// RFC 7230 neither explicitly permits nor forbids an
    		// entity-body on a GET request so we permit one if
    		// declared, but we default to 0 here (not -1 below)
    		// if there's no mention of a body.
    		// Likewise, all other request methods are assumed to have
    		// no body if neither Transfer-Encoding chunked nor a
    		// Content-Length are set.
    		return 0, nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/mod/module/module.go

    //
    // A valid import path consists of one or more valid path elements
    // separated by slashes (U+002F). (It must not begin with nor end in a slash.)
    //
    // A valid path element is a non-empty string made up of
    // ASCII letters, ASCII digits, and limited ASCII punctuation: - . _ and ~.
    // It must not end with a dot (U+002E), nor contain two dots in a row.
    //
    // The element prefix up to the first dot must not be a reserved file name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  7. pilot/pkg/model/authentication.go

    		}
    	}
    }
    
    // GetNamespaceMutualTLSMode returns the MutualTLSMode as defined by a namespace or mesh level
    // PeerAuthentication. The return value could be `MTLSUnknown` if there is no mesh nor namespace
    // PeerAuthentication policy for the given namespace.
    func (policy *AuthenticationPolicies) GetNamespaceMutualTLSMode(namespace string) MutualTLSMode {
    	if mode, ok := policy.namespaceMutualTLSMode[namespace]; ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStore.java

         * @param ignoredPackagePrefixes Packages to ignore. Types from ignored packages are considered having no type annotations nor any annotated properties.
         * @param ignoredSuperTypes Super-types to ignore. Ignored super-types are considered having no type annotations nor any annotated properties.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    // copyright notice, this list of conditions and the following disclaimer
    // in the documentation and/or other materials provided with the
    // distribution.
    //     * Neither the name of Google Inc. nor the names of its
    // contributors may be used to endorse or promote products derived from
    // this software without specific prior written permission.
    //
    // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. src/database/sql/driver/driver.go

    // the [Conn] from pool.
    type Pinger interface {
    	Ping(ctx context.Context) error
    }
    
    // Execer is an optional interface that may be implemented by a [Conn].
    //
    // If a [Conn] implements neither [ExecerContext] nor [Execer],
    // the [database/sql.DB.Exec] will first prepare a query, execute the statement,
    // and then close the statement.
    //
    // Exec may return [ErrSkip].
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 09:04:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
Back to top