Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,052 for pathsOf (0.24 sec)

  1. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/ConsumerOperationParametersTest.groovy

            when:
            def launchable1 = Mock(TaskListingLaunchable)
            def paths1 = new TreeSet<>()
            paths1.add(':a')
            _ * launchable1.taskNames >> paths1
            def launchable2 = Mock(TaskListingLaunchable)
            def paths2 = new TreeSet<>()
            paths2.add(':b')
            paths2.add(':lib:b')
            _ * launchable2.taskNames >> paths2
            builder.launchables = [adapt(launchable1), adapt(launchable2)]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. internal/lock/lock_windows.go

    	// simplicity it avoids the conversion entirely for relative
    	// paths or paths containing .. elements. For now,
    	// \\server\share paths are not converted to
    	// \\?\UNC\server\share paths because the rules for doing so
    	// are less well-specified.
    	if len(path) >= 2 && path[:2] == `\\` {
    		// Don't canonicalize UNC paths.
    		return path
    	}
    	if !filepath.IsAbs(path) {
    		// Relative path
    		return path
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Oct 18 18:08:15 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/SingleProjectTaskReportModelTest.groovy

            then:
            model.groups == ['group', ''] as Set
            def tasks = model.getTasksForGroup('') as List
            tasks*.path == [pathOf(task1), pathOf(task3), pathOf(task4), pathOf(task5)]
            def t = tasks.first()
            t.path == pathOf(task1)
        }
    
        def addsAGroupWhenThereAreNoTasksWithAGroup() {
            def task1 = task('task1')
            def task2 = task('task2', task1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 10 17:20:29 UTC 2020
    - 4K bytes
    - Viewed (0)
  4. pkg/kubelet/apis/config/helpers.go

    // passing the configuration to the application. This method must be kept up to date as new fields are added.
    func KubeletConfigurationPathRefs(kc *KubeletConfiguration) []*string {
    	paths := []*string{}
    	paths = append(paths, &kc.StaticPodPath)
    	paths = append(paths, &kc.Authentication.X509.ClientCAFile)
    	paths = append(paths, &kc.TLSCertFile)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/build_trimpath.txt

    env GO111MODULE=on
    mkdir $WORK/a/src/paths $WORK/b/src/paths
    cp paths.go $WORK/a/src/paths
    cp paths.go $WORK/b/src/paths
    cp overlay.json $WORK/a/src/paths
    cp overlay.json $WORK/b/src/paths
    cp go.mod $WORK/a/src/paths/
    cp go.mod $WORK/b/src/paths/
    
    
    # A binary built without -trimpath should contain the module root dir
    # and GOROOT for debugging and stack traces.
    cd $WORK/a/src/paths
    go build -o $WORK/paths-dbg.exe .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/merge.go

    		for k, s := range staticSpec.Parameters {
    			specToReturn.Parameters[k] = s
    		}
    	}
    	if staticSpec.Paths != nil {
    		specToReturn.Paths = &spec.Paths{
    			Paths: make(map[string]spec.PathItem, len(staticSpec.Paths.Paths)),
    		}
    		for k, p := range staticSpec.Paths.Paths {
    			specToReturn.Paths.Paths[k] = p
    		}
    	}
    
    	crdSpec := &spec.Swagger{}
    	for _, s := range crdSpecs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 16 14:08:01 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. pilot/cmd/pilot-agent/options/security_test.go

    	tests := []struct {
    		name     string
    		paths    []string
    		expected bool
    	}{
    		{
    			name: "non-existing cert paths",
    			paths: []string{
    				"/this-is-a-nonexisting-path-1", "/this-is-a-nonexisting-path-2",
    				"/this-is-a-nonexisting-path-3",
    			},
    			expected: false,
    		},
    		{
    			name:     "existing cert paths",
    			paths:    []string{cert.Name(), cert.Name(), cert.Name()},
    			expected: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 31 18:31:36 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/merge_test.go

    			specs: []*spec3.OpenAPI{{
    				Paths: &spec3.Paths{
    					Paths: map[string]*spec3.Path{
    						"/apis/stable.example.com/v1/crd1": {},
    					},
    				},
    				Components: &spec3.Components{
    					Schemas: map[string]*spec.Schema{
    						"io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta": {},
    					},
    				},
    			},
    			},
    			expected: &spec3.OpenAPI{
    				Paths: &spec3.Paths{
    					Paths: map[string]*spec3.Path{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 12 20:11:45 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableFileCollection.java

         */
        void setFrom(Iterable<?> paths);
    
        /**
         * Sets the source paths for this collection. The given paths are evaluated as per {@link org.gradle.api.Project#files(Object...)}.
         *
         * @param paths The paths.
         */
        void setFrom(Object... paths);
    
        /**
         * Specifies the value to use as the convention (default value) to be used when resolving this file collection,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. src/go/internal/gccgoimporter/gccgoinstallation.go

    		if err != nil || !fi.IsDir() {
    			continue
    		}
    		paths = append(paths, spath)
    	}
    
    	paths = append(paths, inst.LibPaths...)
    
    	return
    }
    
    // Return an importer that searches incpaths followed by the gcc installation's
    // built-in search paths and the current directory.
    func (inst *GccgoInstallation) GetImporter(incpaths []string, initmap map[*types.Package]InitData) Importer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 2.4K bytes
    - Viewed (0)
Back to top