Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 80 for processDest (0.21 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    		}
    	}
    
    	// clear not present fields
    	for k := range original {
    		if _, found := m[k]; !found {
    			delete(original, k)
    		}
    	}
    	return nil
    }
    
    // mergePatchIntoOriginal processes $setElementOrder list.
    // When not merging the directive, it will make sure $setElementOrder list exist only in original.
    // When merging the directive, it will try to find the $setElementOrder list and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  2. src/go/build/build.go

    // command to be installed (not just a library).
    // Packages named "main" are treated as commands.
    func (p *Package) IsCommand() bool {
    	return p.Name == "main"
    }
    
    // ImportDir is like [Import] but processes the Go package found in
    // the named directory.
    func (ctxt *Context) ImportDir(dir string, mode ImportMode) (*Package, error) {
    	return ctxt.Import(".", dir, mode)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/dwarf.go

    	ds := loader.Sym(die.Sym.(dwSym))
    	d.rtmap[ds] = gotype
    
    	// Map from type to def sym
    	d.tdmap[gotype] = ds
    
    	return die
    }
    
    // dwarfVisitFunction takes a function (text) symbol and processes the
    // subprogram DIE for the function and picks up any other DIEs
    // (absfns, types) that it references.
    func (d *dwctxt) dwarfVisitFunction(fnSym loader.Sym, unit *sym.CompilationUnit) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	//  - VMADDR_CID_HYPERVISOR: refers to the hypervisor process.
    	//  - VMADDR_CID_LOCAL: refers to local communication (loopback).
    	//  - VMADDR_CID_HOST: refers to other processes on the host.
    	CID   uint32
    	Port  uint32
    	Flags uint8
    	raw   RawSockaddrVM
    }
    
    func (sa *SockaddrVM) sockaddr() (unsafe.Pointer, _Socklen, error) {
    	sa.raw.Family = AF_VSOCK
    	sa.raw.Port = sa.Port
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller.go

    	if err != nil {
    		utilruntime.HandleError(fmt.Errorf("couldn't get key for object %+v: %v", obj, err))
    		return
    	}
    	jm.orphanQueue.Add(key)
    }
    
    // worker runs a worker thread that just dequeues items, processes them, and marks them done.
    // It enforces that the syncHandler is never invoked concurrently with the same key.
    func (jm *Controller) worker(ctx context.Context) {
    	for jm.processNextWorkItem(ctx) {
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    // If this bit is 1, the subsequent members are valid; otherwise they should be ignored.
    func (b PSAPI_WORKING_SET_EX_BLOCK) Valid() bool {
    	return (b & 1) == 1
    }
    
    // ShareCount is the number of processes that share this page. The maximum value of this member is 7.
    func (b PSAPI_WORKING_SET_EX_BLOCK) ShareCount() uint64 {
    	return b.intField(1, 3)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    Custom types that don’t conform to the other two categories but have their own properties that are inputs or outputs. In effect, the task inputs or outputs are nested inside these custom types.
    
    As an example, imagine you have a task that processes templates of varying types, such as FreeMarker, Velocity, Moustache, etc. It takes template source files and combines them with some model data to generate populated versions of the template files.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  8. src/testing/testing.go

    	}
    	t.isParallel = true
    	if t.parent.barrier == nil {
    		// T.Parallel has no effect when fuzzing.
    		// Multiple processes may run in parallel, but only one input can run at a
    		// time per process so we can attribute crashes to specific inputs.
    		return
    	}
    
    	// We don't want to include the time we spend waiting for serial tests
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. src/os/os_test.go

    			// Lock half the goroutines in their own operating system
    			// thread to exercise more scheduler possibilities.
    			if i%2 == 1 {
    				// On Plan 9, after calling LockOSThread, the goroutines
    				// run on different processes which don't share the working
    				// directory. This used to be an issue because Go expects
    				// the working directory to be program-wide.
    				// See issue 9428.
    				runtime.LockOSThread()
    			}
    			select {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  10. src/cmd/cgo/gcc.go

    	if strings.HasPrefix(s, "enum_") {
    		return "enum " + s[len("enum_"):]
    	}
    	if strings.HasPrefix(s, "sizeof_") {
    		return "sizeof(" + cname(s[len("sizeof_"):]) + ")"
    	}
    	return s
    }
    
    // ProcessCgoDirectives processes the import C preamble:
    //  1. discards all #cgo CFLAGS, LDFLAGS, nocallback and noescape directives,
    //     so they don't make their way into _cgo_export.h.
    //  2. parse the nocallback and noescape directives.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top