Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 261 for for1 (0.09 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. 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)
  3. .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)
  4. 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)
  5. 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)
  6. 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)
  7. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

            curr = succ;
          }
          break;
        }
      }
    
      /** Listeners also form a stack through the {@link #listeners} field. */
      private static final class Listener {
        static final Listener TOMBSTONE = new Listener();
        @CheckForNull // null only for TOMBSTONE
        final Runnable task;
        @CheckForNull // null only for TOMBSTONE
        final Executor executor;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  8. guava/src/com/google/common/util/concurrent/AbstractFuture.java

            curr = succ;
          }
          break;
        }
      }
    
      /** Listeners also form a stack through the {@link #listeners} field. */
      private static final class Listener {
        static final Listener TOMBSTONE = new Listener();
        @CheckForNull // null only for TOMBSTONE
        final Runnable task;
        @CheckForNull // null only for TOMBSTONE
        final Executor executor;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  9. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		storedObj *example.Pod
    	}{
    		{
    			key: computePodKey(foo1),
    			obj: foo1,
    		},
    		{
    			key: computePodKey(bar2),
    			obj: bar2,
    		},
    		{
    			key: computePodKey(foo3),
    			obj: foo3,
    		},
    		{
    			key: computePodKey(foo4),
    			obj: foo4,
    		},
    	}
    
    	var currentRV string
    	for i, ps := range preset {
    		preset[i].storedObj = &example.Pod{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/parser.go

    	p.errorAt(pos, "syntax error: unexpected "+tok+msg)
    }
    
    // tokstring returns the English word for selected punctuation tokens
    // for more readable error messages. Use tokstring (not tok.String())
    // for user-facing (error) messages; use tok.String() for debugging
    // output.
    func tokstring(tok token) string {
    	switch tok {
    	case _Comma:
    		return "comma"
    	case _Semi:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
Back to top