Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 746 for fwmark (0.16 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/runtime/mgcpacer.go

    	return n
    }
    
    // addIdleMarkWorker attempts to add a new idle mark worker.
    //
    // If this returns true, the caller must become an idle mark worker unless
    // there's no background mark worker goroutines in the pool. This case is
    // harmless because there are already background mark workers running.
    // If this returns false, the caller must NOT become an idle mark worker.
    //
    // nosplit because it may be called without a P.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/tests/analysis/tensor_array_side_effect_analysis.mlir

    // RUN: tf-tfrt-opt -tfrt-test-tensor-array-effect -verify-diagnostics %s | FileCheck %s
    
    // CHECK-LABEL: @test_tensor_array_effect
    // expected-remark@+1 {{HasAtMostTensorArrayEffect: 1}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 12:41:10 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/obj6_test.go

    		n := normalize(parts[2])
    		mark_matches := marker.FindStringSubmatch(n)
    		if mark_matches != nil {
    			mark, _ = strconv.Atoi(mark_matches[1])
    			if _, ok := td.marker_to_input[mark]; !ok {
    				t.Fatalf("unexpected marker %d", mark)
    			}
    		} else if mark != -1 {
    			td.marker_to_output[mark] = append(td.marker_to_output[mark], n)
    		}
    	}
    }
    
    func TestDynlink(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:21:30 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  5. logo/usage_guidelines.md

    >addition to the requirement that any use of a mark to make an assertion of
    >compatibility must, of course, be accurate, the use of these marks must
    >avoid confusion regarding The Linux Foundation’s association with the
    >product. The use of the mark cannot imply that The Linux Foundation or
    >its projects are sponsoring or endorsing the product.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 20:03:37 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/compile/internal/inline/interleaved/interleaved.go

    			n = paren
    		}
    
    		return n
    	}
    	ir.EditChildren(fn, mark)
    
    	// Edit until stable.
    	for {
    		done := true
    
    		for i := 0; i < len(parens); i++ { // can't use "range parens" here
    			paren := parens[i]
    			if new := edit(paren.X); new != nil {
    				// Update AST and recursively mark nodes.
    				paren.X = new
    				ir.EditChildren(new, mark) // mark may append to parens
    				done = false
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/mark_initialized_variables_test_pass.cc

     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(MarkInitializedVariablesTestPass)
    
      StringRef getArgument() const final {
        return "tf-saved-model-mark-initialized-variables-test";
      }
    
      StringRef getDescription() const final {
        return "Mark variables as initialized or not.";
      }
    
      void runOnOperation() override {
        TF::test_util::FakeSession session;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 19 00:13:50 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomDomParser.java

            private static final int MARK = 10000;
            private static final String DOCTYPE = "<!DOCTYPE project SYSTEM \"m2-entities.ent\">\n";
    
            private int count;
            private byte[] prefix = DOCTYPE.getBytes();
    
            public AddDTDFilterInputStream(InputStream in) throws IOException {
                super(new BufferedInputStream(in));
    
                this.in.mark(MARK);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/rsc.io/markdown/para.go

    		}
    		// Blank or unindented line ends table.
    		// (So does a new block structure, but the caller has checked that already.)
    		// So does a line with just a pipe:
    		// https://github.com/github/cmark-gfm/pull/127 and
    		// https://github.com/github/cmark-gfm/pull/128
    		// fixed a buffer overread by rejecting | by itself as a table line.
    		// That seems to violate the spec, but we will play along.
    		b = nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top