Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 242 for getg (0.05 sec)

  1. guava-testlib/src/com/google/common/collect/testing/google/SetGenerators.java

           * doesn't need one, or it should be suppressed for ContiguousSet.
           */
          for (int i = 0; i < elements.size() - 1; i++) {
            assertEquals(elements.get(i) + 1, (int) elements.get(i + 1));
          }
          Range<Integer> range =
              elements.isEmpty() ? Range.closedOpen(0, 0) : Range.encloseAll(elements);
          return ContiguousSet.create(range, DiscreteDomain.integers());
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. src/net/cgo_unix.go

    // For the duration of the execution of the blocking function, the thread is 'acquired' using [acquireThread],
    // blocking might not be executed when the context gets canceled early.
    func doBlockingWithCtx[T any](ctx context.Context, lookupName string, blocking func() (T, error)) (T, error) {
    	if err := acquireThread(ctx); err != nil {
    		var zero T
    		return zero, &DNSError{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysisData.java

            }
            return DependentsSet.dependentClasses(Collections.emptySet(), typesInPackage);
        }
    
        /**
         * Gets the accessible, inlineable constants of the given class.
         */
        public IntSet getConstants(String className) {
            IntSet integers = classesToConstants.get(className);
            if (integers == null) {
                return IntSets.EMPTY_SET;
            }
            return integers;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 15:22:57 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  4. cluster/gce/windows/testonly/install-ssh.psm1

      # https://github.com/PowerShell/Win32-OpenSSH/wiki/Various-Considerations
      (Get-Content $sshd_config_default).`
          replace('#PasswordAuthentication yes', 'PasswordAuthentication no') |
          Set-Content -Encoding UTF8 $sshd_config
    
      # Configure the firewall to allow inbound SSH connections
      if (Get-NetFirewallRule -ErrorAction SilentlyContinue sshd) {
        Get-NetFirewallRule sshd | Remove-NetFirewallRule
      }
      New-NetFirewallRule `
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 05:09:18 UTC 2021
    - 11.6K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/upgrade/postupgrade.go

    		errs = append(errs, err)
    	}
    
    	// Create/update RBAC rules that makes the bootstrap tokens able to get their CSRs approved automatically
    	if err := nodebootstraptoken.AutoApproveNodeBootstrapTokens(client); err != nil {
    		errs = append(errs, err)
    	}
    
    	// Create/update RBAC rules that makes the nodes to rotate certificates and get their CSRs approved automatically
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. pkg/controller/cronjob/utils.go

    	for t := schedule.Next(potentialEarliest); !t.After(now); t = schedule.Next(t) {
    		mostRecentTime = t
    	}
    
    	// An object might miss several starts. For example, if
    	// controller gets wedged on friday at 5:01pm when everyone has
    	// gone home, and someone comes in on tuesday AM and discovers
    	// the problem and restarts the controller, then all the hourly
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/finalizer/crd_finalizer.go

    type ListerCollectionDeleter interface {
    	rest.Lister
    	rest.CollectionDeleter
    }
    
    // CRClientGetter knows how to get a ListerCollectionDeleter for a given CRD UID.
    type CRClientGetter interface {
    	// GetCustomResourceListerCollectionDeleter gets the ListerCollectionDeleter for the given CRD
    	// UID.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer.cc

        };
    
        if (global.first_use < remat.begin) {
          // The tensor is created before the source range.
          if (global.last_use < remat.insert) {
            // It currently gets deallocated before the newly inserted range, so we
            // need to extend its lifetime: It will now be deallocated at its last
            // use in the inserted range.
            del_dealloc(global.last_use);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  9. cni/pkg/nodeagent/informers.go

    // * the pod, if it is found and ambient is enabled
    func (s *InformerHandlers) GetPodIfAmbient(podName, podNamespace string) (*corev1.Pod, error) {
    	ns := s.namespaces.Get(podNamespace, "")
    	if ns == nil {
    		return nil, fmt.Errorf("failed to find namespace %v", ns)
    	}
    	pod := s.pods.Get(podName, podNamespace)
    	if pod == nil {
    		return nil, fmt.Errorf("failed to find pod %v", ns)
    	}
    	if util.PodRedirectionEnabled(ns, pod) {
    		return pod, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/text/unicode/bidi/bracket.go

    					for ; count > 0; count-- {
    						p.openers.Remove(p.openers.Front())
    					}
    					break
    				}
    			}
    			sort.Sort(p.pairPositions)
    			// if we get here, the closing bracket matched no openers
    			// and gets ignored
    		}
    	}
    }
    
    // Bracket pairs within an isolating run sequence are processed as units so
    // that both the opening and the closing paired bracket in a pair resolve to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11.2K bytes
    - Viewed (0)
Back to top