Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 5,004 for forPath (0.12 sec)

  1. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/jsonpath_flags_test.go

    		expectNoMatch      bool
    	}{
    		{
    			name:           "valid output format also containing the jsonpath argument succeeds",
    			outputFormat:   "jsonpath={ .metadata.name }",
    			expectedOutput: "foo",
    		},
    		{
    			name:          "valid output format and no --template argument results in an error",
    			outputFormat:  "jsonpath",
    			expectedError: "template format specified but no template given",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 09:47:52 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/kube_template_flags.go

    // handling --template printing.
    // Returns false if the specified outputFormat does not match a supported format.
    // Supported Format types can be found in pkg/printers/printers.go
    func (f *KubeTemplatePrintFlags) ToPrinter(outputFormat string) (printers.ResourcePrinter, error) {
    	if f == nil {
    		return nil, NoCompatiblePrinterError{}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 13 10:28:09 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/GenerateVersionCatalogAccessors.kt

        }.forEach {
            appendReproducibleNewLine("import ${it.sourceName}")
        }
    
        fun appendCatalogExtension(extSpec: ExtensionSpec, receiverInternalType: KClass<*>, internalMethodName: String) {
            write("\n\n")
            appendReproducibleNewLine(
                format("""
                    /**
                     * The `${extSpec.name}` version catalog.
                     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/SpliteratorTester.java

        NO_SPLIT_FOR_EACH_REMAINING {
          @Override
          <E extends @Nullable Object> void forEach(
              GeneralSpliterator<E> spliterator, Consumer<? super E> consumer) {
            spliterator.forEachRemaining(consumer);
          }
        },
        NO_SPLIT_TRY_ADVANCE {
          @Override
          <E extends @Nullable Object> void forEach(
              GeneralSpliterator<E> spliterator, Consumer<? super E> consumer) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 18:19:31 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/GeneratePluginSpecBuilderAccessors.kt

        accessors: List<PluginDependencySpecAccessor>,
        format: AccessorFormat
    ) {
    
        appendReproducibleNewLine(
            """
            import ${PluginDependenciesSpec::class.qualifiedName}
            import ${PluginDependencySpec::class.qualifiedName}
            """.trimIndent()
        )
    
        defaultPackageTypesIn(accessors).forEach {
            appendReproducibleNewLine("import $it")
        }
    
        accessors.runEach {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/output/output.go

    	cmd.Flags().StringVarP(pf.OutputFormat, "experimental-output", "", *pf.OutputFormat, fmt.Sprintf("Output format. One of: %s.", strings.Join(pf.AllowedFormats(), "|")))
    	_ = cmd.Flags().MarkDeprecated("experimental-output", "please use --output instead.")
    }
    
    // WithDefaultOutput sets a default output format if one is not provided through a flag value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 08:22:45 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. cmd/erasure-sets.go

    			}
    		}
    
    		// Save new formats `format.json` on unformatted disks.
    		for index, format := range tmpNewFormats {
    			if storageDisks[index] == nil || format == nil {
    				continue
    			}
    			if err := saveFormatErasure(storageDisks[index], format, formatOpID); err != nil {
    				healingLogIf(ctx, fmt.Errorf("Drive %s failed to write updated 'format.json': %v", storageDisks[index], err))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  8. internal/bucket/replication/error.go

    // parsing.
    type Error struct {
    	err error
    }
    
    // Errorf - formats according to a format specifier and returns
    // the string as a value that satisfies error of type tagging.Error
    func Errorf(format string, a ...interface{}) error {
    	return Error{err: fmt.Errorf(format, a...)}
    }
    
    // Unwrap the internal error.
    func (e Error) Unwrap() error { return e.err }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/idea/model/IdeaLanguageLevelTest.groovy

     */
    package org.gradle.plugins.ide.idea.model
    
    import org.gradle.api.JavaVersion
    import spock.lang.Specification
    
    class IdeaLanguageLevelTest extends Specification {
    
        def "formats language level in IDEA fancy format"() {
            expect:
            new IdeaLanguageLevel(JavaVersion.VERSION_1_3).level == "JDK_1_3"
            new IdeaLanguageLevel(JavaVersion.VERSION_1_4).level == "JDK_1_4"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. internal/bucket/lifecycle/error.go

    // parsing.
    type Error struct {
    	err error
    }
    
    // Errorf - formats according to a format specifier and returns
    // the string as a value that satisfies error of type tagging.Error
    func Errorf(format string, a ...interface{}) error {
    	return Error{err: fmt.Errorf(format, a...)}
    }
    
    // Unwrap the internal error.
    func (e Error) Unwrap() error { return e.err }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 1.3K bytes
    - Viewed (0)
Back to top