Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,119 for spice (0.08 sec)

  1. maven-core/src/test/projects/plugin-manager/project-with-inheritance/pom.xml

            <artifactId>plexus-jetty6</artifactId>
            <version>${plexusJetty6Version}</version>
            <scope>test</scope>
          </dependency>
          <dependency>
            <groupId>org.sonatype.spice</groupId>
            <artifactId>plexus-webdav</artifactId>
            <version>${plexusWebdavVersion}</version>
            <scope>test</scope>
          </dependency>
    
          <!--  Wagon -->
          <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Aug 03 09:29:10 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/org/apache/maven/lifecycle/pom.xml

            <artifactId>plexus-jetty6</artifactId>
            <version>${plexusJetty6Version}</version>
            <scope>test</scope>
          </dependency>
          <dependency>
            <groupId>org.sonatype.spice</groupId>
            <artifactId>plexus-webdav</artifactId>
            <version>${plexusWebdavVersion}</version>
            <scope>test</scope>
          </dependency>
    
          <!--  Wagon -->
          <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Sep 11 08:52:20 UTC 2021
    - 22.4K bytes
    - Viewed (0)
  3. maven-core/src/test/projects/lifecycle-executor/project-with-inheritance/pom.xml

            <artifactId>plexus-jetty6</artifactId>
            <version>${plexusJetty6Version}</version>
            <scope>test</scope>
          </dependency>
          <dependency>
            <groupId>org.sonatype.spice</groupId>
            <artifactId>plexus-webdav</artifactId>
            <version>${plexusWebdavVersion}</version>
            <scope>test</scope>
          </dependency>
    
          <!--  Wagon -->
          <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Aug 03 09:29:10 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  4. src/runtime/slice.go

    package runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"runtime/internal/math"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    type slice struct {
    	array unsafe.Pointer
    	len   int
    	cap   int
    }
    
    // A notInHeapSlice is a slice backed by runtime/internal/sys.NotInHeap memory.
    type notInHeapSlice struct {
    	array *notInHeap
    	len   int
    	cap   int
    }
    
    func panicmakeslicelen() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. samples/security/spire/spire-quickstart.yaml

      verbs: ["get", "patch"]
    
    ---
    # RoleBinding granting the spire-server-role to the SPIRE server
    # service account.
    kind: RoleBinding
    apiVersion: rbac.authorization.k8s.io/v1
    metadata:
      name: spire-server-role-binding
      namespace: spire
    subjects:
    - kind: ServiceAccount
      name: spire-server
      namespace: spire
    roleRef:
      kind: Role
      name: spire-server-role
      apiGroup: rbac.authorization.k8s.io
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  6. src/text/template/doc.go

    		x[1][2][3]. Each indexed item must be a map, slice, or array.
    	slice
    		slice returns the result of slicing its first argument by the
    		remaining arguments. Thus "slice x 1 2" is, in Go syntax, x[1:2],
    		while "slice x" is x[:], "slice x 1" is x[1:], and "slice x 1 2 3"
    		is x[1:2:3]. The first argument must be a string, slice, or array.
    	js
    		Returns the escaped JavaScript equivalent of the textual
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  7. src/fmt/format.go

    		prec = f.prec
    	}
    	// Format number, reserving space for leading + sign if needed.
    	num := strconv.AppendFloat(f.intbuf[:1], v, byte(verb), prec, size)
    	if num[1] == '-' || num[1] == '+' {
    		num = num[1:]
    	} else {
    		num[0] = '+'
    	}
    	// f.space means to add a leading space instead of a "+" sign unless
    	// the sign is explicitly asked for by f.plus.
    	if f.space && num[0] == '+' && !f.plus {
    		num[0] = ' '
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. src/runtime/arena.go

    	}
    	i := efaceOf(&sl)
    	typ := i._type
    	if typ.Kind_&abi.KindMask != abi.Pointer {
    		panic("slice result of non-ptr type")
    	}
    	typ = (*ptrtype)(unsafe.Pointer(typ)).Elem
    	if typ.Kind_&abi.KindMask != abi.Slice {
    		panic("slice of non-ptr-to-slice type")
    	}
    	typ = (*slicetype)(unsafe.Pointer(typ)).Elem
    	// t is now the element type of the slice we want to allocate.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  9. src/fmt/doc.go

    	%X	upper-case hexadecimal notation, e.g. -0X1.23ABCP+20
    
    String and slice of bytes (treated equivalently with these verbs):
    
    	%s	the uninterpreted bytes of the string or slice
    	%q	a double-quoted string safely escaped with Go syntax
    	%x	base 16, lower-case, two characters per byte
    	%X	base 16, upper-case, two characters per byte
    
    Slice:
    
    	%p	address of 0th element in base 16 notation, with leading 0x
    
    Pointer:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. src/encoding/xml/read.go

    			}
    			if finfo.xmlns != "" && finfo.xmlns != start.Name.Space {
    				e := "expected element <" + finfo.name + "> in name space " + finfo.xmlns + " but have "
    				if start.Name.Space == "" {
    					e += "no name space"
    				} else {
    					e += start.Name.Space
    				}
    				return UnmarshalError(e)
    			}
    			fv := finfo.value(sv, initNilPointers)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 22.4K bytes
    - Viewed (0)
Back to top