Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 111 for set6 (0.1 sec)

  1. src/runtime/cgo/gcc_solaris_amd64.c

    #include <signal.h>
    #include <ucontext.h>
    #include "libcgo.h"
    #include "libcgo_unix.h"
    
    static void* threadentry(void*);
    static void (*setg_gcc)(void*);
    
    void
    x_cgo_init(G *g, void (*setg)(void*))
    {
    	ucontext_t ctx;
    
    	setg_gcc = setg;
    	if (getcontext(&ctx) != 0)
    		perror("runtime/cgo: getcontext failed");
    	g->stacklo = (uintptr_t)ctx.uc_stack.ss_sp;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 14:57:16 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. src/runtime/cgo/gcc_linux_arm64.c

    static void*
    threadentry(void *v)
    {
    	ThreadStart ts;
    
    	ts = *(ThreadStart*)v;
    	free(v);
    
    	crosscall1(ts.fn, setg_gcc, (void*)ts.g);
    	return nil;
    }
    
    void
    x_cgo_init(G *g, void (*setg)(void*), void **tlsg, void **tlsbase)
    {
    	uintptr *pbounds;
    
    	/* The memory sanitizer distributed with versions of clang
    	   before 3.8 has a bug: if you call mmap before malloc, mmap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 22:06:46 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. releasenotes/notes/set-user-agent.yaml

    mandarjog <******@****.***> 1623348628 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 10 18:10:28 UTC 2021
    - 226 bytes
    - Viewed (0)
  4. src/runtime/cgo/gcc_darwin_arm64.c

    			fprintf(stderr, "runtime/cgo: chdir(%s) failed\n", buf);
    		}
    	}
    }
    
    #endif // TARGET_OS_IPHONE
    
    void
    x_cgo_init(G *g, void (*setg)(void*))
    {
    	//fprintf(stderr, "x_cgo_init = %p\n", &x_cgo_init); // aid debugging in presence of ASLR
    	setg_gcc = setg;
    	_cgo_set_stacklo(g, NULL);
    
    #if TARGET_OS_IPHONE
    	darwin_arm_init_mach_exception_handler();
    	darwin_arm_init_thread_exception_port();
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 09 03:13:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/ipset/testing/fake_test.go

    	expectedSets := sets.NewString("foo", "bar")
    	if !expectedSets.Equal(sets.NewString(setList...)) {
    		t.Errorf("Unexpected sets mismatch, expected: %v, got: %v", expectedSets, setList)
    	}
    
    	// Destroy a given set
    	if err := fake.DestroySet(set.Name); err != nil {
    		t.Errorf("Unexpected error: %v", err)
    	}
    	if fake.Sets[set.Name] != nil {
    		t.Errorf("Unexpected set: %v", fake.Sets[set.Name])
    	}
    	if fake.Entries[set.Name] != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. src/runtime/tls_arm.s

    #endif
    	MOVW	$setg_gcc<>(SB), R1 	// arg 1: setg
    	MOVW	g, R0 			// arg 0: G
    	BL	(R4) // will clobber R0-R3
    nocgo:
    	RET
    
    // void setg_gcc(G*); set g called from gcc.
    TEXT setg_gcc<>(SB),NOSPLIT,$0
    	MOVW	R0, g
    	B		runtimeĀ·save_g(SB)
    
    #ifdef TLSG_IS_VARIABLE
    #ifdef GOOS_android
    // Use the free TLS_SLOT_APP slot #2 on Android Q.
    // Earlier androids are set up in gcc_android.c.
    DATA runtimeĀ·tls_g+0(SB)/4, $8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 20:38:07 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    				break SuffixLoop
    			}
    		}
    	}
    
    	if needSuffix {
    		switch inst.Op {
    		case CMPXCHG8B, FLDCW, FNSTCW, FNSTSW, LDMXCSR, LLDT, LMSW, LTR, PCLMULQDQ,
    			SETA, SETAE, SETB, SETBE, SETE, SETG, SETGE, SETL, SETLE, SETNE, SETNO, SETNP, SETNS, SETO, SETP, SETS,
    			SLDT, SMSW, STMXCSR, STR, VERR, VERW:
    			// For various reasons, libopcodes emits no suffix for these instructions.
    
    		case CRC32:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/analysis/tensor_array_side_effect_analysis.cc

    TensorArraySideEffectAnalysis::TensorArraySideEffectAnalysis(
        mlir::ModuleOp module) {
      for (auto func_op : module.getOps<mlir::func::FuncOp>()) {
        if (FunctionContainsOnlyNoSideEffectOpOrTensorArrayOp(func_op)) {
          set_.insert(func_op);
        }
      }
    }
    
    }  // namespace tfrt_compiler
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 16 01:49:07 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  9. src/runtime/cgo/gcc_arm.S

    	mov r4, r0
    	mov r5, r1
    	mov r0, r2
    
    	// Because the assembler might target an earlier revision of the ISA
    	// by default, we encode BLX as a .word.
    	.word 0xe12fff35 // blx r5 // setg(g)
    	.word 0xe12fff34 // blx r4 // fn()
    
    	pop {r4, r5, r6, r7, r8, r9, r10, r11, ip, pc}
    
    
    #ifdef __ELF__
    .section .note.GNU-stack,"",%progbits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 03:39:42 UTC 2023
    - 849 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-request-header-set.yaml

      rules:
        - matches:
            - path:
                type: PathPrefix
                value: /edit-a-request-header
          filters:
            - type: RequestHeaderModifier
              requestHeaderModifier:
                set:
                  - name: my-header-name
                    value: my-new-header-value
          backendRefs:
            - name: echo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 492 bytes
    - Viewed (0)
Back to top