Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for containerPath1 (0.3 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelClasspathContainerCrossVersionSpec.groovy

            buildFile <<
            """apply plugin: 'java'
               apply plugin: 'eclipse'
               eclipse {
                   classpath {
                       containers 'containerPath1', 'containerPath2'
                   }
               }
            """
    
            when:
            EclipseProject project = loadToolingModel(EclipseProject)
    
            then:
            project.classpathContainers.size() == 3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods_windows_test.go

    		{
    			Name:           "disk",
    			ContainerPath:  "c:/etc/hosts",
    			HostPath:       "c:/mnt/disk",
    			ReadOnly:       false,
    			SELinuxRelabel: false,
    		},
    		{
    			Name:           "disk",
    			ContainerPath:  "c:/mnt/path3",
    			HostPath:       "c:/mnt/disk",
    			ReadOnly:       true,
    			SELinuxRelabel: false,
    		},
    		{
    			Name:           "disk4",
    			ContainerPath:  "c:/mnt/path4",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/devicemanager/pod_devices.go

    				if m != mount.HostPath {
    					klog.ErrorS(nil, "Container mount has conflicting mapping host mounts",
    						"containerPath", mount.ContainerPath, "conflictingPath", m, "hostPath", mount.HostPath)
    				}
    				continue
    			}
    			klog.V(4).InfoS("Add mount", "containerPath", mount.ContainerPath, "hostPath", mount.HostPath)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/model/collection/internal/BridgedCollections.java

            final Transformer<String, String> itemDescriptorGenerator
        ) {
            final ModelPath containerPath = containerReference.getPath();
            final ModelType<C> containerType = containerReference.getType();
            assert containerPath != null : "container reference path cannot be null";
    
            return ModelRegistrations.of(containerPath)
                .action(ModelActionRole.Create, new Action<MutableModelNode>() {
                    @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 20 10:28:05 UTC 2020
    - 5.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/containers/GradleInContainer.groovy

        }
    
        GradleInContainer bindReadOnly(File local, String containerPath) {
            container.addFileSystemBind(local.absolutePath, containerPath, BindMode.READ_ONLY, SelinuxContext.NONE)
            this
        }
    
        GradleInContainer bindWritable(File local, String containerPath) {
            container.addFileSystemBind(local.absolutePath, containerPath, BindMode.READ_WRITE, SelinuxContext.NONE)
            this
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelClasspathAttributesCrossVersionSpec.groovy

               apply plugin: 'eclipse'
               eclipse {
                   classpath {
                       containers 'containerPath'
                       file {
                           whenMerged { classpath ->
                               classpath.entries.find { it.path == 'containerPath' }.entryAttributes.customKey = 'customValue'
                           }
                       }
                   }
               }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods_linux_test.go

    			},
    			expectedMounts: []kubecontainer.Mount{
    				{
    					Name:           "disk",
    					ContainerPath:  "/etc/hosts",
    					HostPath:       "/mnt/disk",
    					ReadOnly:       false,
    					SELinuxRelabel: false,
    					Propagation:    runtimeapi.MountPropagation_PROPAGATION_HOST_TO_CONTAINER,
    				},
    				{
    					Name:           "disk",
    					ContainerPath:  "/mnt/path3",
    					HostPath:       "/mnt/disk",
    					ReadOnly:       true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 18:00:59 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/devicemanager/endpoint_test.go

    		ContainerPath: "/dev/aaa",
    		HostPath:      "/dev/aaa",
    		Permissions:   "mrw",
    	})
    
    	contResp.Devices = append(contResp.Devices, &pluginapi.DeviceSpec{
    		ContainerPath: "/dev/bbb",
    		HostPath:      "/dev/bbb",
    		Permissions:   "mrw",
    	})
    
    	contResp.Mounts = append(contResp.Mounts, &pluginapi.Mount{
    		ContainerPath: "/container_dir1/file1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 16:05:48 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_getters.go

    			containerName := containerDir.Name()
    			containerPath := filepath.Join(volumePluginPath, containerName)
    			// Switch to ReadDirNoStat at the subPathIndex level to prevent issues with stat'ing
    			// mount points that may not be responsive
    			subPaths, err := utilpath.ReadDirNoStat(containerPath)
    			if err != nil {
    				return volumes, fmt.Errorf("could not read directory %s: %v", containerPath, err)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/controlplane/volumes.go

    	}
    }
    
    func (c *controlPlaneHostPathMounts) NewHostPathMount(component, mountName, hostPath, containerPath string, readOnly bool, hostPathType *v1.HostPathType) {
    	vol := staticpodutil.NewVolume(mountName, hostPath, hostPathType)
    	c.addComponentVolume(component, vol)
    	volMount := staticpodutil.NewVolumeMount(mountName, containerPath, readOnly)
    	c.addComponentVolumeMount(component, volMount)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:33:18 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top