Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,258 for covered (0.14 sec)

  1. src/cmd/covdata/dump.go

    	newmode := mfr.CounterMode()
    	if err := d.cm.SetModeAndGranularity(mdf, newmode, newgran); err != nil {
    		fatal("%v", err)
    	}
    	if d.cmd == debugDumpMode {
    		fmt.Printf("Cover mode: %s\n", newmode.String())
    		fmt.Printf("Cover granularity: %s\n", newgran.String())
    	}
    	if d.format == nil {
    		d.format = cformat.NewFormatter(mfr.CounterMode())
    	}
    
    	// To provide an additional layer of checking when reading counter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:57 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/policy/v1beta1/types.go

    }
    
    const (
    	// DisruptionAllowedCondition is a condition set by the disruption controller
    	// that signal whether any of the pods covered by the PDB can be disrupted.
    	DisruptionAllowedCondition = "DisruptionAllowed"
    
    	// SyncFailedReason is set on the DisruptionAllowed condition if reconcile
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/troubleshooting.adoc

    [[sec:troubleshooting_dependency_resolution]]
    == Debugging dependency resolution
    
    Common dependency resolution issues, such as resolving version conflicts, are covered in <<viewing_debugging_dependencies.adoc#sec:debugging-build-scans,Troubleshooting Dependency Resolution>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:22:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. pkg/volume/util/nestedpendingoperations/nestedpendingoperations_test.go

    // Covered cases:
    // FIRST OP    | SECOND OP   | RESULT
    // None        | None        | Positive
    // None        | Volume      | Positive
    // None        | Volume Pod  | Positive
    // None        | Volume Node | Positive
    // Volume      | None        | Positive
    // Volume      | Volume      | Negative (covered in Test_NestedPendingOperations_Negative_SecondOpBeforeFirstCompletes above)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 01:29:17 UTC 2022
    - 36.1K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/AbstractStringBasedModelInterpolator.java

            // sure interpolation of the directories below uses translated paths.
            // Afterward, we'll double back and translate any paths that weren't covered during interpolation via the
            // code below...
            translatedPrefixes.add("build.directory");
            translatedPrefixes.add("build.outputDirectory");
            translatedPrefixes.add("build.testOutputDirectory");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. maven-model-builder/src/test/java/org/apache/maven/model/interpolation/AbstractModelInterpolatorTest.java

            cal.setTimeZone(MavenBuildTimestamp.DEFAULT_BUILD_TIME_ZONE);
            cal.set(Calendar.HOUR, 12);
            cal.set(Calendar.AM_PM, Calendar.AM);
    
            // just to make sure all the bases are covered...
            cal.set(Calendar.HOUR_OF_DAY, 0);
            cal.set(Calendar.MINUTE, 16);
            cal.set(Calendar.SECOND, 0);
            cal.set(Calendar.YEAR, 1976);
            cal.set(Calendar.MONTH, Calendar.NOVEMBER);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  7. docs/en/docs/contributing.md

    This helps to make sure that:
    
    * The documentation is up-to-date.
    * The documentation examples can be run as is.
    * Most of the features are covered by the documentation, ensured by test coverage.
    
    #### Apps and docs at the same time
    
    If you run the examples with, e.g.:
    
    <div class="termy">
    
    ```console
    $ uvicorn tutorial001:app --reload
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 17:42:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/attributes/DefaultImmutableAttributes.java

            // - I am desugared and the other attribute is strongly typed, usually the case if I am sourced from published metadata and the other from the local build
            S converted = coerce(otherAttributeType);
            if (converted != null) {
                return converted;
            } else if (otherAttributeType.isAssignableFrom(String.class)) {
                // Attempt to desugar myself
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 12:57:50 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    _You don't have to migrate all at once!_ Both Groovy and Kotlin-based build scripts can `apply` other scripts of either language. You can find inspiration for any Gradle features not covered in the link:https://github.com/gradle/kotlin-dsl/tree/master/samples[Kotlin DSL samples].
    
    
    == Prepare your Groovy scripts
    
    Some simple Kotlin and Groovy language differences can make converting scripts tedious:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  10. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/api/standalone/StandaloneAnalysisAPISessionBuilder.kt

                    ktModule to ktModule.sourceRoots.filterIsInstance<PsiFile>()
                }.toMap()
            }
        }
    }
    
    /**
     * Registers services which are not covered by [FirStandaloneServiceRegistrar]. In general, this concerns services which need to be
     * registered for production Standalone and Standalone test usages, but *not* for IDE mode Analysis API tests, which rely on
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top