Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 49 of 49 for envMap (0.23 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/equality.go

    			if ret, err := strconv.ParseBool(avoidNoopTimestampUpdatesString); err == nil && !ret {
    				// leave avoidTimestampEqualities empty.
    				return
    			} else {
    				klog.Errorf("failed to parse envar KUBE_APISERVER_AVOID_NOOP_SSA_TIMESTAMP_UPDATES: %v", err)
    			}
    		}
    
    		var eqs = equality.Semantic.Copy()
    		err := eqs.AddFunc(
    			func(a, b metav1.ManagedFieldsEntry) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 28 14:56:34 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/utils/nms_utils.cc

      if (!use_regular_nms) {
        return func.emitError()
               << "use_regular_nms attribute is not set or not a bool";
      }
      fbb.Int("use_regular_nms", use_regular_nms.getValue());
    
      fbb.EndMap(start_map);
      fbb.Finish();
      custom_option_buffer.assign(fbb.GetBuffer().begin(), fbb.GetBuffer().end());
      return success();
    }
    
    LogicalResult ConvertSSDPostProcessFunc::AddIntAttr(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. src/runtime/rt0_linux_ppc64le.s

    	// sequence of string pointers followed by a NULL, and auxv.
    	// The TLS pointer should be initialized to 0.
    	//
    	// In an ELFv2 compliant dynamically linked binary, R3 contains argc,
    	// R4 contains argv, R5 contains envp, R6 contains auxv, and R13
    	// contains the TLS pointer.
    	//
    	// When loading via glibc, the first doubleword on the stack points
    	// to NULL a value. (that is *(uintptr)(R1) == 0). This is used to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/tasks/CppUnexportMainSymbolIntegrationTest.groovy

        def "can relocate Windows specific _wmain symbol"() {
            makeSingleProject()
            file("src/main/cpp/main.cpp") << """
                #include <iostream>
    
                int wmain(int argc, wchar_t *argv[], wchar_t *envp[] ) {
                    std::cout << "hello world!" << std::endl;
                    return 0;
                }
            """
    
            when:
            succeeds("unexport")
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. src/syscall/syscall_openbsd_libc.go

    //sys	getcwd(buf []byte) (n int, err error)
    //sys	sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error)
    //sysnb fork() (pid int, err error)
    //sysnb execve(path *byte, argv **byte, envp **byte) (err error)
    //sysnb exit(res int) (err error)
    //sys   ptrace(request int, pid int, addr uintptr, data uintptr) (err error)
    //sysnb getentropy(p []byte) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. tests/integration/pilot/multicluster_test.go

    			template := deps.Items[0].Spec.Template.Spec
    			for _, container := range template.Containers {
    				if container.Name != "discovery" {
    					continue
    				}
    				container.Env = append(container.Env, corev1.EnvVar{
    					Name:  "PILOT_REMOTE_CLUSTER_TIMEOUT",
    					Value: "15s",
    				})
    			}
    			_, err = pods.Create(context.TODO(), &corev1.Pod{
    				ObjectMeta: podMeta,
    				Spec:       deps.Items[0].Spec.Template.Spec,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. src/runtime/os_dragonfly.go

    	setThreadCPUProfilerHz(hz)
    }
    
    //go:nosplit
    func validSIGPROF(mp *m, c *sigctxt) bool {
    	return true
    }
    
    func sysargs(argc int32, argv **byte) {
    	n := argc + 1
    
    	// skip over argv, envp to get to auxv
    	for argv_index(argv, n) != nil {
    		n++
    	}
    
    	// skip NULL separator
    	n++
    
    	auxvp := (*[1 << 28]uintptr)(add(unsafe.Pointer(argv), uintptr(n)*goarch.PtrSize))
    	pairs := sysauxv(auxvp[:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  8. src/runtime/syscall_solaris.go

    func syscall_dup2(oldfd, newfd uintptr) (val, err uintptr) {
    	return syscall_fcntl(oldfd, _F_DUP2FD, newfd)
    }
    
    //go:nosplit
    //go:linkname syscall_execve
    //go:cgo_unsafe_args
    func syscall_execve(path, argv, envp uintptr) (err uintptr) {
    	call := libcall{
    		fn:   uintptr(unsafe.Pointer(&libc_execve)),
    		n:    3,
    		args: uintptr(unsafe.Pointer(&path)),
    	}
    	asmcgocall(unsafe.Pointer(&asmsysvicall6x), unsafe.Pointer(&call))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  9. src/syscall/exec_libc.go

    func chdir(path uintptr) (err Errno)
    func chroot1(path uintptr) (err Errno)
    func closeFD(fd uintptr) (err Errno)
    func dup2child(old uintptr, new uintptr) (val uintptr, err Errno)
    func execve(path uintptr, argv uintptr, envp uintptr) (err Errno)
    func exit(code uintptr)
    func fcntl1(fd uintptr, cmd uintptr, arg uintptr) (val uintptr, err Errno)
    func forkx(flags uintptr) (pid uintptr, err Errno)
    func getpid() (pid uintptr, err Errno)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.2K bytes
    - Viewed (0)
Back to top