Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 51 for pdb1 (0.04 sec)

  1. staging/src/k8s.io/api/policy/v1beta1/types_swagger_doc_generated.go

    least equal to status.desiredHealthy). Healthy pods will be subject to the PDB for eviction.\n\nAlwaysAllow 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. Healthy pods will be subject to the PDB for eviction.\n\nAdditional policies may be added in the future. Clients...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/policy/v1/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
    - 8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. gradle/verification-keyring.keys

    pr102COJPcKP4byUfntOdV8CDrbHX3+QceyN01e/SJhyYN0XarZFpgMdUgvhLI5x
    avrEs5H/wsK6o4KiPoSb7xC0kYmnHUV/TZDi+1DV2ZT0twRH87AjIvW3EmNxsXin
    nWQ0qeWfIn18tNWzAsFV0hKp3cYYpd3+wGeZD8nnm7jau1sirDZxD2m/f/7lgGR9
    pdB1/sJMlTp3uk1HLM6ogVlYU3fYgcjasEoGqe68P8AAw6l/29y4oTeAJnGQh/DS
    ydm5AQ0ET39ECwEIAOvByyJj7wUj5zLY1B3MxPoHHLFVsyxLI1WEgXDlItY+uykB
    20z3BwKs2CZdfbeBQDf8lNaDo7rv+BilZ4tu8vDRkmr82OXpU2dtpalKoKk+g46D
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 525.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. pkg/scheduler/testing/framework/fake_extender.go

    		// does not fit
    		return nil, 0, false, nil
    	} else {
    		// internal errors
    		return nil, 0, false, status.AsError()
    	}
    
    	var victims []*v1.Pod
    
    	// TODO(harry): handle PDBs in the future.
    	numViolatingVictim := 0
    
    	reprievePod := func(p *v1.Pod) bool {
    		addPod(p)
    		status := f.runPredicate(pod, nodeInfoCopy)
    		if !status.IsSuccess() {
    			if err := removePod(p); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppNativeCompiler.java

            List<String> args = new ArrayList<String>();
            if (spec.isDebuggable()) {
                args.add("/Fd" + new File(outputFile.getParentFile(), outputFile.getName() + ".pdb"));
            }
            // MSVC doesn't allow a space between Fo and the file name
            args.add("/Fo" + outputFile.getAbsolutePath());
            return args;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. utils/utils_test.go

    import (
    	"database/sql"
    	"database/sql/driver"
    	"errors"
    	"math"
    	"strings"
    	"testing"
    	"time"
    )
    
    func TestIsValidDBNameChar(t *testing.T) {
    	for _, db := range []string{"db", "dbName", "db_name", "db1", "1dbname", "db$name"} {
    		if fields := strings.FieldsFunc(db, IsValidDBNameChar); len(fields) != 1 {
    			t.Fatalf("failed to parse db name %v", db)
    		}
    	}
    }
    
    func TestCheckTruth(t *testing.T) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Feb 19 03:42:25 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top