Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 66 for pdb (0.05 sec)

  1. src/main/java/jcifs/smb1/util/mime.map

    audio/x-mpeg-3                 mp3              # MP3 Sound File
    audio/mpeg                     mp2 mpa mpg mpga # MP2 Sound File
    audio/x-mpeg                   mp2              # MP2 Sound File
    chemical/x-pdb                 pdb              # PDB Chemistry Model File
    chemical/x-xyz                 xyz              # XYZ Chemistry Model File
    drawing/x-dwf                  dwf              # AutoCAD
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 5.9K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/NativeBinaryFixture.groovy

            if (toolChain.visualCpp) {
                getSymbolFile().assertDoesNotExist()
            }
        }
    
        private TestFile getSymbolFile() {
            if (toolChain?.visualCpp) {
                return file.withExtension(".pdb")
            } else {
                return strippedRuntimeFile.withExtension(SymbolExtractorOsConfig.current().extension)
            }
        }
    
        boolean assertExistsAndDelete() {
            assertExists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  3. api/discovery/apis__policy__v1.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 746 bytes
    - Viewed (0)
  4. releasenotes/notes/44481.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
    - 44469
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 15:16:23 UTC 2023
    - 169 bytes
    - Viewed (0)
  5. releasenotes/notes/31910.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
    - 31910
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 14 00:22:23 UTC 2021
    - 166 bytes
    - Viewed (0)
  6. pkg/apis/policy/validation/validation.go

    }
    
    // ValidatePodDisruptionBudget validates a PodDisruptionBudget and returns an ErrorList
    // with any errors.
    func ValidatePodDisruptionBudget(pdb *policy.PodDisruptionBudget, opts PodDisruptionBudgetValidationOptions) field.ErrorList {
    	allErrs := ValidatePodDisruptionBudgetSpec(pdb.Spec, opts, field.NewPath("spec"))
    	return allErrs
    }
    
    // ValidatePodDisruptionBudgetSpec validates a PodDisruptionBudgetSpec and returns an ErrorList
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  7. pkg/registry/policy/poddisruptionbudget/strategy.go

    	return nil
    }
    
    func hasInvalidLabelValueInLabelSelector(pdb *policy.PodDisruptionBudget) bool {
    	if pdb.Spec.Selector != nil {
    		labelSelectorValidationOptions := metav1validation.LabelSelectorValidationOptions{AllowInvalidLabelValueInSelector: false}
    		return len(metav1validation.ValidateLabelSelector(pdb.Spec.Selector, labelSelectorValidationOptions, nil)) > 0
    	}
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 22:25:42 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  8. pkg/apis/policy/helper.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package policy
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    const (
    	PDBV1beta1Label = "pdb.kubernetes.io/deprecated-v1beta1-empty-selector-match"
    )
    
    var (
    	NonV1beta1MatchAllSelector  = &metav1.LabelSelector{}
    	NonV1beta1MatchNoneSelector = &metav1.LabelSelector{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 09 15:29:11 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/policy/v1beta1/generated.proto

      // disrupted (status.currentHealthy is at least equal to status.desiredHealthy).
      // Healthy pods will be subject to the PDB for eviction.
      //
      // AlwaysAllow policy means that all running pods (status.phase="Running"),
      // but not yet healthy are considered disrupted and can be evicted regardless
      // of whether the criteria in a PDB is met. This means perspective running
      // pods of a disrupted application might not get a chance to become healthy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/test/groovy/org/gradle/language/plugins/NativeBasePluginTest.groovy

            def toolProvider = Stub(PlatformToolProvider)
            toolProvider.getSharedLibraryName(_) >> { String p -> p + ".dll" }
            toolProvider.getLibrarySymbolFileName(_) >> { String p -> p + ".dll.pdb" }
            toolProvider.requiresDebugBinaryStripping() >> true
    
            def runtimeFileProp = project.objects.fileProperty()
            def linkTaskProp = project.objects.property(LinkSharedLibrary)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
Back to top