Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,953 for happen (0.17 sec)

  1. maven-core/src/main/java/org/apache/maven/artifact/handler/manager/DefaultArtifactHandlerManager.java

            // and "build path" is intermediate data that is used to create actual Java classpath/modulepath
            // but to create those, proper filtering should happen via Type properties.
        }
    
        @Override
        public void addHandlers(Map<String, ArtifactHandler> handlers) {
            throw new UnsupportedOperationException("Adding handlers programmatically is not supported anymore");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-linked_ptr.h

    //   will often be more than two or three pointers to a particular object.
    // - References are only tracked as long as linked_ptr<> objects are copied.
    //   If a linked_ptr<> is converted to a raw pointer and back, BAD THINGS
    //   will happen (double deletion).
    //
    // A good use of this class is storing object references in STL containers.
    // You can safely put linked_ptr<> in a vector<>.
    // Other uses may not be as good.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/MinimalIterable.java

     * #iterator()} method after the first, and whose iterator is always unmodifiable.
     *
     * <p>The {@code Iterable} specification does not make it absolutely clear what should happen on a
     * second invocation, so implementors have made various choices, including:
     *
     * <ul>
     *   <li>returning the same iterator again
     *   <li>throwing an exception of some kind
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. pkg/kubelet/util/util_windows.go

    	// last path component is a file, so the operation chain works..
    	podResourcesDir := filepath.Base(filepath.Dir(filepath.Join(path, file)))
    	if podResourcesDir == "" {
    		// should not happen because the user can configure a root directory, and we expected a subdirectory inside
    		// the user supplied root directory named like "pod-resources" or so.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModificationTrackerFactory.kt

         *  - Modification of a package
         *  - Creation of a new declaration
         *  - Moving a declaration to another package
         *
         * Generally, all modifications which happen outside the body of a callable declaration (functions, accessors, or properties) with an
         * explicit type are considered **OOBM**.
         *
         * @see ModificationTracker
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/VersionConflictResolutionDetails.java

            sb.append("between versions ");
            Iterator<? extends ComponentResolutionState> it = candidates.iterator();
            boolean more = false;
            while (it.hasNext()) {
                ComponentResolutionState next = it.next();
                if (more) {
                    if (it.hasNext()) {
                        sb.append(", ");
                    } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-tooling-builders/src/main/kotlin/org/gradle/declarative/dsl/tooling/builders/DeclarativeSchemaModelBuilder.kt

        fun InterpretationSchemaBuildingResult.sequenceOrError() = when (this) {
            is InterpretationSchemaBuildingResult.InterpretationSequenceAvailable -> sequence
            // This is rather an unexpected case, should not happen in normal operation.
            InterpretationSchemaBuildingResult.SchemaNotBuilt -> throw GradleException("schema not available")
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ClassFileExtractionManager.java

        private boolean extractClassFile(final String className) {
            boolean classFileExtracted = false;
    
            final File extractedClassFile = tempFile();
            final String classFileName = new StrBuilder().append(className).append(".class").toString();
            final String classNamePackage = classNamePackage(className);
            final Set<File> packageJarFiles = packageJarFilesMappings.get(classNamePackage);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/http/ExchangeCodec.kt

      @Throws(IOException::class)
      fun trailers(): Headers
    
      /**
       * Cancel this stream. Resources held by this stream will be cleaned up, though not synchronously.
       * That may happen later by the connection pool thread.
       */
      fun cancel()
    
      /**
       * Carries an exchange. This is usually a connection, but it could also be a connect plan for
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-state/src/main/java/org/gradle/internal/buildprocess/execution/BuildSessionLifecycleBuildActionExecutor.java

                    // Note: throw the failure rather than returning a result object containing the failure, as console failure logging based on the _result_ happens down in the root build scope
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top