Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 275 for north (0.05 sec)

  1. src/runtime/mpagealloc.go

    	// exception to this rule is that it may take on the value of
    	// maxOffAddr to indicate that the heap is exhausted.
    	//
    	// We guarantee that all valid heap addresses below this value
    	// are allocated and not worth searching.
    	searchAddr offAddr
    
    	// start and end represent the chunk indices
    	// which pageAlloc knows about. It assumes
    	// chunks in the range [start, end) are
    	// currently ready to use.
    	start, end chunkIdx
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/upgrade/compute.go

    		// After the v1.X.0 release, latest-1.X.txt is always a beta.0 version. Let's say the latest stable version on the v1.7 branch is v1.7.3, then the
    		// latest-1.7 version is v1.7.4-beta.0
    
    		// Worth noticing is that when the release-1.X branch is cut; there are two versions tagged: v1.X.0-beta.0 AND v1.(X+1).alpha.0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Equivalence.java

      public final <S extends @Nullable T> Equivalence<Iterable<S>> pairwise() {
        // Ideally, the returned equivalence would support Iterable<? extends T>. However,
        // the need for this is so rare that it's not worth making callers deal with the ugly wildcard.
        return new PairwiseEquivalence<>(this);
      }
    
      /**
       * Returns a predicate that evaluates to true if and only if the input is equivalent to {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/CharMatcher.java

            return none();
          case 1:
            return is(sequence.charAt(0));
          case 2:
            return isEither(sequence.charAt(0), sequence.charAt(1));
          default:
            // TODO(lowasser): is it potentially worth just going ahead and building a precomputed
            // matcher?
            return new AnyOf(sequence);
        }
      }
    
      /**
       * Returns a {@code char} matcher that matches any BMP character not present in the given
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. docs/en/docs/deployment/https.md

    You would probably do this just once, the first time, when setting everything up.
    
    !!! tip
        This Domain Name part is way before HTTPS, but as everything depends on the domain and the IP address, it's worth mentioning it here.
    
    ### DNS
    
    Now let's focus on all the actual HTTPS parts.
    
    First, the browser would check with the **DNS servers** what is the **IP for the domain**, in this case, `someapp.example.com`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/Equivalence.java

      public final <S extends @Nullable T> Equivalence<Iterable<S>> pairwise() {
        // Ideally, the returned equivalence would support Iterable<? extends T>. However,
        // the need for this is so rare that it's not worth making callers deal with the ugly wildcard.
        return new PairwiseEquivalence<>(this);
      }
    
      /**
       * Returns a predicate that evaluates to true if and only if the input is equivalent to {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu May 16 14:34:47 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. src/go/doc/testdata/testing.go

    			return
    		}
    		if err := pprof.StartCPUProfile(f); err != nil {
    			fmt.Fprintf(os.Stderr, "testing: can't start cpu profile: %s", err)
    			f.Close()
    			return
    		}
    		// Could save f so after can call f.Close; not worth the effort.
    	}
    
    }
    
    // after runs after all testing.
    func after() {
    	if *cpuProfile != "" {
    		pprof.StopCPUProfile() // flushes profile to disk
    	}
    	if *memProfile != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/primitives/UnsignedBytes.java

            radix >= Character.MIN_RADIX && radix <= Character.MAX_RADIX,
            "radix (%s) must be between Character.MIN_RADIX and Character.MAX_RADIX",
            radix);
        // Benchmarks indicate this is probably not worth optimizing.
        return Integer.toString(toInt(x), radix);
      }
    
      /**
       * Returns the unsigned {@code byte} value represented by the given decimal string.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  9. src/go/build/constraint/expr.go

    func PlusBuildLines(x Expr) ([]string, error) {
    	// Push all NOTs to the expression leaves, so that //go:build !(x && y) can be treated as !x || !y.
    	// This rewrite is both efficient and commonly needed, so it's worth doing.
    	// Essentially all other possible rewrites are too expensive and too rarely needed.
    	x = pushNot(x, false)
    
    	// Split into AND of ORs of ANDs of literals (tag or NOT tag).
    	var split [][][]Expr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  10. pkg/istio-agent/xds_proxy_test.go

    	// simulate envoy send xds requests
    	sendDownstreamWithNode(t, downstream, node)
    
    	// after lds sent, the caching healthcheck will be resent
    	expectCondition(status.StatusTrue)
    
    	// Flip status back and forth, ensure we update
    	proxy.sendHealthCheckRequest(healthy)
    	expectCondition(status.StatusTrue)
    	proxy.sendHealthCheckRequest(unhealthy)
    	expectCondition(status.StatusFalse)
    	proxy.sendHealthCheckRequest(healthy)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top