Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 891 for providedBy (0.25 sec)

  1. src/cmd/go/testdata/script/install_modcacherw_issue64282.txt

    # the requested package has been downloaded and checked for toolchain
    # upgrades.
    
    
    ! go install -cake=delicious -modcacherw example.com/printversion@v0.1.0
    stderr '^flag provided but not defined: -cake$'
    	# Because the -modcacherw flag was set, we should be able to modify the contents
    	# of a directory within the module cache.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 17:53:43 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/rules/DefaultRuleActionAdapter.java

        private static final String INVALID_CLOSURE_ERROR = "The closure provided is not valid as a rule for '%s'.";
        private static final String INVALID_ACTION_ERROR = "The action provided is not valid as a rule for '%s'.";
        private static final String INVALID_RULE_SOURCE_ERROR = "The rule source provided does not provide a valid rule for '%s'.";
    
        private final RuleActionValidator ruleActionValidator;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtResolveExtensionInfoProvider.kt

            analysisSession.resolveExtensionInfoProvider.getResolveExtensionScopeWithTopLevelDeclarations()
        }
    
        /**
         * Returns whether this [VirtualFile] was provided by a [KaResolveExtension].
         *
         * @see org.jetbrains.kotlin.analysis.api.resolve.extensions.KaResolveExtension
         * @see org.jetbrains.kotlin.analysis.api.resolve.extensions.KaResolveExtensionProvider
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/config.h

    //   the user explicitly provided representative dataset configs to
    //   `calibration_options`. In that case, the explicit configs take precedence
    //   and the preset's configs are ignored.
    //   - For `QuantizationSpecs`, the expanded `QuantizationSpec`s will be
    //   populated first and user-provided `QuantizationSpec`s, if any, will be
    //   appended. This expresses the fact that user-provided specs take precedence.
    // * Preset unspecified
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. maven-resolver-provider/pom.xml

          <scope>provided</scope>
        </dependency>
        <dependency>
          <groupId>org.eclipse.sisu</groupId>
          <artifactId>org.eclipse.sisu.plexus</artifactId>
          <scope>provided</scope>
        </dependency>
        <dependency>
          <groupId>org.eclipse.sisu</groupId>
          <artifactId>org.eclipse.sisu.inject</artifactId>
          <scope>provided</scope>
        </dependency>
        <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/kotlin/dsl/KotlinDslScriptsModel.java

     * See {@link KotlinDslModelsParameters#PREPARATION_TASK_NAME}
     * <p>
     * The set of scripts can be provided as a Gradle property named <code>org.gradle.kotlin.dsl.provider.scripts</code>,
     * as a list of absolute paths separated by <code>|</code>.
     * If none are provided, then the model is built for all the Kotlin DSL scripts known to belong to this build.
     * See {@link KotlinDslScriptsModel#SCRIPTS_GRADLE_PROPERTY_NAME}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 13:05:09 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. src/os/signal/signal.go

    		}
    	} else {
    		for _, s := range sigs {
    			remove(signum(s))
    		}
    	}
    }
    
    // Ignore causes the provided signals to be ignored. If they are received by
    // the program, nothing will happen. Ignore undoes the effect of any prior
    // calls to [Notify] for the provided signals.
    // If no signals are provided, all incoming signals will be ignored.
    func Ignore(sig ...os.Signal) {
    	cancel(sig, ignoreSignal)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/session/scope/internal/SessionScope.java

            private final Map<Key<?>, CachingProvider<?>> provided = new ConcurrentHashMap<>();
    
            public <T> void seed(Class<T> clazz, Provider<T> value) {
                provided.put(Key.get(clazz), new CachingProvider<>(value));
            }
    
            @SuppressWarnings("unchecked")
            public <T> Provider<T> scope(Key<T> key, Provider<T> unscoped) {
                Provider<?> provider = provided.computeIfAbsent(key, k -> new CachingProvider<>(unscoped));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/PathScope.java

                DependencyScope.COMPILE,
                DependencyScope.PROVIDED);
    
        PathScope MAIN_RUNTIME =
                pathScope("main-runtime", ProjectScope.MAIN, DependencyScope.COMPILE, DependencyScope.RUNTIME);
    
        PathScope TEST_COMPILE = pathScope(
                "test-compile",
                ProjectScope.TEST,
                DependencyScope.COMPILE,
                DependencyScope.PROVIDED,
                DependencyScope.TEST_ONLY,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/descriptor/MavenScope.java

    /**
     * A "scope" taken from a Maven POM. Note that the order of this enum is important for the module metadata cache.
     */
    public enum MavenScope {
        Compile("compile"),
        Runtime("runtime"),
        Provided("provided"),
        Test("test"),
        System("system");
    
        private final String lowerName;
    
        MavenScope(String lowerName) {
            this.lowerName = lowerName;
        }
    
        public String getLowerName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top