Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for Suffix (0.21 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                            def suffix = parameters.suffix.map { "-\$it" }.get()
                            suffix += parameters.differentOutputFileNames.getOrElse(false) ? "-\$i" : ""
                            def periodIndex = input.name.lastIndexOf(".")
                            def outputName = input.name.substring(0, periodIndex) + suffix + input.name.substring(periodIndex)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                        ClassGeneratorSuffixRegistry.register(suffix);
                    }
                }
                generatedClasses = GENERATED_CLASSES_CACHES.get();
            } else {
                // TODO - the suffix should be a deterministic function of the known and enabled annotations
                // For now, just assign using a counter
                suffix = ClassGeneratorSuffixRegistry.assign("$Decorated");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    		expr = u.Expr
    	}
    	u = &Unary{Op: op, Expr: expr, Suffix: u.Suffix, SizeofType: u.SizeofType}
    	if r := fn(u); r != nil {
    		return r
    	}
    	return u
    }
    
    func (u *Unary) GoString() string {
    	return u.goString(0, "")
    }
    
    func (u *Unary) goString(indent int, field string) string {
    	var s string
    	if u.Suffix {
    		s = " Suffix: true"
    	}
    	if u.SizeofType {
    		s += " SizeofType: true"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    //	-gcflags '[pattern=]arg list'
    //		arguments to pass on each go tool compile invocation.
    //	-installsuffix suffix
    //		a suffix to use in the name of the package installation directory,
    //		in order to keep output separate from default builds.
    //		If using the -race flag, the install suffix is automatically set to race
    //		or, if set explicitly, has _race appended to it. Likewise for the -msan
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

        --project "${PROJECT}" \
        --filter="name ~ '$(get-replica-name-regexp)'" \
        --format "value(name)")
    
      suffix=""
      while echo "${instances}" | grep "${suffix}" &>/dev/null; do
        suffix="$(date | md5sum | head -c3)"
      done
      REPLICA_NAME="${MASTER_NAME}-${suffix}"
    }
    
    # Gets the instance templates in use by the cluster. It echos the template names
    # so that the function output can be used.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

    accessors.\n\nThe serialization format is:\n\n``` <quantity>        ::= <signedNumber><suffix>\n\n\t(Note that <suffix> may be empty, from the \"\" case in <decimalSI>.)\n\n<digit>           ::= 0 | 1 | ... | 9 <digits>          ::= <digit> | <digit><digits> <number>          ::= <digits> | <digits>.<digits> | <digits>. | .<digits> <sign>            ::= \"+\" | \"-\" <signedNumber>    ::= <number> | <sign><number> <suffix>          ::= <binarySI> | <decimalExponent> | <decimalSI> <binarySI>        ::=...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

    # 1. the specified file exists
    # 2. existing lines with the specified ${prefix} are removed
    # 3. a new line with the specified ${prefix}${suffix} is appended
    function append_or_replace_prefixed_line {
      local -r file="${1:-}"
      local -r prefix="${2:-}"
      local -r suffix="${3:-}"
      local -r dirname=$(dirname "${file}")
      local -r tmpfile=$(mktemp "${dirname}/filtered.XXXX")
    
      touch "${file}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

    accessors.\n\nThe serialization format is:\n\n``` <quantity>        ::= <signedNumber><suffix>\n\n\t(Note that <suffix> may be empty, from the \"\" case in <decimalSI>.)\n\n<digit>           ::= 0 | 1 | ... | 9 <digits>          ::= <digit> | <digit><digits> <number>          ::= <digits> | <digits>.<digits> | <digits>. | .<digits> <sign>            ::= \"+\" | \"-\" <signedNumber>    ::= <number> | <sign><number> <suffix>          ::= <binarySI> | <decimalExponent> | <decimalSI> <binarySI>        ::=...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/data.go

    	// the system linker segfault on darwin.
    	const relroPerm = 06
    	const fallbackPerm = 04
    	relroSecPerm := fallbackPerm
    	genrelrosecname := func(suffix string) string {
    		if suffix == "" {
    			return ".rodata"
    		}
    		return suffix
    	}
    	seg := segro
    
    	if ctxt.UseRelro() {
    		segrelro := &Segrelrodata
    		if ctxt.LinkMode == LinkExternal && !ctxt.IsAIX() && !ctxt.IsDarwin() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/load/pkg.go

    }
    
    func (e *importError) ImportPath() string {
    	return e.importPath
    }
    
    // An ImportStack is a stack of import paths, possibly with the suffix " (test)" appended.
    // The import path of a test package is the import path of the corresponding
    // non-test package with the suffix "_test" added.
    type ImportStack []string
    
    func (s *ImportStack) Push(p string) {
    	*s = append(*s, p)
    }
    
    func (s *ImportStack) Pop() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top