Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for baseData (0.37 sec)

  1. helm/minio/templates/configmap.yaml

        heritage: {{ .Release.Service }}
    data:
      initialize: |-
        {{- include (print $.Template.BasePath "/_helper_create_bucket.txt") . | nindent 4 }}
      add-user: |-
        {{- include (print $.Template.BasePath "/_helper_create_user.txt") . | nindent 4 }}
      add-policy: |-
        {{- include (print $.Template.BasePath "/_helper_create_policy.txt") . | nindent 4 }}
      {{- range $idx, $policy := .Values.policies }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 17 06:04:15 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/ide/visualstudio/fixtures/ProjectFile.groovy

            assert sourceFiles == ['build.gradle'] + sourceFiles(component.sourceFiles, basePath)
            assert headerFiles == sourceFiles(component.headerFiles, basePath)
        }
    
        void assertHasComponentSources(CppSourceElement component, String basePath) {
            assert sourceFiles == ['build.gradle'] + sourceFiles(component.sources.files, basePath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/ArchitectureDescriptorBuilder.java

        }
    
        File getBinPath(File basePath) {
            return new File(basePath, binPath);
        }
    
        File getLibPath(File basePath) {
            return new File(basePath, libPath);
        }
    
        File getCompilerPath(File basePath) {
            return new File(getBinPath(basePath), COMPILER_FILENAME);
        }
    
        File getCrossCompilePath(File basePath) {
            return null;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/archive/JarTestFixture.groovy

        }
    
        def assertContainsVersioned(int version, String basePath) {
            assertContainsFile(toVersionedPath(version, basePath))
            this
        }
    
        def assertNotContainsVersioned(int version, String basePath) {
            assertNotContainsFile(toVersionedPath(version, basePath))
        }
    
        def assertVersionedContent(int version, String basePath, String content) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 14:13:17 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. platforms/jvm/language-jvm/src/testFixtures/groovy/org/gradle/integtests/fixtures/jvm/JvmSourceFile.java

        public void writeToFile(TestFile file) {
            if (file.exists()) {
                file.write("");
            }
            file.write(content);
        }
    
        public String withPath(String basePath) {
            return Joiner.on('/').join(basePath, path, name);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/layout/ResolvedPattern.java

            // get rid of the ivy [] token, as [ ] are not valid URI characters
            int pos = rawPattern.indexOf('[');
            String basePath = pos < 0 ? rawPattern : rawPattern.substring(0, pos);
            this.baseUri = fileResolver.resolveUri(basePath);
            this.pattern = pos < 0 ? "" : rawPattern.substring(pos);
            scheme = baseUri.getScheme().toLowerCase();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. pkg/kubelet/runonce_test.go

    	podStartupLatencyTracker := kubeletutil.NewPodStartupLatencyTracker()
    	basePath, err := utiltesting.MkTmpdir("kubelet")
    	if err != nil {
    		t.Fatalf("can't make a temp rootdir %v", err)
    	}
    	defer os.RemoveAll(basePath)
    	kb := &Kubelet{
    		rootDirectory:    filepath.Clean(basePath),
    		podLogsDirectory: filepath.Join(basePath, "pod-logs"),
    		recorder:         &record.FakeRecorder{},
    		cadvisor:         cadvisor,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 06:59:54 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. samples/static-server/src/main/java/okhttp3/sample/SampleServer.java

        }
      }
    
      private MockResponse directoryToResponse(String basePath, File directory) {
        if (!basePath.endsWith("/")) basePath += "/";
    
        StringBuilder response = new StringBuilder();
        response.append(String.format("<html><head><title>%s</title></head><body>", basePath));
        response.append(String.format("<h1>%s</h1>", basePath));
        for (String file : directory.list()) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Jan 02 02:50:44 UTC 2019
    - 4.7K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/SourceFile.java

        public void writeToFile(TestFile file) {
            if (file.exists()) {
                file.write("");
            }
            file.write(content);
        }
    
        public String withPath(String basePath) {
            return Joiner.on('/').join(basePath, path, name);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractJavaGroovyIncrementalCompilationSupport.groovy

                assert className: "unable to find class name"
                def f
                if (packageFolder.isEmpty()) {
                    f = file("$basePath/${className}.$suffix")
                } else {
                    f = file("$basePath/${packageFolder}/${className}.$suffix")
                }
                f.createFile()
                f.text = body
                out = f
            }
            out
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top