Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Recognizes (2.1 sec)

  1. src/cmd/go/alldocs.go

    //	    Write an execution trace to the specified file before exiting.
    //
    // Each of these flags is also recognized with an optional 'test.' prefix,
    // as in -test.v. When invoking the generated test binary (the result of
    // 'go test -c') directly, however, the prefix is mandatory.
    //
    // The 'go test' command rewrites or removes recognized flags,
    // as appropriate, both before and after the optional package list,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    	cmd.Env = append(cmd.Environ(), "LC_ALL=C")
    	out, _ := cmd.CombinedOutput()
    	// GCC says "unrecognized command line option".
    	// clang says "unknown argument".
    	// tcc says "unsupported"
    	// AIX says "not recognized"
    	// Older versions of GCC say "unrecognised debug output level".
    	// For -fsplit-stack GCC says "'-fsplit-stack' is not supported".
    	supported := !bytes.Contains(out, []byte("unrecognized")) &&
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/generic.rules

    // for rewriting results of some late-expanded rewrites (below)
    (SelectN [0] (MakeResult x ___)) => x
    (SelectN [1] (MakeResult x y ___)) => y
    (SelectN [2] (MakeResult x y z ___)) => z
    
    // for late-expanded calls, recognize newobject and remove zeroing and nilchecks
    (Zero (SelectN [0] call:(StaticLECall _ _)) mem:(SelectN [1] call))
    	&& isSameCall(call.Aux, "runtime.newobject")
    	=> mem
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  4. src/reflect/value.go

    	}
    	panic(&ValueError{"reflect.Value.OverflowUint", v.kind()})
    }
    
    //go:nocheckptr
    // This prevents inlining Value.Pointer when -d=checkptr is enabled,
    // which ensures cmd/compile can recognize unsafe.Pointer(v.Pointer())
    // and make an exception.
    
    // Pointer returns v's value as a uintptr.
    // It panics if v's Kind is not [Chan], [Func], [Map], [Pointer], [Slice], [String], or [UnsafePointer].
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods_test.go

    				}); !reflect.DeepEqual(expected, actual) {
    					t.Fatalf("unexpected pod activeUpdate: %s", cmp.Diff(expected, actual))
    				}
    
    				// expect that a pod the pod worker does not recognize is force killed with grace period 1
    				if actual, expected := records[uid], []syncPodRecord{
    					{name: "pod1", updateType: kubetypes.SyncPodKill, runningPod: expectedRunningPod},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        bulkFuture.addListener(
            new Runnable() {
              @Override
              public void run() {
                /*
                 * This is similar to the above test, but this time we're making sure that we recognize
                 * that the output Future is done early not because of an exception but because of a
                 * cancellation.
                 */
                secondFuture.setException(subsequentFailure);
              }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        bulkFuture.addListener(
            new Runnable() {
              @Override
              public void run() {
                /*
                 * This is similar to the above test, but this time we're making sure that we recognize
                 * that the output Future is done early not because of an exception but because of a
                 * cancellation.
                 */
                secondFuture.setException(subsequentFailure);
              }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  8. pkg/config/validation/validation.go

    // Valid: "foo", "%HOSTNAME%", "100%%", "prefix %HOSTNAME% suffix"
    // Invalid: "abc%123", "%START_TIME%%"
    // We don't try to check that what is inside the %% is one of Envoy recognized values, we just prevent invalid config.
    // See: https://www.envoyproxy.io/docs/envoy/latest/configuration/http/http_conn_man/headers.html#custom-request-response-headers
    func ValidateHTTPHeaderValue(value string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  9. cluster/gce/gci/configure-helper.sh

        params+=("--configure-cloud-routes=false")
      fi
      if [[ -n "${FEATURE_GATES:-}" ]]; then
        # remove non-GCP feature gates, since the CCM will early exit
        # if given a feature gate it doesn't recognize
        echo "Setting feature gates for cloud provider controller-manager from ${CCM_FEATURE_GATES}"
        local CCM_FEATURE_GATES_FILTER
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  10. src/net/http/server.go

    type initALPNRequest struct {
    	ctx context.Context
    	c   *tls.Conn
    	h   serverHandler
    }
    
    // BaseContext is an exported but unadvertised [http.Handler] method
    // recognized by x/net/http2 to pass down a context; the TLSNextProto
    // API predates context support so we shoehorn through the only
    // interface we have available.
    func (h initALPNRequest) BaseContext() context.Context { return h.ctx }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top