Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,708 for ControlZ (0.5 sec)

  1. src/make.bash

    # building the commands.
    #
    # CGO_ENABLED: Controls cgo usage during the build. Set it to 1
    # to include all cgo related files, .c and .go file with "cgo"
    # build directive, in the build. Set it to 0 to ignore them.
    #
    # GO_EXTLINK_ENABLED: Set to 1 to invoke the host linker when building
    # packages that use cgo.  Set to 0 to do all linking internally.  This
    # controls the default behavior of the linker's -linkmode option.  The
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware.go

    // This should be called on all responses before returning
    func removeCORSHeaders(resp *http.Response) {
    	resp.Header.Del("Access-Control-Allow-Credentials")
    	resp.Header.Del("Access-Control-Allow-Headers")
    	resp.Header.Del("Access-Control-Allow-Methods")
    	resp.Header.Del("Access-Control-Allow-Origin")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. internal/http/listener.go

    		RecvBufSize: t.RecvBufSize,
    	}
    }
    
    // newHTTPListener - creates new httpListener object which is interface compatible to net.Listener.
    // httpListener is capable to
    // * listen to multiple addresses
    // * controls incoming connections only doing HTTP protocol
    func newHTTPListener(ctx context.Context, serverAddrs []string, opts TCPOptions) (listener *httpListener, listenErrs []error) {
    	listeners := make([]net.Listener, 0, len(serverAddrs))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. src/math/floor_386.s

    	FMOVD   x+0(FP), F0  // F0=x
    	FSTCW   -2(SP)       // save old Control Word
    	MOVW    -2(SP), AX
    	ANDW    $0xf3ff, AX
    	ORW     $0x0800, AX  // Rounding Control set to +Inf
    	MOVW    AX, -4(SP)   // store new Control Word
    	FLDCW   -4(SP)       // load new Control Word
    	FRNDINT              // F0=Ceil(x)
    	FLDCW   -2(SP)       // load old Control Word
    	FMOVDP  F0, ret+8(FP)
    	RET
    
    // func archFloor(x float64) float64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tf-functional-to-executor.mlir

    // CHECK: tf_executor.graph {
    // CHECK:   %[[CONTROL:.*]] = tf_executor.island {
    // CHECK:     tf_executor.yield
    // CHECK:   }
    // CHECK:   tf_executor.fetch %[[CONTROL]] : !tf_executor.control
    // CHECK: }
    // CHECK: return
    
    func.func @graph_already() {
      tf_executor.graph {
        %control = tf_executor.island {
          tf_executor.yield
        }
        tf_executor.fetch %control : !tf_executor.control
      }
      func.return
    }
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    	HTTP2MaxStreamsPerConnection int
    
    	// PermitPortSharing controls if SO_REUSEPORT is used when binding the port, which allows
    	// more than one instance to bind on the same address and port.
    	PermitPortSharing bool
    
    	// PermitAddressSharing controls if SO_REUSEADDR is used when binding the port.
    	PermitAddressSharing bool
    }
    
    type CertKey struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/check_control_dependencies.mlir

        %island4 = tf_executor.island(%island3) {
          "tf.NoOp"() : () -> ()
          tf_executor.yield
        }
        // expected-warning@+3 {{unexpected control dependency path: path 0, node 2 (intermediate)}}
        // expected-warning@+2 {{unexpected control dependency path: path 1, node 2 (intermediate)}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 31 16:14:07 UTC 2022
    - 8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/api/v1/testdata/invalid_executor.mlir

      func.func @main() {
        tf_executor.graph {
          %control = tf_executor.island {
            tf_executor.yield
          }
          tf_executor.fetch %control : !tf_executor.control
        }
        tf_executor.graph {
          %control = tf_executor.island {
            tf_executor.yield
          }
          tf_executor.fetch %control : !tf_executor.control
        }
        return
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 03 14:48:16 UTC 2023
    - 457 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/filters/cors_test.go

    					if !reflect.DeepEqual(origin, response.Header.Get("Access-Control-Allow-Origin")) {
    						t.Errorf("Expected %#v, Got %#v", origin, response.Header.Get("Access-Control-Allow-Origin"))
    					}
    
    					if response.Header.Get("Access-Control-Allow-Credentials") == "" {
    						t.Errorf("Expected Access-Control-Allow-Credentials header to be set")
    					}
    
    					if response.Header.Get("Access-Control-Allow-Headers") == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 20 19:15:51 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tf_executor_ops.mlir

      %result = tf_executor.graph {
    // CHECK: tf_executor.Switch %{{[^%]*}}, %{{[^%]*}}, %{{[^%]*}}, %{{[^%]*}} : tensor<i1>
        %1:3 = tf_executor.Switch %arg0, %arg0, %arg1, %arg2 : (tensor<i1>, tensor<i1>, !tf_executor.control, !tf_executor.control) -> (tensor<i1>, tensor<i1>, !tf_executor.control)
        tf_executor.fetch %1#0 : tensor<i1>
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 25.8K bytes
    - Viewed (0)
Back to top