Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 101 for problem (0.19 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

        public ProjectInternal bindAllModelRules() {
            try {
                getModelRegistry().bindAllReferences();
            } catch (Exception e) {
                throw new ProjectConfigurationException(String.format("A problem occurred configuring %s.", getDisplayName()), e);
            }
            return this;
        }
    
        @Override
        public TaskContainerInternal getTasks() {
            return taskContainer;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    |`org.gradle.unsafe.configuration-cache`
    |`org.gradle.configuration-cache`
    
    |`org.gradle.unsafe.configuration-cache-problems`
    |`org.gradle.configuration-cache.problems`*
    
    |`org.gradle.unsafe.configuration-cache.max-problems`
    |`org.gradle.configuration-cache.max-problems`
    |===
    
    Note that the original `org.gradle.unsafe.configuration-cache...` properties continue to be honored in this release,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                    }
                } catch (Exception ex) {
                    if (ex instanceof SAXException) {
                        throw (SAXException) ex;
                    }
                    SAXException sax = new SAXException("Problem occurred while parsing ivy file: "
                            + ex.getMessage(), ex);
                    sax.initCause(ex);
                    throw sax;
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

          apply {
            this.eventListenerFactory = eventListenerFactory
          }
    
        /**
         * Configure this client to retry or not when a connectivity problem is encountered. By default,
         * this client silently recovers from the following problems:
         *
         * * **Unreachable IP addresses.** If the URL's host has multiple IP addresses,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            """
            enableStableConfigurationCache()
    
            when:
            fails 'missingRequiredService'
    
            then:
            failureDescriptionContains("A problem was found with the configuration of task ':missingRequiredService' (type 'Consumer').")
            failureDescriptionContains("- Type 'Consumer' property 'counter' doesn't have a configured value.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Multimaps.java

       * iterators that don't support remove, passing one to the FilteredEntryMultimap constructor would
       * lead to a multimap whose removal operations would fail. This method combines the predicates to
       * avoid that problem.
       */
      private static <K extends @Nullable Object, V extends @Nullable Object>
          Multimap<K, V> filterFiltered(
              FilteredMultimap<K, V> multimap, Predicate<? super Entry<K, V>> entryPredicate) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Multimaps.java

       * iterators that don't support remove, passing one to the FilteredEntryMultimap constructor would
       * lead to a multimap whose removal operations would fail. This method combines the predicates to
       * avoid that problem.
       */
      private static <K extends @Nullable Object, V extends @Nullable Object>
          Multimap<K, V> filterFiltered(
              FilteredMultimap<K, V> multimap, Predicate<? super Entry<K, V>> entryPredicate) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/init.go

    					// Switching to a newer toolchain won't help - the go.work has the wrong version.
    					// Report this more specific error, unless we are a command like 'go work use'
    					// or 'go work sync', which will fix the problem after the caller sees the TooNewError
    					// and switches to a newer toolchain.
    					err = errWorkTooOld(gomod, workFile, tooNew.GoVersion)
    				} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbTransportImpl.java

                    || this.sbuf[ 7 ] != (byte) 'B' ) {
                throw new IOException("Houston we have a synchronization problem");
            }
    
            int nextCommand = Encdec.dec_uint32le(this.sbuf, 4 + 20);
            int maximumBufferSize = getContext().getConfig().getMaximumBufferSize();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	// but it becomes "unserved" because another names update leads to a conflict
    	// and EstablishingController wasn't fast enough to put the CRD into the Established condition.
    	// We accept this as the problem is small and self-healing.
    	if !apiextensionshelpers.IsCRDConditionTrue(crd, apiextensionsv1.NamesAccepted) &&
    		!apiextensionshelpers.IsCRDConditionTrue(crd, apiextensionsv1.Established) {
    		r.delegate.ServeHTTP(w, req)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top