Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 295 for fwmark (0.13 sec)

  1. tools/istio-iptables/pkg/capture/run.go

    		// save packet mark set by envoy.filters.listener.original_src as connection mark
    		cfg.ruleBuilder.AppendRule(iptableslog.UndefinedCommand, constants.PREROUTING, constants.MANGLE,
    			"-p", constants.TCP, "-m", "mark", "--mark", cfg.cfg.InboundTProxyMark, "-j", "CONNMARK", "--save-mark")
    		// If the packet is already marked with 1337, then return. This is to prevent mark envoy --> app traffic again.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/dcerpc/DcerpcHandle.java

            int state, mark, si;
            char[] arr = str.toCharArray();
            String proto = null, key = null;
            DcerpcBinding binding = null;
    
            state = mark = si = 0;
            do {
                char ch = arr[ si ];
    
                switch ( state ) {
                case 0:
                    if ( ch == ':' ) {
                        proto = str.substring(mark, si);
                        mark = si + 1;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jun 30 10:11:57 UTC 2019
    - 12.9K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/obj9.go

    				if q1.Mark&LEAF == 0 {
    					q1.Mark |= LABEL
    				}
    			} else {
    				p.Mark |= LABEL
    			}
    			q1 = p.Link
    			if q1 != nil {
    				q1.Mark |= LABEL
    			}
    			continue
    
    		case AFCMPO, AFCMPU:
    			q = p
    			p.Mark |= FCMP | FLOAT
    			continue
    
    		case obj.ARET:
    			q = p
    			if p.Link != nil {
    				p.Link.Mark |= LABEL
    			}
    			continue
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/memcombine.go

    func memcombineLoads(f *Func) {
    	// Find "OR trees" to start with.
    	mark := f.newSparseSet(f.NumValues())
    	defer f.retSparseSet(mark)
    	var order []*Value
    
    	// Mark all values that are the argument of an OR.
    	for _, b := range f.Blocks {
    		for _, v := range b.Values {
    			if v.Op == OpOr16 || v.Op == OpOr32 || v.Op == OpOr64 {
    				mark.add(v.Args[0].ID)
    				mark.add(v.Args[1].ID)
    			}
    		}
    	}
    	for _, b := range f.Blocks {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-with-tf2xla-hlo-importer.mlir

        // CHECK: tf.Atan2
        // expected-remark@+1 {{lowering requires bounded tensor operands}}
        %0 = "tf.Atan2"(%arg0, %arg0) : (tensor<*xf32>, tensor<*xf32>) -> tensor<*xf32>
    
        func.return %0 : tensor<*xf32>
      }
    
      // CHECK-LABEL: dynamic_operand
      func.func @dynamic_operand(%arg0: tensor<?xf32>) -> tensor<?xf32> {
        // CHECK: tf.Atan2
        // expected-remark@+1 {{lowering requires bounded tensor operands}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 38.6K bytes
    - Viewed (1)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Combinators.kt

    ): Parser<T> = {
        val mark = currentPosition
        when (val lr = left()) {
            is ParserResult.Failure -> {
                restore(mark)
                right().map(r)
            }
    
            is ParserResult.Success -> {
                lr.map(l)
            }
        }
    }
    
    
    internal
    fun <T> optional(parser: Parser<T>): Parser<T?> = {
        val mark = currentPosition
        when (val r = parser()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/decl.go

    			// begins at the identifier in the TypeSpec and ends at the end of
    			// the innermost containing block."
    			scopePos := s.Name.Pos()
    			check.declare(check.scope, s.Name, obj, scopePos)
    			// mark and unmark type before calling typeDecl; its type is still nil (see Checker.objDecl)
    			obj.setColor(grey + color(check.push(obj)))
    			check.typeDecl(obj, s, nil)
    			check.pop().setColor(black)
    
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-prefer-tf2xla.mlir

    //===----------------------------------------------------------------------===//
    
    // -----
    
    // CHECK-LABEL: func @random_uniform_simple
    func.func @random_uniform_simple(%arg0: tensor<3xi32>) -> tensor<12x?x64xf32> {
      // expected-remark@+1 {{lowering requires operand #0 to be a constant}}
      %0 = "tf.RandomUniform"(%arg0) {device = "", seed = 0 : i64, seed2 = 0 : i64} : (tensor<3xi32>) -> tensor<12x?x64xf32>
      func.return %0 : tensor<12x?x64xf32>
    }
    
    // -----
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/s390x/objz.go

    				q.To.Reg = REGSP
    				q.To.Offset = 0
    			} else if c.cursym.Func().Text.Mark&LEAF == 0 {
    				// A very few functions that do not return to their caller
    				// (e.g. gogo) are not identified as leaves but still have
    				// no frame.
    				c.cursym.Func().Text.Mark |= LEAF
    			}
    
    			if c.cursym.Func().Text.Mark&LEAF != 0 {
    				c.cursym.Set(obj.AttrLeaf, true)
    				break
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 21K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/plist.go

    			q.Link = p
    
    			if p.Link == nil {
    				break // Reached the end, don't bother marking the end
    			}
    			if isRestartable(p.Link) {
    				// Next Prog is also restartable. No need to mark the end
    				// of this sequence. We'll just go ahead mark the next one.
    				continue
    			}
    			p = Appendp(p, newprog)
    			p.As = APCDATA
    			p.From.Type = TYPE_CONST
    			p.From.Offset = abi.PCDATA_UnsafePoint
    			p.To.Type = TYPE_CONST
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top