Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 443 for someInt (0.26 sec)

  1. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/util/internal/WrapperDistributionUrlConverter.java

        public static URI convertDistributionUrl(String distributionUrl, File fileRoot) throws URISyntaxException {
            URI source = new URI(distributionUrl);
            if (source.getScheme() == null) {
                //  No scheme means someone passed a relative url.
                //  In our context only file relative urls make sense.
                return new File(fileRoot, source.getSchemeSpecificPart()).toURI();
            } else {
                return source;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:12:34 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/UncheckedExecutionException.java

       *
       * @deprecated Prefer {@linkplain UncheckedExecutionException(Throwable)} a constructor that
       *     accepts a cause: Users of this class typically expect for instances to have a non-null
       *     cause. At the moment, you can <i>usually</i> still preserve behavior by passing an explicit
       *     {@code null} cause. Note, however, that passing an explicit {@code null} cause prevents
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 17:52:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. build/release-in-a-container.sh

      echo
      echo "'make release-in-a-container' requires a container with" \
           "docker installed."
      echo
      exit 1
    fi
    
    
    # First run make cross-in-a-container
    make cross-in-a-container
    
    # at the moment only make test is supported.
    if [[ $KUBE_RELEASE_RUN_TESTS =~ ^[yY]$ ]]; then
      make test
    fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 16 08:31:15 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/plugins/PotentialPlugin.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.plugins;
    
    /**
     * A plugin that could be applied.
     *
     * This may represent an invalid plugin.
     *
     * At the moment it does not encompass plugins that aren't implemented as classes, but it is likely to in the future.
     */
    public interface PotentialPlugin<T> {
    
        enum Type {
            UNKNOWN,
            IMPERATIVE_CLASS,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 09 13:25:53 UTC 2017
    - 1.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/InstrumentedMetaClass.java

     */
    public interface InstrumentedMetaClass {
        /**
         * Checks if accessing a property by the specified name would be intercepted by the instrumentation at this
         * specific moment. The implementation may return different values at different times.
         */
        boolean interceptsPropertyAccess(String propertyName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 10:01:06 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableFilePermissions.java

         * <p>
         * Note that the provided configuration action only applies incremental modifications on top of whatever permission
         * the user has at the moment and that the default values permissions start out are different for files and directories
         * (see {@link UserClassFilePermissions}).
         */
        void user(Action<? super ConfigurableUserClassFilePermissions> configureAction);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/string_util.h

    std::string AttrAsString(mlir::Attribute& attr);
    
    // b/281863212 enable automatic without Op/AttrAsString.
    // We add logging via a wrapper struct in order to respect ODS and avoid
    // multiple symbol definitions if MLIR or someone else decides to add ostream
    // definitions for the MLIR symbols.
    struct LoggableOperation {
      mlir::Operation& v;
      // NOLINTNEXTLINE(google-explicit-constructor)
      LoggableOperation(mlir::Operation& v) : v(v) {}
    };
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 15 19:47:52 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/internal-instrumentation-api/src/main/java/org/gradle/internal/instrumentation/api/annotations/ParameterKind.java

        }
    
        @Retention(RetentionPolicy.CLASS)
        @Target(ElementType.PARAMETER)
        public @interface VarargParameter {
        }
    
        /**
         * Injects some context from visitor. Not supported for Groovy at the moment.
         *
         * Currently, it's only supported to inject {@link BytecodeInterceptorFilter}.
         */
        @Retention(RetentionPolicy.CLASS)
        @Target(ElementType.PARAMETER)
        public @interface InjectVisitorContext {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 24 13:33:59 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. src/go/types/token_test.go

    // license that can be found in the LICENSE file.
    
    // This file checks invariants of token.Token ordering that we rely on
    // since package go/token doesn't provide any guarantees at the moment.
    
    package types
    
    import (
    	"go/token"
    	"testing"
    )
    
    var assignOps = map[token.Token]token.Token{
    	token.ADD_ASSIGN:     token.ADD,
    	token.SUB_ASSIGN:     token.SUB,
    	token.MUL_ASSIGN:     token.MUL,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 08 03:40:04 UTC 2015
    - 1.2K bytes
    - Viewed (0)
  10. docs/fr/docs/history-design-future.md

    J'ai évité la création d'un nouveau framework pendant plusieurs années. J'ai d'abord essayé de résoudre toutes les fonctionnalités couvertes par **FastAPI** en utilisant de nombreux frameworks, plug-ins et outils différents.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top