Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 66 for pdb (0.12 sec)

  1. 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)
  2. pkg/scheduler/framework/preemption/preemption.go

    // along with the list of victims that should be evicted for the preemptor to fit the node.
    type Candidate interface {
    	// Victims wraps a list of to-be-preempted Pods and the number of PDB violation.
    	Victims() *extenderv1.Victims
    	// Name returns the target node name where the preemptor gets nominated to run.
    	Name() string
    }
    
    type candidate struct {
    	victims *extenderv1.Victims
    	name    string
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. operator/pkg/object/objects_test.go

                      kind: PodDisruptionBudget
                      metadata:
                        name: zk-pdb
                      spec:
                        minAvailable: 2`),
    			o2: getK8sObject(`
                      apiVersion: policy/v1
                      kind: PodDisruptionBudget
                      metadata:
                        name: zk-pdb
                      spec:
                        minAvailable: 2`),
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 07:16:46 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    					// because we're okay with being a little over (in production, if a
    					// non-PDB violating candidate isn't found close to the offset, the
    					// number of additional candidates returned will be at most
    					// approximately equal to the parallelism in dryRunPreemption).
    					// cycle=0 => offset=4 => node5 (yes, pdb), node1 (yes, pdb), node2 (no, pdb), node3 (yes)
    					candidate{
    						name: "node1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  7. operator/cmd/mesh/manifest-generate_test.go

    		service := mustFindObject(t, objs, cname, name.ServiceStr)
    		pdb := mustFindObject(t, objs, cname, name.PDBStr)
    		hpa := mustFindObject(t, objs, cname, name.HPAStr)
    		podLabels := mustGetLabels(t, deployment, "spec.template.metadata.labels")
    		// Check all selectors align
    		mustSelect(t, mustGetLabels(t, pdb, "spec.selector.matchLabels"), podLabels)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppIncrementalBuildStaleOutputsIntegrationTest.groovy

            }
            return result
        }
    
        def debugFileFor(File sourceFile, String intermediateFilesDir = "build/obj/main/debug") {
            return intermediateFileFor(sourceFile, intermediateFilesDir, ".obj.pdb")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/preemption/preemption_test.go

    		name               string
    		nodes              []*v1.Node
    		testPods           []*v1.Pod
    		initPods           []*v1.Pod
    		numViolatingVictim int
    		expected           [][]Candidate
    	}{
    		{
    			name: "no pdb violation",
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node1").Capacity(veryLargeRes).Obj(),
    				st.MakeNode().Name("node2").Capacity(veryLargeRes).Obj(),
    			},
    			testPods: []*v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  10. pkg/scheduler/apis/config/types_pluginargs.go

    	// preemption is given by the formula:
    	// numCandidates = max(numNodes * minCandidateNodesPercentage, minCandidateNodesAbsolute)
    	// We say "likely" because there are other factors such as PDB violations
    	// that play a role in the number of candidates shortlisted. Must be at least
    	// 0 nodes. Defaults to 100 nodes if unspecified.
    	MinCandidateNodesAbsolute int32
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 13 23:15:53 UTC 2023
    - 8.4K bytes
    - Viewed (0)
Back to top