Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 76 for closeFn (0.12 sec)

  1. pkg/controller/daemon/daemon_controller.go

    	"k8s.io/kubernetes/pkg/controller"
    	"k8s.io/kubernetes/pkg/controller/daemon/util"
    )
    
    const (
    	// BurstReplicas is a rate limiter for booting pods on a lot of pods.
    	// The value of 250 is chosen b/c values that are too high can cause registry DoS issues.
    	BurstReplicas = 250
    
    	// StatusUpdateRetries limits the number of retries if sending a status update to API server fails.
    	StatusUpdateRetries = 1
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  2. pkg/proxy/winkernel/proxier.go

    						continue
    					}
    					updateQueriedEndpoints(newHnsEndpoint, queriedEndpoints)
    				}
    			}
    			// For Overlay networks 'SourceVIP' on an Load balancer Policy can either be chosen as
    			// a) Source VIP configured on kube-proxy (or)
    			// b) Node IP of the current node
    			//
    			// For L2Bridge network the Source VIP is always the NodeIP of the current node and the same
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	var len _Socklen = SizeofSockaddrAny
    	nfd, err = accept(fd, &rsa, &len)
    	if err != nil {
    		return
    	}
    	// TODO(neeilan): Remove 0 in call
    	sa, err = anyToSockaddr(0, &rsa)
    	if err != nil {
    		Close(nfd)
    		nfd = 0
    	}
    	return
    }
    
    func Accept4(fd int, flags int) (nfd int, sa Sockaddr, err error) {
    	var rsa RawSockaddrAny
    	var len _Socklen = SizeofSockaddrAny
    	nfd, err = accept4(fd, &rsa, &len, flags)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    	{"runtime/internal/sys", "zversion.go", mkzversion},
    	{"time/tzdata", "zzipdata.go", mktzdata},
    }
    
    // installed maps from a dir name (as given to install) to a chan
    // closed when the dir's package is installed.
    var installed = make(map[string]chan struct{})
    var installedMu sync.Mutex
    
    func install(dir string) {
    	<-startInstall(dir)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. pkg/kubelet/status/status_manager_test.go

    	// a reconciliation is not needed, syncBatch should do nothing.
    	// The StartTime should have been set in SetPodStatus().
    	// This test is done because the related issue #15262/PR #15263 to move apiserver to RFC339NANO is closed.
    	t.Logf("Syncbatch should do nothing, as a reconciliation is not required")
    	normalizedStartTime := testPod.Status.StartTime.Rfc3339Copy()
    	testPod.Status.StartTime = &normalizedStartTime
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                            setCorePoolSize(parallelism + parked.decrementAndGet());
                        }
                    }
                };
            }
    
            @Override
            public void close() {
                this.executor.shutdownNow();
            }
    
            private int getParallelism(ProjectBuildingRequest request) {
                int parallelism = DEFAULT_BUILDER_PARALLELISM;
                try {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  7. cmd/xl-storage_test.go

    		// causing error.
    		n, err := reader.Read(shard)
    		w.Write(shard[:n])
    		if err == nil {
    			continue
    		}
    		if err == io.EOF {
    			break
    		}
    		t.Fatal(err)
    	}
    	w.(io.Closer).Close()
    	if err := storage.storage.bitrotVerify(context.Background(), pathJoin(path, volName, fileName), size, algo, nil, shardSize); err != nil {
    		t.Fatal(err)
    	}
    
    	// 4) Streaming bitrot check on corrupted file
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  8. cmd/iam.go

    	usersSysType UsersSysType
    
    	rolesMap map[arn.ARN]string
    
    	// Persistence layer for IAM subsystem
    	store *IAMStoreSys
    
    	// configLoaded will be closed and remain so after first load.
    	configLoaded chan struct{}
    }
    
    // IAMUserType represents a user type inside MinIO server
    type IAMUserType int
    
    const (
    	unknownIAMUserType IAMUserType = iota - 1
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_attacher_test.go

    			}
    
    			trigerWatchEventTime := tc.trigerWatchEventTime
    			finalAttached := tc.finalAttached
    			finalAttachErr := tc.finalAttachErr
    			var wg sync.WaitGroup
    			// after timeout, fakeWatcher will be closed by csiAttacher.waitForVolumeAttachment
    			if tc.trigerWatchEventTime > 0 && tc.trigerWatchEventTime < tc.timeout {
    				wg.Add(1)
    				go func() {
    					defer wg.Done()
    					time.Sleep(trigerWatchEventTime)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/MapMakerInternalMap.java

       * and accesses that were performed on the map. The queue is drained on writes and when it exceeds
       * its capacity threshold.
       *
       * The Least Recently Used page replacement algorithm was chosen due to its simplicity, high hit
       * rate, and ability to be implemented with O(1) time complexity. The initial LRU implementation
       * operates per-segment rather than globally for increased implementation simplicity. We expect
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
Back to top