Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 518 for fwmark (0.14 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.h

      // conversion. Note that success return value doesn't mean successful
      // legalization.
      mlir::LogicalResult LegalizeOp();
    
      // Converts the given operand to expression of kind kConstant or kXlaOp.
      // Emits a remark and returns expression of kind kInvalid on failure.
      tensorflow::XlaExpression GetExprForOperand(mlir::Value operand,
                                                  mlir::Operation* op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. src/internal/trace/gc.go

    					// If the goroutine isn't executing, then the fact that it was in mark
    					// assist doesn't actually count.
    					break
    				}
    				// This G has been in a mark assist *and running on its P* since the start
    				// of the trace.
    				fallthrough
    			case handleSweep(r):
    				// This P has been in sweep (or mark assist, from above) in the start of the trace.
    				//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_activity_listener.cc

    Status BroadcastOptimizationRemark(
        XlaOptimizationRemark::Warning optimization_warning,
        string debug_information) {
      XlaOptimizationRemark remark;
      remark.set_warning(optimization_warning);
      remark.set_debug_information(std::move(debug_information));
      return BroadcastOptimizationRemark(std::move(remark));
    }
    void RegisterXlaActivityListener(
        std::unique_ptr<XlaActivityListener> listener) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. src/syscall/exec_unix.go

    // file descriptors we intend. To do that, we mark all file
    // descriptors close-on-exec and then, in the child, explicitly
    // unmark the ones we want the exec'ed program to keep.
    // Unix doesn't make this easy: there is, in general, no way to
    // allocate a new file descriptor close-on-exec. Instead you
    // have to allocate the descriptor and then mark it close-on-exec.
    // If a fork happens between those two events, the child's exec
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/RISCV64Ops.go

    		fp11    = regInfo{inputs: []regMask{fpMask}, outputs: []regMask{fpMask}}
    		fp21    = regInfo{inputs: []regMask{fpMask, fpMask}, outputs: []regMask{fpMask}}
    		fp31    = regInfo{inputs: []regMask{fpMask, fpMask, fpMask}, outputs: []regMask{fpMask}}
    		gpfp    = regInfo{inputs: []regMask{gpMask}, outputs: []regMask{fpMask}}
    		fpgp    = regInfo{inputs: []regMask{fpMask}, outputs: []regMask{gpMask}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  6. src/unicode/letter_test.go

    		}
    		if IsLetter(r) {
    			t.Errorf("IsLetter(0x%x - 1<<31) = true, want false", base)
    		}
    		if IsLower(r) {
    			t.Errorf("IsLower(0x%x - 1<<31) = true, want false", base)
    		}
    		if IsMark(r) {
    			t.Errorf("IsMark(0x%x - 1<<31) = true, want false", base)
    		}
    		if IsNumber(r) {
    			t.Errorf("IsNumber(0x%x - 1<<31) = true, want false", base)
    		}
    		if IsPrint(r) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:46:03 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/helpers_test.go

    	}
    	diff = diffNFTablesChain(fake, "mark-masq-chain", "mark set mark or 0x4000\n")
    	if diff != "" {
    		t.Errorf("unexpected difference in mark-masq-chain with trailing newline:\n%s", diff)
    	}
    
    	diff = diffNFTablesChain(fake, "masquerade-chain", "mark and 0x4000 == 0 return\nmark set mark xor 0x4000\nmasquerade fully-random")
    	if diff != "" {
    		t.Errorf("unexpected difference in masquerade-chain:\n%s", diff)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/resource_analyzer.mlir

    // assigned inside the function called by "tf.BatchFunction".
    
    module {
    // CHECK-LABEL: @serving_default
      func.func @serving_default() -> (tensor<*xi32>) {
        // expected-remark@below {{device: "", container: "", shared_name: "var_0", is_potentially_written: false}}
        %0 = "tf.VarHandleOp"() {shared_name = "var_0"} : () -> tensor<!tf_type.resource<tensor<2xi32>>>
        %1 = "tf.BatchFunction"(%0) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/x86/obj6.go

    				continue
    			}
    			if q := p.To.Target(); q != nil && q.Mark&markBit == 0 {
    				q.Mark |= markBit
    				work = append(work, q)
    			}
    			if p.As == obj.AJMP || p.As == obj.ARET {
    				continue // no fallthrough
    			}
    			if q := p.Link; q != nil && q.Mark&markBit == 0 {
    				q.Mark |= markBit
    				work = append(work, q)
    			}
    		}
    	}
    
    	// Clean up.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/capture/testdata/inbound-ports-wildcard-tproxy.golden

    iptables -t mangle -A PREROUTING -p tcp -m mark --mark 1337 -j CONNMARK --save-mark
    iptables -t mangle -A OUTPUT -p tcp -o lo -m mark --mark 1337 -j RETURN
    iptables -t mangle -A OUTPUT ! -d 127.0.0.1/32 -p tcp -o lo -m owner --uid-owner 1337 -j MARK --set-mark 1338
    iptables -t mangle -A OUTPUT ! -d 127.0.0.1/32 -p tcp -o lo -m owner --gid-owner 1337 -j MARK --set-mark 1338
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top