Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for pdb1 (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
Back to top