Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for fwmark (0.29 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/side-effect-analysis-test.mlir

          // expected-remark@above {{ID: 8}}
          // expected-remark@above {{Predecessors: {5,6}}}
          // expected-remark@above {{Successors: {9}}}
          tf_executor.yield
          // expected-remark@above {{ID: 9}}
          // expected-remark@above {{Predecessors: {7,8}}}
        }
        tf_executor.fetch %island : !tf_executor.control
        // expected-remark@above {{ID: 11}}
        // expected-remark@above {{Predecessors: {10}}}
      }
      func.return
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 129.7K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier_test.go

    		add table ip kube-proxy { comment "rules for kube-proxy" ; }
    
    		add chain ip kube-proxy mark-for-masquerade
    		add rule ip kube-proxy mark-for-masquerade mark set mark or 0x4000
    		add chain ip kube-proxy masquerading
    		add rule ip kube-proxy masquerading mark and 0x4000 == 0 return
    		add rule ip kube-proxy masquerading mark set mark xor 0x4000
    		add rule ip kube-proxy masquerading masquerade fully-random
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  3. pkg/volume/util/operationexecutor/operation_generator.go

    			// so that reconciler can clean up volume when needed. However, volume resize failed,
    			// we should not mark the volume as mounted to avoid pod starts using it.
    			// Considering the above situations, we mark volume as uncertain here so that reconciler will trigger
    			// volume tear down when pod is deleted, and also makes sure pod will not start using it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  4. fastapi/routing.py

                    """
                ),
            ] = None,
            deprecated: Annotated[
                Optional[bool],
                Doc(
                    """
                    Mark all *path operations* in this router as deprecated.
    
                    It will be added to the generated OpenAPI (e.g. visible at `/docs`).
    
                    Read more about it in the
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    	// low resolution, typically on the order of 1 ms or more.
    	osHasLowResClock = osHasLowResClockInt > 0
    )
    
    // Mark gp ready to run.
    func ready(gp *g, traceskip int, next bool) {
    	status := readgstatus(gp)
    
    	// Mark runnable.
    	mp := acquirem() // disable preemption because it can be holding p in a local var
    	if status&^_Gscan != _Gwaiting {
    		dumpgstatus(gp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/asm9.go

    					continue
    				}
    			}
    
    			// Prefixed instructions cannot be placed across a 64B boundary.
    			// Mark and adjust the PC of those which do. A nop will be
    			// inserted during final assembly.
    			if o.ispfx {
    				mark := p.Mark &^ PFX_X64B
    				if pc&63 == 60 {
    					p.Pc += 4
    					m += 4
    					mark |= PFX_X64B
    				}
    
    				// Marks may be adjusted if a too-far conditional branch is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/s390x/asmz.go

    	return Always
    }
    
    func regtmp(p *obj.Prog) uint32 {
    	p.Mark |= USETMP
    	return REGTMP
    }
    
    func (c *ctxtz) asmout(p *obj.Prog, asm *[]byte) {
    	o := c.oplook(p)
    
    	if o == nil {
    		return
    	}
    
    	// If REGTMP is used in generated code, we need to set USETMP on p.Mark.
    	// So we use regtmp(p) for REGTMP.
    
    	switch o.i {
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  8. pkg/controller/podautoscaler/horizontal_test.go

    		tc.Lock()
    		defer tc.Unlock()
    		// fake out the verification logic and mark that we're done processing
    		go func() {
    			// wait a tick and then mark that we're finished (otherwise, we have no
    			// way to indicate that we're finished, because the function decides not to do anything)
    			time.Sleep(1 * time.Second)
    			tc.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/x86/asm6.go

    		}
    	}
    
    	// Mark nonpreemptible instruction sequences.
    	// The 2-instruction TLS access sequence
    	//	MOVQ TLS, BX
    	//	MOVQ 0(BX)(TLS*1), BX
    	// is not async preemptible, as if it is preempted and resumed on
    	// a different thread, the TLS address may become invalid.
    	if !CanUse1InsnTLS(ctxt) {
    		useTLS := func(p *obj.Prog) bool {
    			// Only need to mark the second instruction, which has
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. pkg/controller/daemon/daemon_controller_test.go

    	}
    
    	err = validateSyncDaemonSets(manager, fakePodControl, 1, 0, 0)
    	if err != nil {
    		t.Error(err)
    	}
    	fakePodControl.Clear()
    }
    
    func markPodsReady(store cache.Store) {
    	// mark pods as ready
    	for _, obj := range store.List() {
    		pod := obj.(*v1.Pod)
    		markPodReady(pod)
    	}
    }
    
    func markPodReady(pod *v1.Pod) {
    	condition := v1.PodCondition{Type: v1.PodReady, Status: v1.ConditionTrue}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
Back to top