Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 9,783 for fromMB (0.14 sec)

  1. maven-core/src/test/resources/projects/child-which-inherits-from-super-model.xml

    under the License.
    -->
    
    <model>
      <groupId>foo</groupId>
      <artifactId>bar</artifactId>
      <name>Babar</name>
      <version>4.5</version>
    
      <!-- Build element should be inherited from the super model -->
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Nov 23 12:04:30 UTC 2014
    - 954 bytes
    - Viewed (0)
  2. operator/pkg/compare/compare.go

    	for name, obj := range iom {
    		isRenamed := false
    		for fromPat, toPat := range rnm {
    			fromRe, err := buildResourceRegexp(strings.TrimSpace(fromPat))
    			if err != nil {
    				return nil, fmt.Errorf("error building the regexp from "+
    					"rename-from string: %v, error: %v", fromPat, err)
    			}
    			if fromRe.MatchString(name) {
    				fromList := strings.Split(name, ":")
    				if len(fromList) != 3 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-enforcedConstraintsFromBOM/tests/forced-platform-from-bom.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 34 bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/inittask.go

    		}
    	}
    	if len(roots) == 0 {
    		// Nothing to do
    		return 0
    	}
    
    	// Edges record dependencies between packages.
    	// {from,to} is in edges if from's package imports to's package.
    	// This list is used to implement reverse edge lookups.
    	type edge struct {
    		from, to loader.Sym
    	}
    	var edges []edge
    
    	// List of packages that are ready to schedule. We use a lexicographic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-constraintsFromBOM/tests/importing-dependency-constraints-from-bom.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 34 bytes
    - Viewed (0)
  6. src/syscall/zsysnum_openbsd_amd64.go

    	SYS_OPENAT         = 321 // { int sys_openat(int fd, const char *path, int flags, \
    	SYS_READLINKAT     = 322 // { ssize_t sys_readlinkat(int fd, const char *path, \
    	SYS_RENAMEAT       = 323 // { int sys_renameat(int fromfd, const char *from, \
    	SYS_SYMLINKAT      = 324 // { int sys_symlinkat(const char *path, int fd, \
    	SYS_UNLINKAT       = 325 // { int sys_unlinkat(int fd, const char *path, \
    	SYS___SET_TCB      = 329 // { void sys___set_tcb(void *tcb); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 14.2K bytes
    - Viewed (0)
  7. src/syscall/zsysnum_openbsd_386.go

    	SYS_OPENAT         = 321 // { int sys_openat(int fd, const char *path, int flags, \
    	SYS_READLINKAT     = 322 // { ssize_t sys_readlinkat(int fd, const char *path, \
    	SYS_RENAMEAT       = 323 // { int sys_renameat(int fromfd, const char *from, \
    	SYS_SYMLINKAT      = 324 // { int sys_symlinkat(const char *path, int fd, \
    	SYS_UNLINKAT       = 325 // { int sys_unlinkat(int fd, const char *path, \
    	SYS___SET_TCB      = 329 // { void sys___set_tcb(void *tcb); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 14.2K bytes
    - Viewed (0)
  8. src/syscall/zsysnum_openbsd_arm.go

    	SYS_OPENAT         = 321 // { int sys_openat(int fd, const char *path, int flags, \
    	SYS_READLINKAT     = 322 // { ssize_t sys_readlinkat(int fd, const char *path, \
    	SYS_RENAMEAT       = 323 // { int sys_renameat(int fromfd, const char *from, \
    	SYS_SYMLINKAT      = 324 // { int sys_symlinkat(const char *path, int fd, \
    	SYS_UNLINKAT       = 325 // { int sys_unlinkat(int fd, const char *path, \
    	SYS___SET_TCB      = 329 // { void sys___set_tcb(void *tcb); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 14.5K bytes
    - Viewed (0)
  9. src/internal/syscall/windows/registry/value.go

    	if len(p) == 0 {
    		return nil, typ, nil
    	}
    	if p[len(p)-1] == 0 {
    		p = p[:len(p)-1] // remove terminating null
    	}
    	val = make([]string, 0, 5)
    	from := 0
    	for i, c := range p {
    		if c == 0 {
    			val = append(val, syscall.UTF16ToString(p[from:i]))
    			from = i + 1
    		}
    	}
    	return val, typ, nil
    }
    
    // GetIntegerValue retrieves the integer value for the specified
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 11K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/x86/obj6.go

    	p1.As = mov
    	p1.From.Type = obj.TYPE_MEM
    	p1.From.Sym = source.Sym
    	p1.From.Name = obj.NAME_GOTREF
    	p1.To.Type = obj.TYPE_REG
    	p1.To.Reg = reg
    
    	p2.As = p.As
    	p2.From = p.From
    	p2.To = p.To
    	if from3 := p.GetFrom3(); from3 != nil {
    		p2.AddRestSource(*from3)
    	}
    	if p.From.Name == obj.NAME_EXTERN {
    		p2.From.Reg = reg
    		p2.From.Name = obj.NAME_NONE
    		p2.From.Sym = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
Back to top