Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 63 for Fault (3.09 sec)

  1. pilot/pkg/xds/endpoints/endpoint_builder.go

    		//    until *after* we apply policies. If we then sent to a service waypoint, we apply service policies twice.
    		//    This can be problematic: double mirroring, fault injection, request manipulation, ....
    		//    Instead, we consider this to workload traffic. This gives the same behavior as if we were an application doing internal load balancing
    		//    with ztunnel.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  2. src/runtime/asm_386.s

    	get_tls(BX)
    	LEAL	runtime·g0(SB), DX
    	MOVL	DX, g(BX)
    	LEAL	runtime·m0(SB), AX
    
    	// save m->g0 = g0
    	MOVL	DX, m_g0(AX)
    	// save g0->m = m0
    	MOVL	AX, g_m(DX)
    
    	CALL	runtime·emptyfunc(SB)	// fault if stack check is wrong
    
    	// convention is D is always cleared
    	CLD
    
    	CALL	runtime·check(SB)
    
    	// saved argc, argv
    	MOVL	120(SP), AX
    	MOVL	AX, 0(SP)
    	MOVL	124(SP), AX
    	MOVL	AX, 4(SP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  3. tensorflow/c/eager/c_api_experimental.h

        int64_t init_timeout_in_ms, TF_Status* status,
        bool clear_existing_contexts);
    
    // Set server def with retries and timeout. This is helpful for fault-tolerant
    // initial connection in high-preemption environments, such as
    // ParameterServerStrategy training.
    // This API is for experimental usage and may be subject to change.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 22:37:46 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/x86/ssa.go

    	case ssa.Op386REPSTOSL:
    		s.Prog(x86.AREP)
    		s.Prog(x86.ASTOSL)
    	case ssa.Op386REPMOVSL:
    		s.Prog(x86.AREP)
    		s.Prog(x86.AMOVSL)
    	case ssa.Op386LoweredNilCheck:
    		// Issue a load which will fault if the input is nil.
    		// TODO: We currently use the 2-byte instruction TESTB AX, (reg).
    		// Should we use the 3-byte TESTB $0, (reg) instead? It is larger
    		// but it doesn't have false dependency on AX.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/s390x/ssa.go

    	case ssa.OpS390XAddTupleFirst32, ssa.OpS390XAddTupleFirst64:
    		v.Fatalf("AddTupleFirst* should never make it to codegen %v", v.LongString())
    	case ssa.OpS390XLoweredNilCheck:
    		// Issue a load which will fault if the input is nil.
    		p := s.Prog(s390x.AMOVBZ)
    		p.From.Type = obj.TYPE_MEM
    		p.From.Reg = v.Args[0].Reg()
    		ssagen.AddAux(&p.From, v)
    		p.To.Type = obj.TYPE_REG
    		p.To.Reg = s390x.REGTMP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 27.1K bytes
    - Viewed (0)
  6. doc/go_mem.html

    }
    </pre>
    
    into:
    
    <pre>
    n := 0
    local := *shared
    for i := 0; i < m; i++ {
    	n += local
    }
    </pre>
    
    <p>
    provided it can be proved that <code>*shared</code> will not fault on access,
    because the potential added read will not affect any existing concurrent reads or writes.
    On the other hand, the rewrite would not be valid in a source-to-source translator.
    </p>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  7. src/runtime/race/testdata/mop_test.go

    The evil that men do lives after them;
    The good is oft interred with their bones;
    So let it be with Caesar. The noble Brutus
    Hath told you Caesar was ambitious:
    If it were so, it was a grievous fault,
    And grievously hath Caesar answer'd it.
    Here, under leave of Brutus and the rest -
    For Brutus is an honourable man;
    So are they all, all honourable men -
    Come I to speak in Caesar's funeral.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 23 16:46:25 UTC 2023
    - 28.9K bytes
    - Viewed (0)
  8. src/runtime/asm_arm.s

    	MOVW	$(-64*1024+104)(R13), R0
    	MOVW	R0, g_stackguard0(g)
    	MOVW	R0, g_stackguard1(g)
    	MOVW	R0, (g_stack+stack_lo)(g)
    	MOVW	R13, (g_stack+stack_hi)(g)
    
    	BL	runtime·emptyfunc(SB)	// fault if stack check is wrong
    
    #ifdef GOOS_openbsd
    	// Save g to TLS so that it is available from signal trampoline.
    	BL	runtime·save_g(SB)
    #endif
    
    	BL	runtime·_initcgo(SB)	// will clobber R0-R3
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:00:52 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  9. src/runtime/export_test.go

    		g0 := getg()
    		sp := getcallersp()
    		// The stack bounds for g0 stack is not always precise.
    		// Use an artificially small stack, to trigger a stack overflow
    		// without actually run out of the system stack (which may seg fault).
    		g0.stack.lo = sp - 4096 - stackSystem
    		g0.stackguard0 = g0.stack.lo + stackGuard
    		g0.stackguard1 = g0.stackguard0
    
    		stackOverflow(nil)
    	})
    }
    
    func stackOverflow(x *byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/walk/order.go

    	// than ordinary expressions. Even something like p.c
    	// has to be hoisted into a temporary, so that it cannot be
    	// reordered after the channel evaluation for a different
    	// case (if p were nil, then the timing of the fault would
    	// give this away).
    	case ir.OSELECT:
    		n := n.(*ir.SelectStmt)
    		t := o.markTemp()
    		for _, ncas := range n.Cases {
    			r := ncas.Comm
    			ir.SetPos(ncas)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
Back to top