Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 55 for dialing (0.29 sec)

  1. android/pom.xml

                       https://github.com/google/guava/commit/e06a8cec65815599e510d7f9c1ea9d2a8eaa438a,
                       builds with JDK8 began failing animal-sniffer with the error:
    
                       Failed to check signatures: Bad class file .../CollectionFuture$ListFuture.class
    
                       One way of dealing with that would be to disable
                       animal-sniffer. And that would be fine for our -jre builds:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. pom.xml

                       https://github.com/google/guava/commit/e06a8cec65815599e510d7f9c1ea9d2a8eaa438a,
                       builds with JDK8 began failing animal-sniffer with the error:
    
                       Failed to check signatures: Bad class file .../CollectionFuture$ListFuture.class
    
                       One way of dealing with that would be to disable
                       animal-sniffer. And that would be fine for our -jre builds:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. cluster/gce/gci/configure.sh

    function install-containerd-ubuntu {
      # bailout if we are not on ubuntu
      if [[ -z "$(command -v lsb_release)" || $(lsb_release -si) != "Ubuntu" ]]; then
        echo "Unable to automatically install containerd in non-ubuntu image. Bailing out..."
        exit 2
      fi
    
      # Install dependencies, some of these are already installed in the image but
      # that's fine since they won't re-install and we can reuse the code below
      # for another image someday.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/MoreExecutors.java

          }
        };
      }
    
      /**
       * Shuts down the given executor service gradually, first disabling new submissions and later, if
       * necessary, cancelling remaining tasks.
       *
       * <p>The method takes the following steps:
       *
       * <ol>
       *   <li>calls {@link ExecutorService#shutdown()}, disabling acceptance of new submitted tasks.
       *   <li>awaits executor service termination for half of the specified timeout.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ClassLoaderUtils.java

        public static void disableUrlConnectionCaching() {
            // fix problems in updating jar files by disabling default caching of URL connections.
            // URLConnection default caching should be disabled since it causes jar file locking issues and JVM crashes in updating jar files.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    			}
    		}
    	}
    	return errs
    }
    
    func ValidateSubTypes(e reflect.Value, failOnMissingValidation bool, values *valuesv1alpha1.Values, iopls *v1alpha1.IstioOperatorSpec) util.Errors {
    	// Dealing with receiver pointer and receiver value
    	ptr := e
    	k := e.Kind()
    	if k == reflect.Ptr || k == reflect.Interface {
    		e = e.Elem()
    	}
    	if !e.IsValid() {
    		return nil
    	}
    	// check for method on value
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/child/SystemApplicationClassLoaderWorker.java

                    CompositeStoppable.stoppable(connection, basicWorkerServices).stop();
                    loggingManager.stop();
                } catch (Throwable t) {
                    // We're failing while shutting down, so log whatever might have happened.
                    unrecoverableErrorHandler.execute(t);
                }
            }
    
            return null;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/DistributionIntegrationSpec.groovy

            //then there is something to be fixed. If you intentionally added new jars to the distribution and this is now failing please
            //accept my sincere apologies that you have to manually bump the numbers here.
            jarLibEntries.size() == libJarsCount
        }
    
        protected List<? extends ZipEntry> getLibZipEntries() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. src/runtime/mbarrier.go

    // stack.
    //
    // For a detailed description of this barrier and proof of
    // correctness, see https://github.com/golang/proposal/blob/master/design/17503-eliminate-rescan.md
    //
    //
    //
    // Dealing with memory ordering:
    //
    // Both the Yuasa and Dijkstra barriers can be made conditional on the
    // color of the object containing the slot. We chose not to make these
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/features/kube_features.go

    	//
    	// An API server that is fronted by an L7 load balancer that is set up
    	// to mitigate http2 attacks may opt to disable this protection to prevent
    	// unauthenticated clients from disabling connection reuse between the load
    	// balancer and the API server (many incoming connections could share the
    	// same backend connection).
    	//
    	// An API server that is on a private network may opt to disable this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:36:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top