Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 66 for pdb1 (0.09 sec)

  1. 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)
  2. 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 (1)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/volume/util/fsquota/quota_linux_test.go

    tmpfs /tmp tmpfs rw,nosuid,nodev 0 0
    /dev/sda1 /boot ext4 rw,relatime 0 0
    /dev/mapper/fedora-root / ext4 rw,noatime 0 0
    /dev/mapper/fedora-home /home ext4 rw,noatime 0 0
    /dev/sdb1 /virt xfs rw,noatime,attr2,inode64,usrquota,prjquota 0 0
    `
    
    func dummyFakeMount1() mount.Interface {
    	return mount.NewFakeMounter(
    		[]mount.MountPoint{
    			{
    				Device: "tmpfs",
    				Path:   "/tmp",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  8. 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)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppPlatformToolProvider.java

        public String getLibrarySymbolFileName(String libraryPath) {
            return withExtension(getSharedLibraryName(libraryPath), ".pdb");
        }
    
        @Override
        public String getExecutableSymbolFileName(String executablePath) {
            return withExtension(getExecutableName(executablePath), ".pdb");
        }
    
        @Override
        public VisualCppMetadata getCompilerMetadata(ToolType toolType) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  10. pkg/registry/policy/poddisruptionbudget/storage/storage.go

    	return &REST{store}, &StatusREST{store: &statusStore}, nil
    }
    
    // ShortNames implements the ShortNamesProvider interface. Returns a list of short names for a resource.
    func (r *REST) ShortNames() []string {
    	return []string{"pdb"}
    }
    
    // StatusREST implements the REST endpoint for changing the status of an podDisruptionBudget.
    type StatusREST struct {
    	store *genericregistry.Store
    }
    
    // New creates a new PodDisruptionBudget object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 4.2K bytes
    - Viewed (0)
Back to top