Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 297 for base_name (0.14 sec)

  1. cmd/genkubedocs/postprocessing.go

    			continue
    		}
    		if err := MarkdownPostProcessing(c, dir, processor); err != nil {
    			return err
    		}
    	}
    
    	basename := strings.Replace(cmd.CommandPath(), " ", "_", -1) + ".md"
    	filename := filepath.Join(dir, basename)
    
    	markdownBytes, err := os.ReadFile(filename)
    	if err != nil {
    		return err
    	}
    
    	processedMarkDown := processor(string(markdownBytes))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 01 05:59:41 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-relocate/groovy/build.gradle

            if (parameters.externalClasspath.contains(primaryInput)) {           // <6>
                outputs.file(primaryInput)
            } else {
                def baseName = primaryInputFile.name.substring(0, primaryInputFile.name.length - 4)
                relocateJar(outputs.file("$baseName-relocated.jar"))
            }
        }
    
        private relocateJar(File output) {
            // implementation...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. docs_src/python_types/tutorial001.py

    def get_full_name(first_name, last_name):
        full_name = first_name.title() + " " + last_name.title()
        return full_name
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Mar 26 19:09:53 UTC 2020
    - 162 bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/certs/renewal/readwriter_test.go

    			fields: fields{
    				baseName:       "foo",
    				certificateDir: tmpdir,
    			},
    			want: false,
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			rw := &pkiCertificateReadWriter{
    				baseName:       tt.fields.baseName,
    				certificateDir: tt.fields.certificateDir,
    			}
    			if got, _ := rw.Exists(); got != tt.want {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:24 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. tools/go-compile-without-link

    #!/bin/bash
    
    if [[ "${2}" == "-V=full" ]]; then
      "$@"
      exit 0
    fi
    case "$(basename ${1})" in
      link)
        # Output a dummy file
        touch "${3}"
        ;;
      *)
        "$@"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 23:27:32 UTC 2023
    - 171 bytes
    - Viewed (0)
  6. docs/debugging/build.sh

    #!/bin/bash
    
    export CGO_ENABLED=0
    for dir in docs/debugging/*/; do
    	bin=$(basename ${dir})
    	go build -C ${dir} -o ${PWD}/${bin}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 133 bytes
    - Viewed (0)
  7. subprojects/public-api/build.gradle.kts

                artifactId = moduleIdentity.baseName.get()
    
                from(components["gradleApi"])
    
                versionMapping {
                    allVariants {
                        fromResolutionOf(configurations.externalRuntimeClasspath.get())
                    }
                }
    
                pom {
                    name = moduleIdentity.baseName.map { "${project.group}:$it"}
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 13:15:08 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/certs/certs_test.go

    		if err := validateCACert(certKeyLocation{dir, caCert.BaseName, "", caCert.Name}); err != nil {
    			t.Errorf("couldn't validate CA certificate %v: %v", caCert.Name, err)
    			// Don't bother validating child certs, but do try the other CAs
    			continue
    		}
    
    		for _, cert := range certs {
    			if err := validateSignedCert(certKeyLocation{dir, caCert.BaseName, cert.BaseName, cert.Name}); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 21:49:21 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  9. pkg/kubelet/util/format/pod_test.go

    	}
    
    	for _, testCase := range testCases {
    		realPod := Pod(testCase.pod)
    		assert.Equalf(t, testCase.expectedValue, realPod, "Failed to test: %s", testCase.caseName)
    	}
    }
    
    func TestPodAndPodDesc(t *testing.T) {
    	testCases := []struct {
    		caseName      string
    		podName       string
    		podNamespace  string
    		podUID        types.UID
    		expectedValue string
    	}{
    		{"field_empty_case", "", "", "", "_()"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 13 08:27:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/resource/transfer/CacheAwareExternalResourceAccessor.java

    import java.io.IOException;
    
    public interface CacheAwareExternalResourceAccessor {
        /**
         * Fetches for a resource located at some URI.
         * @param source the URI of the resource to be fetched
         * @param baseName the required name of the local resource. Can be null.
         * @param fileStore used whenever the resource is effectively downloaded, to move it into a cache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top