Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 217 for modfile (0.3 sec)

  1. operator/pkg/helm/helm.go

    			return "", err
    		}
    	}
    
    	// Sort crd files by name to ensure stable manifest output
    	sort.Slice(crdFiles, func(i, j int) bool { return crdFiles[i].Name < crdFiles[j].Name })
    	for _, crdFile := range crdFiles {
    		f := string(crdFile.File.Data)
    		// add yaml separator if the rendered file doesn't have one at the end
    		f = strings.TrimSpace(f) + "\n"
    		if !strings.HasSuffix(f, YAMLSeparator) {
    			f += YAMLSeparator
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/resolver/SourcePathProvider.kt

            // If the script file is known, determine its type
            val scriptType = scriptFile?.let {
                KotlinScriptTypeMatch.forFile(it)?.scriptType
            }
    
            // We also add the "buildSrc" sources onto the source path.
            val projectBuildSrcRoots = when (scriptType) {
                KotlinScriptType.INIT, KotlinScriptType.SETTINGS -> emptyList()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 12:20:51 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/java-feature-variant/requiring-features-external/common/repo/org/gradle/demo/producer/1.0/producer-1.0.module.md5

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 32 bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/main/groovy/org/gradle/ide/visualstudio/tasks/internal/RelativeFileNameTransformer.java

        private RelativeFileNameTransformer(File rootDir, File currentDir) {
            this.rootDir = rootDir;
            this.currentDir = currentDir;
        }
    
        public static Transformer<String, File> forFile(File rootDir, File relativeFile) {
            return new RelativeFileNameTransformer(rootDir, relativeFile.getParentFile());
        }
    
        public static Transformer<String, File> forDirectory(File rootDir, File currentDirectory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. src/path/filepath/path_windows_test.go

    			return
    		case !reflect.DeepEqual(out, exp):
    			t.Errorf("%d,%d: expected %#q, got %#q", ti, i, exp, out)
    			return
    		default:
    			// unshadow cmdfile in next directory
    			err = os.Remove(filepath.Join(tmp, d, cmdfile))
    			if err != nil {
    				t.Fatalf("Remove test command failed: %v", err)
    			}
    		}
    	}
    }
    
    func TestWindowsEvalSymlinks(t *testing.T) {
    	testenv.MustHaveSymlink(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:38:54 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/PreResolvedResolvableArtifact.java

        public boolean isResolveSynchronously() {
            return true;
        }
    
        @Override
        public ResolvableArtifact transformedTo(File file) {
            IvyArtifactName artifactName = DefaultIvyArtifactName.forFile(file, artifact.getClassifier());
    
            String originalFileName;
            if (artifactId instanceof TransformedComponentFileArtifactIdentifier) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. pkg/registry/core/secret/storage/storage_test.go

    			ObjectMeta: metav1.ObjectMeta{Name: "name"},
    			Data:       map[string][]byte{"name with spaces": []byte("")},
    		},
    		&api.Secret{
    			ObjectMeta: metav1.ObjectMeta{Name: "name"},
    			Data:       map[string][]byte{"~.dotfile": []byte("")},
    		},
    	)
    }
    
    func TestUpdate(t *testing.T) {
    	storage, server := newStorage(t)
    	defer server.Terminate(t)
    	defer storage.Store.DestroyFunc()
    	test := genericregistrytest.New(t, storage.Store)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 12 20:55:35 UTC 2019
    - 3.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/AdditionalVariantsMetadataRulesIntegrationTest.groovy

        @Issue("https://github.com/gradle/gradle/issues/20145")
        def "component metadata rules can add variants even if no derivation rules are present"() {
            given: "a published module"
            repository {
                group("org") {
                    module("a") {
                        version("1") {
                            withModule {
                                undeclaredArtifact(type: 'jar', classifier: "my-samples")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 16:23:01 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. src/go/token/serialize_test.go

    		t.Errorf("filesets not identical: %s", err)
    	}
    }
    
    func TestSerialization(t *testing.T) {
    	p := NewFileSet()
    	checkSerialize(t, p)
    	// add some files
    	for i := 0; i < 10; i++ {
    		f := p.AddFile(fmt.Sprintf("file%d", i), p.Base()+i, i*100)
    		checkSerialize(t, p)
    		// add some lines and alternative file infos
    		line := 1000
    		for offs := 0; offs < f.Size(); offs += 40 + i {
    			f.AddLine(offs)
    			if offs%7 == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 17 15:02:55 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  10. src/go/types/commentMap_test.go

    // recorded position is unknown (line, col = 0, 0).
    // If there are no matching comments, the result is nil.
    func commentMap(src []byte, rx *regexp.Regexp) (res map[int][]comment) {
    	fset := token.NewFileSet()
    	file := fset.AddFile("", -1, len(src))
    
    	var s scanner.Scanner
    	s.Init(file, src, nil, scanner.ScanComments)
    	var prev token.Pos // position of last non-comment, non-semicolon token
    
    	for {
    		pos, tok, lit := s.Scan()
    		switch tok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top