Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 602 for for1 (0.06 sec)

  1. src/net/http/httputil/reverseproxy_test.go

    	backend := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		if r.Header.Get("X-Forwarded-For") == "" {
    			t.Errorf("didn't get X-Forwarded-For header")
    		}
    		if !strings.Contains(r.Header.Get("X-Forwarded-For"), prevForwardedFor) {
    			t.Errorf("X-Forwarded-For didn't contain prior data")
    		}
    		w.WriteHeader(backendStatus)
    		w.Write([]byte(backendResponse))
    	}))
    	defer backend.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  2. src/index/suffixarray/sais2.go

    }
    
    func induceSubL_8_64(text []byte, sa, freq, bucket []int64) {
    	// Initialize positions for left side of character buckets.
    	bucketMin_8_64(text, freq, bucket)
    	bucket = bucket[:256] // eliminate bounds check for bucket[cB] below
    
    	// As we scan the array left-to-right, each sa[i] = j > 0 is a correctly
    	// sorted suffix array entry (for text[j:]) for which we know that j-1 is type L.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

              attr for attr in op_def.attr if attr.name not in derived_attrs
          ]
          attrs_no_default = [
              attr for attr in non_derived_attrs
              if not attr.HasField('default_value')
          ]
          attrs_with_default = [
              attr for attr in non_derived_attrs if attr.HasField('default_value')
          ]
          attr_names = {'f32_', 'i32_', 'i64_', 'i1_'}  # reserved
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  4. pkg/proxy/nftables/proxier.go

    	// can be up to 4, plus 8 for the hash and 4 additional punctuation characters.
    	// That's a total of 205, which is less than chainNameBaseLengthMax (240). So this
    	// will never actually return a truncated name.
    	return hashAndTruncate(name)
    }
    
    // servicePortEndpointChainNameBase returns the suffix for chain names for the given
    // endpoint. This is something like
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  5. .bazelrc

    #     elinux_aarch64:  Embedded Linux options for aarch64 (ARM64) CPU support.
    #     elinux_armhf:    Embedded Linux options for armhf (ARMv7) CPU support.
    #
    # Release build options (for all operating systems)
    #     release_base:                    Common options for all builds on all operating systems.
    #     release_cpu_linux:               Toolchain and CUDA options for Linux CPU builds.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/debug.go

    	for i := range slots {
    		slots[i] = VarLoc{}
    	}
    	for i := range registers {
    		registers[i] = registers[i][:0]
    	}
    	for it := live.Iterator(); !it.Done(); {
    		k, d := it.Next()
    		live := d.(*liveSlot)
    		slots[k] = live.VarLoc
    		if live.VarLoc.Registers == 0 {
    			continue
    		}
    
    		mask := uint64(live.VarLoc.Registers)
    		for {
    			if mask == 0 {
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     * names is a distinct URL and they are not interchangeable. For example, even if
     * `http://square.github.io/dagger` and `http://google.github.io/dagger` are served by the same IP
     * address, the two URLs identify different resources.
     *
     * ### Port
     *
     * The port used to connect to the web server. By default this is 80 for HTTP and 443 for HTTPS.
     * This class never returns -1 for the port: if no port is explicitly specified in the URL then the
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/lib.go

    // specified via the linker's "-capturehostobjs" debugging flag. This
    // is intended to make it easier for a developer to inspect the actual
    // object feeding into "CGO internal" link step.
    func captureHostObj(h *Hostobj) {
    	// Form paths for info file and obj file.
    	ofile := fmt.Sprintf("captured-obj-%d.o", hostobjcounter)
    	ifile := fmt.Sprintf("captured-obj-%d.txt", hostobjcounter)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/CharMatcher.java

      }
    
      /**
       * Returns the Java Unicode escape sequence for the given {@code char}, in the form "\u12AB" where
       * "12AB" is the four hexadecimal digits representing the 16-bit code unit.
       */
      private static String showCharacter(char c) {
        String hex = "0123456789ABCDEF";
        char[] tmp = {'\\', 'u', '\0', '\0', '\0', '\0'};
        for (int i = 0; i < 4; i++) {
          tmp[5 - i] = hex.charAt(c & 0xF);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  10. pkg/proxy/iptables/proxier.go

    	}
    
    	if initOnly {
    		logger.Info("System initialized and --init-only specified")
    		return nil, nil
    	}
    
    	// Generate the masquerade mark to use for SNAT rules.
    	masqueradeValue := 1 << uint(masqueradeBit)
    	masqueradeMark := fmt.Sprintf("%#08x", masqueradeValue)
    	logger.V(2).Info("Using iptables mark for masquerade", "mark", masqueradeMark)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
Back to top