Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 179 for Pull (0.04 sec)

  1. src/iter/pull_test.go

    		var stop func()
    		if !goexits(t, func() {
    			next, stop = Pull(goexitSeq())
    			next()
    		}) {
    			t.Fatal("failed to Goexit from next")
    		}
    		if x, ok := next(); x != 0 || ok {
    			t.Fatal("iterator returned valid value after iterator Goexited")
    		}
    		stop()
    	})
    	t.Run("stop", func(t *testing.T) {
    		next, stop := Pull(goexitCleanupSeq())
    		x, ok := next()
    		if !ok || x != 55 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:28 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/SystemPropertiesCompositeBuildFixture.groovy

        static Set<List<BuildWithSystemPropertyDefined>> definitions() {
            // The order needs to be consistent here for the retry plugin to work,
            // see https://github.com/gradle/gradle/pull/25605
            Set<List<BuildWithSystemPropertyDefined>> containsIncludedBuildDefinitions = new LinkedHashSet<>()
    
            Set<List<BuildWithSystemPropertyDefined>> allDefinitions = [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. pkg/kubelet/container/runtime.go

    	return pod.Name + "_" + pod.Namespace
    }
    
    // BuildPodFullName builds the pod full name from pod name and namespace.
    func BuildPodFullName(name, namespace string) string {
    	return name + "_" + namespace
    }
    
    // ParsePodFullName parsed the pod full name.
    func ParsePodFullName(podFullName string) (string, string, error) {
    	parts := strings.Split(podFullName, "_")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/testng/TestNGOptions.java

        private final Cached<String> cachedSuiteXml = Cached.of(new Callable<String>() {
            @Override
            public String call() {
                return suiteXmlWriter != null ? suiteXmlWriter.toString() : null;
            }
        });
    
        private final File projectDir;
    
        @Inject
        public TestNGOptions(ProjectLayout projectLayout) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. cmd/erasure-healing-common.go

    	if inconsistent > len(partsMetadata)/2 {
    		// If there are too many inconsistent files, then we can't trust erasure.Distribution (most likely
    		// because of bugs found in CopyObject/PutObjectTags) https://github.com/minio/minio/pull/10772
    		erasureDistributionReliable = false
    	}
    
    	metaErrs := make([]error, len(errs))
    
    	for i, onlineDisk := range onlineDisks {
    		if errs[i] != nil {
    			metaErrs[i] = errs[i]
    			continue
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/AbstractIteratorTester.java

      private <T extends Iterator<E>> void internalExecuteAndCompare(
          T reference, T target, IteratorOperation method) {
        Object referenceReturnValue = null;
        PermittedMetaException referenceException = null;
        Object targetReturnValue = null;
        Exception targetException = null;
    
        try {
          targetReturnValue = method.execute(target);
        } catch (Exception e) { // sneaky checked exception
          targetException = e;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/collect/testing/AbstractIteratorTester.java

      private <T extends Iterator<E>> void internalExecuteAndCompare(
          T reference, T target, IteratorOperation method) {
        Object referenceReturnValue = null;
        PermittedMetaException referenceException = null;
        Object targetReturnValue = null;
        Exception targetException = null;
    
        try {
          targetReturnValue = method.execute(target);
        } catch (Exception e) { // sneaky checked exception
          targetException = e;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  8. pkg/features/kube_features.go

    	// owner: @andrewsykim
    	// alpha: v1.23
    	// beta: v1.29
    	//
    	// Disable in-tree functionality in kubelet to authenticate to cloud provider container registries for image pull credentials.
    	DisableKubeletCloudCredentialProviders featuregate.Feature = "DisableKubeletCloudCredentialProviders"
    
    	// owner: @HirazawaUi
    	// kep: http://kep.k8s.io/4004
    	// alpha: v1.29
    	// beta: v1.31
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener_waypoint.go

    		// connections when the client is not responding, to keep
    		// us from holding many stale conns from deceased clients
    		//
    		// Also TODO(https://github.com/hyperium/hyper/pull/3647)
    		ConnectionKeepalive: &core.KeepaliveSettings{
    			Interval: durationpb.New(h2KeepaliveInterval),
    			Timeout:  durationpb.New(h2KeepaliveTimeout),
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_builder.go

    		// to support Dual Stack via Envoy BindConfig, and below is the related issue/PR in Envoy:
    		// https://github.com/envoyproxy/envoy/issues/9811
    		// https://github.com/envoyproxy/envoy/pull/22639.
    		// The extra source address for UpstreamBindConfig should be added if dual stack is enabled and there is
    		// more than one IP for the proxy.
    		if features.EnableDualStack && len(cb.passThroughBindIPs) > 1 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
Back to top