Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 287 for filename (0.38 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIvyPublishIntegrationTest.groovy

                    [repoFile, textForComparisonOf(repoFile)]
                }
        }
    
        private String textForComparisonOf(File repositoryFile) {
            def fileName = repositoryFile.name
            if (fileName.startsWith('maven-metadata.xml')) {
                if (fileName == 'maven-metadata.xml') {
                    return clearLastUpdatedElementOf(repositoryFile.text)
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/config/cluster.go

    // TODO: in future we want to switch to a more canonical way for doing this e.g. by having this
    // information in the local kubelet config.yaml
    func getNodeNameFromKubeletConfig(fileName string) (string, error) {
    	// loads the kubelet.conf file
    	config, err := clientcmd.LoadFromFile(fileName)
    	if err != nil {
    		return "", err
    	}
    
    	// gets the info about the current user
    	currentContext, exists := config.Contexts[config.CurrentContext]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/internal/analysisflags/flags.go

    // A TextEdit describes the replacement of a portion of a file.
    // Start and End are zero-based half-open indices into the original byte
    // sequence of the file, and New is the new text.
    type JSONTextEdit struct {
    	Filename string `json:"filename"`
    	Start    int    `json:"start"`
    	End      int    `json:"end"`
    	New      string `json:"new"`
    }
    
    // A JSONSuggestedFix describes an edit that should be applied as a whole or not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DependencyVerifyingModuleComponentRepository.java

                    String fileName = artifactIdentifier.getFileName().replace("-" + artifactIdentifier.getComponentIdentifier().getVersion(), "");
                    fileName = Files.getNameWithoutExtension(fileName); // removes the .asc
                    IvyArtifactName base = DefaultIvyArtifactName.forFileName(fileName, null);
                    return new DefaultIvyArtifactName(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    	// Comment assignment state.
    	pre  []Expr // all expressions, in preorder traversal
    	post []Expr // all expressions, in postorder traversal
    }
    
    func newInput(filename string, data []byte) *input {
    	return &input{
    		filename:  filename,
    		complete:  data,
    		remaining: data,
    		pos:       Position{Line: 1, LineRune: 1, Byte: 0},
    	}
    }
    
    // parse parses the input file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/rules/OverlappingOutputsIntegrationTest.groovy

                    @Input
                    String message = "Generated by " + path
    
                    @Input
                    String fileName = name + ".txt"
    
                    @TaskAction
                    void generate() {
                        new File(outputDir, fileName).text = message
                    }
                }
    
                @CacheableTask
                abstract class OutputFileTask extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:54:14 UTC 2024
    - 30K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ProjectDependencyResolveIntegrationTest.groovy

                    project(":a", "test:a:") {
                        configuration("configOne")
                        configuration("configTwo")
                        artifact(fileName: "A1.jar")
                        artifact(fileName: "A2.jar")
                        artifact(fileName: "A3.jar")
                    }
                    project(":a", "test:a:")
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/config/upgradeconfiguration_test.go

    		t.Fatalf("Couldn't create tmpdir: %v", err)
    	}
    	defer func() {
    		if err := os.RemoveAll(tmpdir); err != nil {
    			t.Fatalf("Couldn't remove tmpdir: %v", err)
    		}
    	}()
    	filename := "kubeadmConfig"
    	filePath := filepath.Join(tmpdir, filename)
    	options := LoadOrDefaultConfigurationOptions{}
    
    	tests := []struct {
    		name         string
    		cfgPath      string
    		fileContents string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/patches/patches.go

    // - On unknown patch type it returns an error
    // - On success it returns a target name and patch type
    func parseFilename(fileName string, knownTargets []string) (string, types.PatchType, error, error) {
    	// Return a warning if the extension cannot be matched.
    	if !regExtension.MatchString(fileName) {
    		return "", "", errors.Errorf("the file extension must be one of %v", knownExtensions), nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/helpers_linux_test.go

    			podSc:       &v1.PodSecurityContext{SeccompProfile: &v1.SeccompProfile{Type: v1.SeccompProfileTypeLocalhost, LocalhostProfile: getLocal("filename")}},
    			expectedProfile: &runtimeapi.SecurityProfile{
    				ProfileType:  runtimeapi.SecurityProfile_Localhost,
    				LocalhostRef: seccompLocalhostRef("filename"),
    			},
    		},
    		{
    			description:   "pod seccomp profile set to SeccompProfileTypeLocalhost with empty LocalhostProfile returns error",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top